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

@agentxjs/claude-driver

v2.0.0

Published

Claude-specific driver for AgentX with native Claude Code features. **For most cases, use `@agentxjs/mono-driver` instead** — it supports multiple providers and is the default. Only use claude-driver if you need Claude Code-specific features like built-in

Downloads

993

Readme

@agentxjs/claude-driver

Claude-specific driver for AgentX with native Claude Code features. For most cases, use @agentxjs/mono-driver instead — it supports multiple providers and is the default. Only use claude-driver if you need Claude Code-specific features like built-in permission management or CLI session resume.

Overview

Use claude-driver when you specifically need:

  • Claude Code SDK subprocess execution
  • Built-in permission management from Claude Code
  • Claude Code CLI integration
  • Session continuity via Claude's native session resume

Quick Start

import { createClaudeDriver } from "@agentxjs/claude-driver";

const driver = createClaudeDriver({
  apiKey: process.env.ANTHROPIC_API_KEY!,
  agentId: "my-agent",
  systemPrompt: "You are a helpful assistant.",
});

await driver.initialize();

for await (const event of driver.receive({ content: "Hello!" })) {
  if (event.type === "text_delta") {
    process.stdout.write(event.data.text);
  }
}

await driver.dispose();

API Reference

createClaudeDriver(config: ClaudeDriverConfig): Driver

Factory function. Returns a Driver conforming to @agentxjs/core/driver.

ClaudeDriver

class ClaudeDriver implements Driver {
  readonly name: string; // "ClaudeDriver"
  readonly sessionId: string | null; // captured from SDK after first message
  readonly state: DriverState; // "idle" | "active" | "disposed"

  initialize(): Promise<void>;
  receive(message: UserMessage): AsyncIterable<DriverStreamEvent>;
  interrupt(): void;
  dispose(): Promise<void>;
}

Exported Types

// Main
export { ClaudeDriver, createClaudeDriver, ClaudeDriverOptions, ClaudeDriverConfig };

// Re-exported from @agentxjs/core/driver
export type { Driver, DriverConfig, DriverState, CreateDriver, DriverStreamEvent, StopReason };

// Internal utilities (advanced)
export { SDKQueryLifecycle, buildSDKContent, buildSDKUserMessage };

Configuration

ClaudeDriverConfig

ClaudeDriverConfig = DriverConfig<ClaudeDriverOptions>.

createClaudeDriver({
  // Base DriverConfig
  apiKey: "sk-ant-xxxxx",           // required
  agentId: "my-agent",              // required
  model: "claude-sonnet-4-20250514",
  systemPrompt: "You are ...",
  baseUrl: "https://api.anthropic.com",
  cwd: "/path/to/workdir",
  mcpServers: { ... },
  resumeSessionId: "prev-session-id",
  onSessionIdCaptured: (id) => save(id),

  // ClaudeDriver-specific
  options: {
    claudeCodePath: "/usr/local/bin/claude",  // auto-resolved if omitted
    maxTurns: 10,                              // SDK default if omitted
  },
});

ClaudeDriverOptions

| Field | Type | Default | Description | | ---------------- | -------- | ---------------------------------------------- | ------------------------------ | | claudeCodePath | string | Auto-resolved from @anthropic-ai/claude-code | Path to Claude Code executable | | maxTurns | number | SDK default | Max agentic loop turns |

Session Resumption

let savedSessionId: string;

const driver = createClaudeDriver({
  apiKey: "...",
  agentId: "my-agent",
  onSessionIdCaptured: (id) => {
    savedSessionId = id;
  },
});

// ... use driver, then dispose ...

// Resume later
const resumed = createClaudeDriver({
  apiKey: "...",
  agentId: "my-agent",
  resumeSessionId: savedSessionId,
});

Environment Variables

| Variable | Description | | -------------------- | --------------------------------------------------- | | ANTHROPIC_API_KEY | Claude API key (can also use apiKey config) | | ANTHROPIC_BASE_URL | Custom API endpoint (can also use baseUrl config) |