The Claude Agent SDK enables you to programmatically build AI agents with Claude Code's capabilities. Create autonomous agents that can understand codebases, edit files, run commands, and execute complex workflows.
Learn more in the official documentation.
Install the Claude Agent SDK:
npm install @anthropic-ai/claude-agent-sdkWhen bundling your application into a single executable with bun build --compile, the SDK cannot resolve the native CLI binary at runtime — require.resolve doesn't work from inside the compiled $bunfs (or B:\~BUN\... on Windows) virtual filesystem.
Embed the platform-specific binary as a file asset, extract it to a real path, and pass it explicitly:
import binPath from '@anthropic-ai/claude-agent-sdk-darwin-arm64/claude' with { type: 'file' }
import { extractFromBunfs } from '@anthropic-ai/claude-agent-sdk/extract'
import { query } from '@anthropic-ai/claude-agent-sdk'
const cliPath = extractFromBunfs(binPath)
for await (const message of query({
prompt: '…',
options: { pathToClaudeCodeExecutable: cliPath },
})) { /* … */ }Each compiled executable embeds one platform's binary, matching your --target. Cross-compiling requires installing the non-matching platform package (e.g. npm install @anthropic-ai/claude-agent-sdk-linux-x64 --force). On Windows the binary subpath is /claude.exe (e.g. @anthropic-ai/claude-agent-sdk-win32-x64/claude.exe).
The Claude Code SDK is now the Claude Agent SDK. Please check out the migration guide for details on breaking changes.
We welcome your feedback. File a GitHub issue to report bugs or request features.
Join the Claude Developers Discord to connect with other developers building with the Claude Agent SDK. Get help, share feedback, and discuss your projects with the community.
When you use the Claude Agent SDK, we collect feedback, which includes usage data (such as code acceptance or rejections), associated conversation data, and user feedback submitted via the /bug command.
See our data usage policies.
We have implemented several safeguards to protect your data, including limited retention periods for sensitive information and restricted access to user session data.
For full details, please review our Commercial Terms of Service and Privacy Policy.