npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agentcloudservice

v1.0.0

Published

AgentCloudService SDK - Cloud hosting for autonomous AI agents

Readme

ACS SDK for Node.js

Official Node.js/TypeScript SDK for AgentCloudService - Cloud hosting for autonomous AI agents.

Installation

npm install @acs/sdk
# or
yarn add @acs/sdk
# or
pnpm add @acs/sdk

Quick Start

import { ACS } from '@acs/sdk';

// Register a new agent (no auth required)
const result = await ACS.register({ name: 'my-research-agent' });
console.log(`API Key: ${result.apiKey}`);

// Create client with API key
const client = new ACS({ apiKey: result.apiKey });

// Deploy an OpenClaw agent
const agent = await client.deploy({
  name: 'research-agent',
  type: 'openclaw',
  config: {
    model: 'claude-sonnet-4',
    channels: ['telegram', 'discord'],
    skills: ['web_search', 'coding']
  },
  region: 'us-east-1'
});
console.log(`Agent deployed: ${agent.url}`);

Features

  • TypeScript First - Full type definitions included
  • No CAPTCHA, No Phone Verification - Just API keys and code
  • OpenClaw Native - Deploy pre-configured AI agents
  • ESM & CommonJS - Works with any module system
  • Zero Dependencies - Uses native fetch

Authentication

import { ACS } from '@acs/sdk';

// Option 1: Pass API key directly
const client = new ACS({ apiKey: 'acs_live_xxx' });

// Option 2: Use environment variable
// export ACS_API_KEY=acs_live_xxx
const client = new ACS();

API Reference

Registration (No Auth Required)

// Register new agent
const result = await ACS.register({
  name: 'my-agent',
  email: '[email protected]',  // Optional
  wallet: '0x...'              // Optional, for USDC payments
});
console.log(result.agentId);
console.log(result.apiKey);

// Check service status
const status = await ACS.status();
console.log(status);

Agent Management

const client = new ACS({ apiKey: 'acs_live_xxx' });

// List all agents
const agents = await client.listAgents();
for (const agent of agents) {
  console.log(`${agent.name}: ${agent.status}`);
}

// List running agents only
const running = await client.listAgents('running');

// Get specific agent
const agent = await client.getAgent('agent_xxx');

// Start/stop agent
await client.startAgent('agent_xxx');
await client.stopAgent('agent_xxx');

// Delete agent
await client.deleteAgent('agent_xxx');

Deployment

// Deploy OpenClaw agent
const agent = await client.deploy({
  name: 'my-agent',
  type: 'openclaw',
  config: {
    model: 'claude-sonnet-4',
    channels: ['telegram', 'discord', 'slack'],
    skills: ['web_search', 'coding', 'browser'],
    memory: true
  },
  region: 'us-east-1'
});

// Deploy Docker container
const agent = await client.deploy({
  name: 'custom-agent',
  type: 'docker',
  config: {
    image: 'my-org/my-agent:latest',
    env: { API_KEY: 'xxx' }
  }
});

// Deploy serverless function
const agent = await client.deploy({
  name: 'webhook-handler',
  type: 'function',
  config: {
    runtime: 'nodejs20',
    handler: 'index.handler'
  }
});

Usage & Billing

// Get usage metrics
const usage = await client.getUsage();
console.log(`Requests (24h): ${usage.requests24h}`);
console.log(`Compute used: ${usage.computeUsed} GB`);
console.log(`Current bill: $${usage.currentBill}`);

// Get billing info
const billing = await client.getBilling();

// Create checkout session
const checkout = await client.checkout('micro');
console.log(`Checkout URL: ${checkout.checkoutUrl}`);

// Pay with USDC
const payment = await client.payUsdc('19.00');

Regions

| Region | Location | |--------|----------| | us-east-1 | US East (Virginia) | | us-west-2 | US West (Oregon) | | eu-west-1 | EU West (Ireland) | | eu-central-1 | EU Central (Frankfurt) | | ap-southeast-1 | Asia Pacific (Singapore) | | ap-southeast-2 | Asia Pacific (Sydney) |

Error Handling

import { ACS, ACSError, AuthenticationError, ValidationError } from '@acs/sdk';

try {
  const client = new ACS({ apiKey: 'invalid' });
  const agents = await client.listAgents();
} catch (error) {
  if (error instanceof AuthenticationError) {
    console.log('Invalid API key');
  } else if (error instanceof ValidationError) {
    console.log(`Validation failed: ${error.message}`);
  } else if (error instanceof ACSError) {
    console.log(`API error: ${error.message} (status: ${error.statusCode})`);
  }
}

Links

License

MIT License - Copyright (c) 2026 VibeCaaS / NeuralQuantum.ai LLC