Skip to content

Claude Agent SDK Deep Dive

Findings from reverse-engineering @anthropic-ai/claude-agent-sdk v0.2.29–0.2.34 to understand how query() works, why agent teams subagents were being killed, and how to fix it. Supplemented with official SDK reference docs.

Agent Runner (our code)
└── query() → SDK (sdk.mjs)
└── spawns CLI subprocess (cli.js)
└── Claude API calls, tool execution
└── Task tool → spawns subagent subprocesses

The SDK spawns cli.js as a child process with --output-format stream-json --input-format stream-json --print --verbose flags. Communication happens via JSON-lines on stdin/stdout.

query() returns a Query object extending AsyncGenerator<SDKMessage, void>. Internally:

  • SDK spawns CLI as a child process, communicates via stdin/stdout JSON lines
  • SDK’s readMessages() reads from CLI stdout, enqueues into internal stream
  • readSdkMessages() async generator yields from that stream
  • [Symbol.asyncIterator] returns readSdkMessages()
  • Iterator returns done: true only when CLI closes stdout

Both V1 (query()) and V2 (createSession/send/stream) use the exact same three-layer architecture:

SDK (sdk.mjs) CLI Process (cli.js)
-------------- --------------------
XX Transport ------> stdin reader (bd1)
(spawn cli.js) |
$X Query <------ stdout writer
(JSON-lines) |
EZ() recursive generator
|
Anthropic Messages API

Inside the CLI, the agentic loop is a recursive async generator called EZ(), not an iterative while loop:

EZ({ messages, systemPrompt, canUseTool, maxTurns, turnCount=1, ... })

Each invocation = one API call to Claude (one “turn”).

  1. Prepare messages — trim context, run compaction if needed
  2. Call the Anthropic API (via mW1 streaming function)
  3. Extract tool_use blocks from the response
  4. Branch:
    • If no tool_use blocks → stop (run stop hooks, return)
    • If tool_use blocks present → execute tools, increment turnCount, recurse

All complex logic — the agent loop, tool execution, background tasks, teammate orchestration — runs inside the CLI subprocess. query() is a thin transport wrapper.

Full Options type from the official docs:

PropertyTypeDefaultDescription
abortControllerAbortControllernew AbortController()Controller for cancelling operations
additionalDirectoriesstring[][]Additional directories Claude can access
agentsRecord<string, AgentDefinition>undefinedProgrammatically define subagents (not agent teams — no orchestration)
allowDangerouslySkipPermissionsbooleanfalseRequired when using permissionMode: 'bypassPermissions'
allowedToolsstring[]All toolsList of allowed tool names
betasSdkBeta[][]Beta features (e.g., ['context-1m-2025-08-07'] for 1M context)
canUseToolCanUseToolundefinedCustom permission function for tool usage
continuebooleanfalseContinue the most recent conversation
cwdstringprocess.cwd()Current working directory
disallowedToolsstring[][]List of disallowed tool names
enableFileCheckpointingbooleanfalseEnable file change tracking for rewinding
envDict<string>process.envEnvironment variables
executable'bun' | 'deno' | 'node'Auto-detectedJavaScript runtime
fallbackModelstringundefinedModel to use if primary fails
forkSessionbooleanfalseWhen resuming, fork to a new session ID instead of continuing original
hooksPartial<Record<HookEvent, HookCallbackMatcher[]>>{}Hook callbacks for events
includePartialMessagesbooleanfalseInclude partial message events (streaming)
maxBudgetUsdnumberundefinedMaximum budget in USD for the query
maxThinkingTokensnumberundefinedMaximum tokens for thinking process
maxTurnsnumberundefinedMaximum conversation turns
mcpServersRecord<string, McpServerConfig>{}MCP server configurations
modelstringDefault from CLIClaude model to use
outputFormat{ type: 'json_schema', schema: JSONSchema }undefinedStructured output format
pathToClaudeCodeExecutablestringUses built-inPath to Claude Code executable
permissionModePermissionMode'default'Permission mode
pluginsSdkPluginConfig[][]Load custom plugins from local paths
resumestringundefinedSession ID to resume
resumeSessionAtstringundefinedResume session at a specific message UUID
sandboxSandboxSettingsundefinedSandbox behavior configuration
settingSourcesSettingSource[][] (none)Which filesystem settings to load. Must include 'project' to load AGENT.md
stderr(data: string) => voidundefinedCallback for stderr output
systemPromptstring | { type: 'preset'; preset: 'claude_code'; append?: string }undefinedSystem prompt. Use preset to get Claude Code’s prompt, with optional append
toolsstring[] | { type: 'preset'; preset: 'claude_code' }undefinedTool configuration
type PermissionMode = 'default' | 'acceptEdits' | 'bypassPermissions' | 'plan';
type SettingSource = 'user' | 'project' | 'local';
// 'user' → ~/.agent/settings.json
// 'project' → .agent/settings.json (version controlled)
// 'local' → .agent/settings.local.json (gitignored)

