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

@dobbyai/sdk

v0.2.1

Published

Official JavaScript/TypeScript SDK for the Dobby AI Platform — Home for your AI agents

Readme

@dobbyai/sdk

Official JavaScript/TypeScript SDK for the Dobby AI Platform — Home for your AI agents.

Installation

npm install @dobbyai/sdk

Quick Start

import { DobbyClient } from '@dobbyai/sdk';

const dobby = new DobbyClient({
  apiKey: 'gk_user_...', // or set DOBBY_API_KEY env var
  orgId: 'org_...',
  tenantId: 'tenant_...',
});

// LLM completions (OpenAI-compatible)
const response = await dobby.chat.completions.create({
  model: 'claude-sonnet-4-20250514',
  messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0].message.content);

Features

LLM Gateway (OpenAI-compatible)

Route LLM calls through Dobby's unified gateway with cost tracking, policy enforcement, and audit trail.

// Streaming
const stream = await dobby.chat.completions.create({
  model: 'gpt-4o-mini',
  messages: [{ role: 'user', content: 'Explain AI agents' }],
  stream: true,
});

for await (const chunk of stream) {
  process.stdout.write(chunk.choices[0]?.delta?.content || '');
}

Task Management

const task = await dobby.tasks.create({
  title: 'Review PR #42',
  description: 'Security review for auth changes',
  priority: 'high',
});

const tasks = await dobby.tasks.list({ status: 'pending' });

Human-in-the-Loop Approvals

const pending = await dobby.approvals.list({ status: 'pending' });
await dobby.approvals.approve('task_abc123', 'LGTM');
await dobby.approvals.reject('task_def456', 'Needs tests');

Agent Fleet Management

// List all agents
const fleet = await dobby.agents.list();

// Register an external agent
await dobby.agents.register({
  name: 'content-writer',
  framework: 'crewai',
  endpoint_url: 'https://my-agent.example.com/webhook',
});

// Pause / resume
await dobby.agents.pause('ext_abc123');
await dobby.agents.resume('ext_abc123');

External Agent Triggers & Schedules

// Trigger an agent immediately
const result = await dobby.agents.trigger('ext_abc123', {
  payload: { topic: 'AI governance' },
});

// Create a recurring schedule
await dobby.agents.createSchedule('ext_abc123', {
  name: 'Daily Blog Writer',
  schedule_config: { frequency: 'daily', time: '09:00' },
  task_title: 'Write blog post',
  trigger_payload: { topic: 'AI governance' },
});

// Get trigger history
const history = await dobby.agents.triggers('ext_abc123', {
  include_stats: true,
});

Cost Tracking

const costs = await dobby.costs.summary({ period: '30d' });
const agentCosts = await dobby.costs.byAgent({ period: '7d' });

Gateway API Keys

const keys = await dobby.keys.list();
const newKey = await dobby.keys.create({
  name: 'production-key',
  scopes: ['llm:chat', 'mcp:tools'],
});

Configuration

| Option | Env Variable | Default | Description | |--------|-------------|---------|-------------| | apiKey | DOBBY_API_KEY | - | Gateway API key (required) | | baseUrl | DOBBY_BASE_URL | https://dobby-ai.com | Platform URL | | orgId | DOBBY_ORG_ID | - | Organization ID | | tenantId | DOBBY_TENANT_ID | - | Tenant/workspace ID | | timeout | - | 120000 | Request timeout (ms) | | maxRetries | - | 2 | Max retry attempts |

Error Handling

import { DobbyClient, DobbyAuthError, DobbyRateLimitError, DobbyBudgetExceededError } from '@dobbyai/sdk';

try {
  await dobby.chat.completions.create({ ... });
} catch (err) {
  if (err instanceof DobbyAuthError) {
    console.error('Invalid or expired API key');
  } else if (err instanceof DobbyRateLimitError) {
    console.error('Rate limit hit, retry later');
  } else if (err instanceof DobbyBudgetExceededError) {
    console.error('Budget limit reached');
  }
}

Links

License

MIT