@ebowwa/claudecodesdk
v0.1.0
Published
Claude Code SDK for Anthropic API integration
Readme
@ebowwa/claudecodesdk
Claude Code SDK for Anthropic API integration - a clean interface for interacting with the Claude Agent SDK in Node.js/Bun server environments.
Installation
npm install @ebowwa/claudecodesdkUsage
import { createCodeAnalyzer } from '@ebowwa/claudecodesdk';
const analyzer = createCodeAnalyzer();
const result = await analyzer.run('Analyze src/ for bugs');
console.log(result.result);Features
- Simple, typed interface for Claude Agent SDK
- Pre-configured agents for common tasks
- Multi-agent orchestration with dependency management
- Structured logging and execution tracking
- Budget and timeout management
API
Main exports
ClaudeAgentClient- Main client classcreateCodeAnalyzer()- Create a code analysis agentcreateRefactoringAgent()- Create a code refactoring agentcreateDocumentationAgent()- Create a documentation generation agentAgentOrchestrator- Multi-agent workflow manager
License
MIT