When omitted, SDK loads NO filesystem settings (isolation by default). Precedence: local > project > user. Programmatic options always override filesystem settings.

Programmatic subagents (NOT agent teams — these are simpler, no inter-agent coordination):

type AgentDefinition = {
description: string; // When to use this agent
tools?: string[]; // Allowed tools (inherits all if omitted)
prompt: string; // Agent's system prompt
model?: 'sonnet' | 'opus' | 'haiku' | 'inherit';
}
type McpServerConfig =
| { type?: 'stdio'; command: string; args?: string[]; env?: Record<string, string> }
| { type: 'sse'; url: string; headers?: Record<string, string> }
| { type: 'http'; url: string; headers?: Record<string, string> }
| { type: 'sdk'; name: string; instance: McpServer } // in-process
type SdkBeta = 'context-1m-2025-08-07';
// Enables 1M token context window for Opus 4.6, Sonnet 4.5, Sonnet 4
type CanUseTool = (
toolName: string,
input: ToolInput,
options: { signal: AbortSignal; suggestions?: PermissionUpdate[] }
) => Promise<PermissionResult>;
type PermissionResult =
| { behavior: 'allow'; updatedInput: ToolInput; updatedPermissions?: PermissionUpdate[] }
| { behavior: 'deny'; message: string; interrupt?: boolean };

query() can yield 16 message types. The official docs show a simplified union of 7, but sdk.d.ts has the full set:

TypeSubtypePurpose
systeminitSession initialized, contains session_id, tools, model
systemtask_notificationBackground agent completed/failed/stopped
systemcompact_boundaryConversation was compacted
systemstatusStatus change (e.g. compacting)
systemhook_startedHook execution started
systemhook_progressHook progress output
systemhook_responseHook completed
systemfiles_persistedFiles saved
assistantClaude’s response (text + tool calls)
userUser message (internal)
user (replay)Replayed user message on resume
resultsuccess / error_*Final result of a prompt processing round
stream_eventPartial streaming (when includePartialMessages)
tool_progressLong-running tool progress
auth_statusAuthentication state changes
tool_use_summarySummary of preceding tool uses

SDKTaskNotificationMessage (sdk.d.ts:1507)

Section titled “SDKTaskNotificationMessage (sdk.d.ts:1507)”
type SDKTaskNotificationMessage = {
type: 'system';
subtype: 'task_notification';
task_id: string;
status: 'completed' | 'failed' | 'stopped';
output_file: string;
summary: string;
uuid: UUID;
session_id: string;
};

Two variants with shared fields:

// Shared fields on both variants:
// uuid, session_id, duration_ms, duration_api_ms, is_error, num_turns,
// total_cost_usd, usage: NonNullableUsage, modelUsage, permission_denials
// Success:
type SDKResultSuccess = {
type: 'result';
subtype: 'success';
result: string;
structured_output?: unknown;
// ...shared fields
};
// Error:
type SDKResultError = {
type: 'result';
subtype: 'error_during_execution' | 'error_max_turns' | 'error_max_budget_usd' | 'error_max_structured_output_retries';
errors: string[];
// ...shared fields
};

Useful fields on result: total_cost_usd, duration_ms, num_turns, modelUsage (per-model breakdown with costUSD, inputTokens, outputTokens, contextWindow).

type SDKAssistantMessage = {
type: 'assistant';
uuid: UUID;
session_id: string;
message: APIAssistantMessage; // From Anthropic SDK
parent_tool_use_id: string | null; // Non-null when from subagent
};
type SDKSystemMessage = {
type: 'system';
subtype: 'init';
uuid: UUID;
session_id: string;
apiKeySource: ApiKeySource;
cwd: string;
tools: string[];
mcp_servers: { name: string; status: string }[];
model: string;
permissionMode: PermissionMode;
slash_commands: string[];
output_style: string;
};

Turn Behavior: When the Agent Stops vs Continues

Section titled “Turn Behavior: When the Agent Stops vs Continues”

1. No tool_use blocks in response (THE PRIMARY CASE)

Claude responded with text only — it decided it has completed the task. The API’s stop_reason will be "end_turn". The SDK does NOT make this decision — it’s entirely driven by Claude’s model output.

2. Max turns exceeded — Results in SDKResultError with subtype: "error_max_turns".

3. Abort signal — User interruption via abortController.

4. Budget exceededtotalCost >= maxBudgetUsd"error_max_budget_usd".

5. Stop hook prevents continuation — Hook returns {preventContinuation: true}.

When the Agent CONTINUES (makes another API call)

Section titled “When the Agent CONTINUES (makes another API call)”

1. Response contains tool_use blocks (THE PRIMARY CASE) — Execute tools, increment turnCount, recurse into EZ.

2. max_output_tokens recovery — Up to 3 retries with a “break your work into smaller pieces” context message.

3. Stop hook blocking errors — Errors fed back as context messages, loop continues.

4. Model fallback — Retry with fallback model (one-time).

ConditionActionResult Type
Response has tool_use blocksExecute tools, recurse into EZcontinues
Response has NO tool_use blocksRun stop hooks, returnsuccess
turnCount > maxTurnsYield max_turns_reachederror_max_turns
totalCost >= maxBudgetUsdYield budget errorerror_max_budget_usd
abortController.signal.abortedYield interrupted msgdepends on context
stop_reason === "max_tokens" (output)Retry up to 3x with recovery promptcontinues
Stop hook preventContinuationReturn immediatelysuccess
Stop hook blocking errorFeed error back, recursecontinues
Model fallback errorRetry with fallback model (one-time)continues

Case 1: Synchronous Subagents (run_in_background: false) — BLOCKS

Section titled “Case 1: Synchronous Subagents (run_in_background: false) — BLOCKS”

Parent agent calls Task tool → VR() runs EZ() for subagent → parent waits for full result → tool result returned to parent → parent continues.

The subagent runs the full recursive EZ loop. The parent’s tool execution is suspended via await. There is a mid-execution “promotion” mechanism: a synchronous subagent can be promoted to background via Promise.race() against a backgroundSignal promise.

Case 2: Background Tasks (run_in_background: true) — DOES NOT WAIT

Section titled “Case 2: Background Tasks (run_in_background: true) — DOES NOT WAIT”
  • Bash tool: Command spawned, tool returns immediately with empty result + backgroundTaskId
  • Task/Agent tool: Subagent launched in fire-and-forget wrapper (g01()), tool returns immediately with status: "async_launched" + outputFile path

Zero “wait for background tasks” logic before emitting the type: "result" message. When a background task completes, an SDKTaskNotificationMessage is emitted separately.

Case 3: Agent Teams (TeammateTool / SendMessage) — RESULT FIRST, THEN POLLING

Section titled “Case 3: Agent Teams (TeammateTool / SendMessage) — RESULT FIRST, THEN POLLING”

The team leader runs its normal EZ loop, which includes spawning teammates. When the leader’s EZ loop finishes, type: "result" is emitted. Then the leader enters a post-result polling loop:

while (true) {
// Check if no active teammates AND no running tasks → break
// Check for unread messages from teammates → re-inject as new prompt, restart EZ loop
// If stdin closed with active teammates → inject shutdown prompt
// Poll every 500ms
}

From the SDK consumer’s perspective: you receive the initial type: "result", but the AsyncGenerator may continue yielding more messages as the team leader processes teammate responses and re-enters the agent loop. The generator only truly finishes when all teammates have shut down.

From sdk.mjs:

QK = typeof X === "string" // isSingleUserTurn = true when prompt is a string

When isSingleUserTurn is true and the first result message arrives:

if (this.isSingleUserTurn) {
this.transport.endInput(); // closes stdin to CLI
}

This triggers a chain reaction:

  1. SDK closes CLI stdin
  2. CLI detects stdin close
  3. Polling loop sees D = true (stdin closed) with active teammates
  4. Injects shutdown prompt → leader sends shutdown_request to all teammates
  5. Teammates get killed mid-research

The shutdown prompt (found via BGq variable in minified cli.js):

You are running in non-interactive mode and cannot return a response
to the user until your team is shut down.
You MUST shut down your team before preparing your final response:
1. Use requestShutdown to ask each team member to shut down gracefully
2. Wait for shutdown approvals
3. Use the cleanup operation to clean up the team
4. Only then provide your final response to the user

With V1 query() + string prompt + agent teams:

  1. Leader spawns teammates, they start researching
  2. Leader’s EZ loop ends (“I’ve dispatched the team, they’re working on it”)
  3. type: "result" emitted
  4. SDK sees isSingleUserTurn = true → closes stdin immediately
  5. Polling loop detects stdin closed + active teammates → injects shutdown prompt
  6. Leader sends shutdown_request to all teammates
  7. Teammates could be 10 seconds into a 5-minute research task and they get told to stop

Instead of passing a string prompt (which sets isSingleUserTurn = true), pass an AsyncIterable<SDKUserMessage>:

// Before (broken for agent teams):
query({ prompt: "do something" })
// After (keeps CLI alive):
query({ prompt: asyncIterableOfMessages })

When prompt is an AsyncIterable:

  • isSingleUserTurn = false
  • SDK does NOT close stdin after first result
  • CLI stays alive, continues processing
  • Background agents keep running
  • task_notification messages flow through the iterator
  • We control when to end the iterable

Additional Benefit: Streaming New Messages

Section titled “Additional Benefit: Streaming New Messages”

With the async iterable approach, we can push new incoming WhatsApp messages into the iterable while the agent is still working. Instead of queuing messages until the container exits and spawning a new container, we stream them directly into the running session.

With the async iterable fix (isSingleUserTurn = false), stdin stays open so the CLI never hits the teammate check or shutdown prompt injection:

1. system/init → session initialized
2. assistant/user → Claude reasoning, tool calls, tool results
3. ... → more assistant/user turns (spawning subagents, etc.)
4. result #1 → lead agent's first response (capture)
5. task_notification(s) → background agents complete/fail/stop
6. assistant/user → lead agent continues (processing subagent results)
7. result #2 → lead agent's follow-up response (capture)
8. [iterator done] → CLI closed stdout, all done

All results are meaningful — capture every one, not just the first.

const q = query({ prompt: "...", options: {...} });
for await (const msg of q) { /* process events */ }
  • When prompt is a string: isSingleUserTurn = true → stdin auto-closes after first result
  • For multi-turn: must pass an AsyncIterable<SDKUserMessage> and manage coordination yourself

V2: createSession() + send() / stream() — Persistent session

Section titled “V2: createSession() + send() / stream() — Persistent session”
await using session = unstable_v2_createSession({ model: "..." });
await session.send("first message");
for await (const msg of session.stream()) { /* events */ }
await session.send("follow-up");
for await (const msg of session.stream()) { /* events */ }
  • isSingleUserTurn = false always → stdin stays open
  • send() enqueues into an async queue (QX)
  • stream() yields from the same message generator, stopping on result type
  • Multi-turn is natural — just alternate send() / stream()
  • V2 does NOT call V1 query() internally — both independently create Transport + Query
AspectV1V2
isSingleUserTurntrue for string promptalways false
Multi-turnRequires managing AsyncIterableJust call send()/stream()
stdin lifecycleAuto-closes after first resultStays open until close()
Agentic loopIdentical EZ()Identical EZ()
Stop conditionsSameSame
Session persistenceMust pass resume to new query()Built-in via session object
API stabilityStableUnstable preview (unstable_v2_* prefix)

Key finding: Zero difference in turn behavior. Both use the same CLI process, the same EZ() recursive generator, and the same decision logic.

type HookEvent =
| 'PreToolUse' // Before tool execution
| 'PostToolUse' // After successful tool execution
| 'PostToolUseFailure' // After failed tool execution
| 'Notification' // Notification messages
| 'UserPromptSubmit' // User prompt submitted
| 'SessionStart' // Session started (startup/resume/clear/compact)
| 'SessionEnd' // Session ended
| 'Stop' // Agent stopping
| 'SubagentStart' // Subagent spawned
| 'SubagentStop' // Subagent stopped
| 'PreCompact' // Before conversation compaction
| 'PermissionRequest'; // Permission being requested
interface HookCallbackMatcher {
matcher?: string; // Optional tool name matcher
hooks: HookCallback[];
}
type HookCallback = (
input: HookInput,
toolUseID: string | undefined,
options: { signal: AbortSignal }
) => Promise<HookJSONOutput>;
type HookJSONOutput = AsyncHookJSONOutput | SyncHookJSONOutput;
type AsyncHookJSONOutput = { async: true; asyncTimeout?: number };
type SyncHookJSONOutput = {
continue?: boolean;
suppressOutput?: boolean;
stopReason?: string;
decision?: 'approve' | 'block';
systemMessage?: string;
reason?: string;
hookSpecificOutput?:
| { hookEventName: 'PreToolUse'; permissionDecision?: 'allow' | 'deny' | 'ask'; updatedInput?: Record<string, unknown> }
| { hookEventName: 'UserPromptSubmit'; additionalContext?: string }
| { hookEventName: 'SessionStart'; additionalContext?: string }
| { hookEventName: 'PostToolUse'; additionalContext?: string };
};
type SubagentStartHookInput = BaseHookInput & {
hook_event_name: 'SubagentStart';
agent_id: string;
agent_type: string;
};
type SubagentStopHookInput = BaseHookInput & {
hook_event_name: 'SubagentStop';
stop_hook_active: boolean;
agent_id: string;
agent_transcript_path: string;
agent_type: string;
};
// BaseHookInput = { session_id, transcript_path, cwd, permission_mode? }

The Query object (sdk.d.ts:931). Official docs list these public methods:

interface Query extends AsyncGenerator<SDKMessage, void> {
interrupt(): Promise<void>; // Stop current execution (streaming input mode only)
rewindFiles(userMessageUuid: string): Promise<void>; // Restore files to state at message (needs enableFileCheckpointing)
setPermissionMode(mode: PermissionMode): Promise<void>; // Change permissions (streaming input mode only)
setModel(model?: string): Promise<void>; // Change model (streaming input mode only)
setMaxThinkingTokens(max: number | null): Promise<void>; // Change thinking tokens (streaming input mode only)
supportedCommands(): Promise<SlashCommand[]>; // Available slash commands
supportedModels(): Promise<ModelInfo[]>; // Available models
mcpServerStatus(): Promise<McpServerStatus[]>; // MCP server connection status
accountInfo(): Promise<AccountInfo>; // Authenticated user info
}

Found in sdk.d.ts but NOT in official docs (may be internal):

  • streamInput(stream) — stream additional user messages
  • close() — forcefully end the query
  • setMcpServers(servers) — dynamically add/remove MCP servers
type SandboxSettings = {
enabled?: boolean;
autoAllowBashIfSandboxed?: boolean;
excludedCommands?: string[];
allowUnsandboxedCommands?: boolean;
network?: {
allowLocalBinding?: boolean;
allowUnixSockets?: string[];
allowAllUnixSockets?: boolean;
httpProxyPort?: number;
socksProxyPort?: number;
};
ignoreViolations?: {
file?: string[];
network?: string[];
};
};

When allowUnsandboxedCommands is true, the model can set dangerouslyDisableSandbox: true in Bash tool input, which falls back to the canUseTool permission handler.

Creates type-safe MCP tool definitions with Zod schemas:

function tool<Schema extends ZodRawShape>(
name: string,
description: string,
inputSchema: Schema,
handler: (args: z.infer<ZodObject<Schema>>, extra: unknown) => Promise<CallToolResult>
): SdkMcpToolDefinition<Schema>

Creates an in-process MCP server (we use stdio instead for subagent inheritance):

function createSdkMcpServer(options: {
name: string;
version?: string;
tools?: Array<SdkMcpToolDefinition<any>>;
}): McpSdkServerConfigWithInstance
MinifiedPurpose
s_V1 query() export
e_unstable_v2_createSession
Xxunstable_v2_resumeSession
Qxunstable_v2_prompt
U9V2 Session class (send/stream/close)
XXProcessTransport (spawns cli.js)
$XQuery class (JSON-line routing, async iterable)
QXAsyncQueue (input stream buffer)
MinifiedPurpose
EZCore recursive agentic loop (async generator)
_t4Stop hook handler (runs when no tool_use blocks)
PU1Streaming tool executor (parallel during API response)
TP6Standard tool executor (after API response)
GU1Individual tool executor
lTqSDK session runner (calls EZ directly)
bd1stdin reader (JSON-lines from transport)
mW1Anthropic API streaming caller
  • sdk.d.ts — All type definitions (1777 lines)
  • sdk-tools.d.ts — Tool input schemas
  • sdk.mjs — SDK runtime (minified, 376KB)
  • cli.js — CLI executable (minified, runs as subprocess)