mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
WHAT: - Ran full server test suite (13/13 MCP tests pass) - Identified 2 workarounds in codex-mcp-agent.test.ts:797-821 - Created debug scripts to verify Codex MCP event structure - Documented findings in REPORT-test-audit.md FINDINGS: 1. "Codex doesn't expose read_file" - FALSE. File reads are exposed via exec_command_begin/end with parsed_cmd[].type === "read" 2. "web_search doesn't return results" - FALSE. Results are exposed via mcp_tool_call_end with result.Ok.content[] EVIDENCE: - scripts/codex-file-read-debug.ts proves file read events exist - scripts/codex-websearch-debug.ts proves search results exist 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3227 lines
306 KiB
Plaintext
3227 lines
306 KiB
Plaintext
|
||
> @paseo/server@0.1.0 test
|
||
> vitest run
|
||
|
||
|
||
RUN v3.2.4 /Users/moboudra/dev/voice-dev/packages/server
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > responds with text
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > responds with text
|
||
[CodexAgentTest] Running single-turn acknowledgment test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits tool or command events when writing a file
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits tool or command events when writing a file
|
||
[CodexAgentTest] Streaming file creation activity
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits Codex tool calls that hydrate into specific UI entries
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits Codex tool calls that hydrate into specific UI entries
|
||
[CodexAgentTest] Streaming Codex run for tool call hydration test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits distinct non-empty call ids for sequential Codex tool calls
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > emits distinct non-empty call ids for sequential Codex tool calls
|
||
[CodexAgentTest] Streaming Codex run for tool call id uniqueness test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > hydrates persisted shell_command tool calls with completed status
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > hydrates persisted shell_command tool calls with completed status
|
||
[CodexAgentTest] Recording Codex command activity for persistence hydration test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > supports multiple turns within the same session
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > supports multiple turns within the same session
|
||
[CodexAgentTest] Running multi-turn continuity test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > can change modes mid-session
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > can change modes mid-session
|
||
[CodexAgentTest] Testing mode transitions inside a single session
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > resumes a session using a persistence handle
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > resumes a session using a persistence handle
|
||
[CodexAgentTest] Recording initial turn before persistence
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > resumes a session using a persistence handle
|
||
[CodexAgentTest] Resuming session from persistence handle
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > resumes a session using a persistence handle
|
||
[CodexAgentTest] Replayed 5 history events: [
|
||
{
|
||
"type": "thread_started"
|
||
},
|
||
{
|
||
"type": "timeline",
|
||
"timelineType": "user_message"
|
||
},
|
||
{
|
||
"type": "timeline",
|
||
"timelineType": "reasoning"
|
||
},
|
||
{
|
||
"type": "timeline",
|
||
"timelineType": "reasoning"
|
||
},
|
||
{
|
||
"type": "timeline",
|
||
"timelineType": "assistant_message"
|
||
}
|
||
]
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > interrupts a long-running shell command before it completes
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > interrupts a long-running shell command before it completes
|
||
[CodexAgentTest] Launching sleep command interrupt test
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > sees agent-control MCP tools (list_agents) via codex
|
||
[Codex] Using system binary: /Users/moboudra/.asdf/installs/nodejs/22.20.0/bin/codex
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > sees agent-control MCP tools (list_agents) via codex
|
||
[CodexAgentTest] Agent MCP URL: http://127.0.0.1:60651/mcp/agents
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > sees agent-control MCP tools (list_agents) via codex
|
||
[CodexAgentTest] Agent MCP initialize request received
|
||
|
||
stdout | src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > sees agent-control MCP tools (list_agents) via codex
|
||
[CodexAgentTest] Agent MCP session initialized: e2cb96b0-53f5-4a46-a23d-8ae9045af264
|
||
|
||
❯ src/server/agent/providers/codex-agent.test.ts (15 tests | 1 failed | 1 skipped) 97745ms
|
||
✓ CodexAgentClient (SDK integration) > responds with text 6451ms
|
||
✓ CodexAgentClient (SDK integration) > emits tool or command events when writing a file 12920ms
|
||
✓ CodexAgentClient (SDK integration) > emits Codex tool calls that hydrate into specific UI entries 13202ms
|
||
✓ CodexAgentClient (SDK integration) > emits distinct non-empty call ids for sequential Codex tool calls 12851ms
|
||
× CodexAgentClient (SDK integration) > hydrates persisted shell_command tool calls with completed status 6863ms
|
||
→ expected undefined to be truthy
|
||
✓ CodexAgentClient (SDK integration) > supports multiple turns within the same session 10065ms
|
||
✓ CodexAgentClient (SDK integration) > can change modes mid-session 8463ms
|
||
✓ CodexAgentClient (SDK integration) > resumes a session using a persistence handle 8748ms
|
||
✓ CodexAgentClient (SDK integration) > interrupts a long-running shell command before it completes 6349ms
|
||
↓ CodexAgentClient (SDK integration) > emits permission requests and resolves them when approvals are handled (awaiting Codex support)
|
||
✓ CodexAgentClient (SDK integration) > hydrates user messages from persisted history 5706ms
|
||
✓ CodexAgentClient (SDK integration) > sees agent-control MCP tools (list_agents) via codex 6123ms
|
||
✓ isSyntheticRolloutUserMessage > flags AGENTS instruction payloads 0ms
|
||
✓ isSyntheticRolloutUserMessage > flags environment context payloads 0ms
|
||
✓ isSyntheticRolloutUserMessage > allows real user prompts 0ms
|
||
✓ src/server/agent/providers/codex-mcp-agent.test.ts (13 tests) 147933ms
|
||
✓ CodexMcpAgentClient (MCP integration) > responds with text 4125ms
|
||
✓ CodexMcpAgentClient (MCP integration) > maps MCP stream events into timeline items with stable call ids 11517ms
|
||
✓ CodexMcpAgentClient (MCP integration) > maps thread/item events for file changes, MCP tools, web search, and todo lists 17220ms
|
||
✓ CodexMcpAgentClient (MCP integration) > captures tool call inputs/outputs for commands, file changes, file reads, MCP tools, and web search 51619ms
|
||
✓ CodexMcpAgentClient (MCP integration) > emits an error timeline item for failed MCP turns 6014ms
|
||
✓ CodexMcpAgentClient (MCP integration) > persists session metadata and resumes with history 8245ms
|
||
✓ CodexMcpAgentClient (MCP integration) > reports runtime info with provider, session, model, and mode 4726ms
|
||
✓ CodexMcpAgentClient (MCP integration) > requests permission and resolves approval when allowed 7089ms
|
||
✓ CodexMcpAgentClient (MCP integration) > requires permission in read-only (on-request) mode 10372ms
|
||
✓ CodexMcpAgentClient (MCP integration) > denies permission requests and reports resolution 7454ms
|
||
✓ CodexMcpAgentClient (MCP integration) > aborts when permission responses request an interrupt 5208ms
|
||
✓ CodexMcpAgentClient (MCP integration) > interrupts a long-running command via abort 3795ms
|
||
✓ CodexMcpAgentClient (MCP integration) > interrupts long-running commands within 1s and leaves a clean session 10547ms
|
||
✓ src/server/terminal-mcp/terminal-manager.test.ts (26 tests) 40555ms
|
||
✓ TerminalManager - Command Execution > executeCommand > should handle commands with pipes and operators 679ms
|
||
✓ TerminalManager - Command Execution > executeCommand > should capture non-zero exit codes 710ms
|
||
✓ TerminalManager - Command Execution > executeCommand > should launch interactive command (Python REPL) 1330ms
|
||
✓ TerminalManager - Command Execution > executeCommand > should handle command with working directory 690ms
|
||
✓ TerminalManager - Command Execution > executeCommand > should handle long-running command with timeout 707ms
|
||
✓ TerminalManager - Command Execution > listCommands > should list all commands including dead ones 2322ms
|
||
✓ TerminalManager - Command Execution > listCommands > should preserve command and working directory info for dead commands 1208ms
|
||
✓ TerminalManager - Command Execution > captureCommand > should capture output from running command 1348ms
|
||
✓ TerminalManager - Command Execution > sendTextToCommand > should send text to running Python REPL 4461ms
|
||
✓ TerminalManager - Command Execution > sendTextToCommand > should handle multiple sequential inputs to REPL 6041ms
|
||
✓ TerminalManager - Command Execution > sendKeysToCommand > should send Ctrl-C to interrupt running command 2228ms
|
||
✓ TerminalManager - Command Execution > sendKeysToCommand > should send Enter key to REPL 2839ms
|
||
✓ TerminalManager - Command Execution > sendKeysToCommand > should repeat key press multiple times 4000ms
|
||
✓ TerminalManager - Command Execution > killCommand > should kill running command 975ms
|
||
✓ TerminalManager - Command Execution > killCommand > should kill finished command (cleanup) 522ms
|
||
✓ TerminalManager - Command Execution > Complex workflows > should handle Node.js REPL workflow 5195ms
|
||
✓ TerminalManager - Command Execution > Complex workflows > should handle command that produces streaming output 421ms
|
||
✓ TerminalManager - Command Execution > Complex workflows > should handle command with stderr output 708ms
|
||
✓ TerminalManager - Command Execution > Edge cases > should handle empty command output 713ms
|
||
✓ TerminalManager - Command Execution > Edge cases > should handle command with tilde in directory 717ms
|
||
✓ TerminalManager - Command Execution > Edge cases > should handle very long output 705ms
|
||
✓ TerminalManager - Command Execution > Edge cases > should handle special characters in command 701ms
|
||
✓ TerminalManager - Command Execution > Edge cases > should handle command with quotes 711ms
|
||
stdout | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
✓ Agent registry loaded (0 records); agents will initialize on demand
|
||
✓ Agent MCP server mounted at /mcp/agents
|
||
✓ WebSocket server initialized on /ws
|
||
|
||
stderr | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
⚠ OPENAI_API_KEY not set - LLM, STT, and TTS features will not work
|
||
|
||
stdout | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
[Agent MCP] Session initialized: 6ec53dc0-7358-49d2-823e-c8a851056934
|
||
|
||
stdout | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
[Agent MCP] Session initialized: cb75b46a-53a6-4320-bbd3-df23260604ec
|
||
|
||
stdout | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stdout | src/server/agent/agent-mcp.e2e.test.ts > agent MCP end-to-end > creates a Claude agent and writes a file
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
✓ src/server/agent/agent-mcp.e2e.test.ts (1 test) 15659ms
|
||
✓ agent MCP end-to-end > creates a Claude agent and writes a file 15658ms
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > responds with text
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > streams reasoning chunks
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > supports multi-turn conversations
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > resumes a persisted session
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > updates session modes
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > handles plan mode approval flow
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-031a99337c.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-2331ec2982.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-37c472a283.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-53a2d31a25.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-6f624fe23b.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-879e30e255.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-8d55c10d2f.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a1c92d40ff.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-a599c55717.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-d2b2e6619a.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-db8c90ddaf.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-e89a24e216.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f3046a8a6e.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
|
||
|
||
stderr | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSDK] Error: UNKNOWN: unknown error, watch '/var/folders/xl/kkk9drfd3ms_t8x7rmy4z6900000gn/T/vscode-git-f460adcbda.sock'
|
||
at FSWatcher.<computed> (node:internal/fs/watchers:254:19)
|
||
at watch (node:fs:2549:36)
|
||
at UFB (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6516)
|
||
at Y23 (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:11679)
|
||
at mi1._watchWithNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:6997)
|
||
at mi1._handleFile (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:7723)
|
||
at mi1._addToNodeFs (file:///Users/moboudra/dev/voice-dev/node_modules/@anthropic-ai/claude-agent-sdk/cli.js:448:10731)
|
||
|
||
stdout | src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
[ClaudeAgentSession] Captured model from SDK init: claude-sonnet-4-5-20250929
|
||
|
||
❯ src/server/agent/providers/claude-agent.test.ts (17 tests | 2 failed) 205405ms
|
||
✓ ClaudeAgentClient (SDK integration) > responds with text 5759ms
|
||
✓ ClaudeAgentClient (SDK integration) > streams reasoning chunks 14563ms
|
||
✓ ClaudeAgentClient (SDK integration) > emits a single assistant message in the hydrated stream 5892ms
|
||
✓ ClaudeAgentClient (SDK integration) > shows the command inside pending tool calls 9721ms
|
||
✓ ClaudeAgentClient (SDK integration) > tracks permission + tool lifecycle when editing a file 13289ms
|
||
✓ ClaudeAgentClient (SDK integration) > permission flow parity - allows command after approval 12469ms
|
||
✓ ClaudeAgentClient (SDK integration) > permission flow parity - denies command execution 12424ms
|
||
✓ ClaudeAgentClient (SDK integration) > permission flow parity - aborts on interrupt response 6343ms
|
||
✓ ClaudeAgentClient (SDK integration) > interrupts a long-running bash command before it finishes 6614ms
|
||
✓ ClaudeAgentClient (SDK integration) > supports multi-turn conversations 9140ms
|
||
✓ ClaudeAgentClient (SDK integration) > resumes a persisted session 13313ms
|
||
✓ ClaudeAgentClient (SDK integration) > updates session modes 5636ms
|
||
✓ ClaudeAgentClient (SDK integration) > handles plan mode approval flow 40182ms
|
||
× ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream 32162ms
|
||
→ expected false to be true // Object.is equality
|
||
× ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history 17880ms
|
||
→ expected false to be true // Object.is equality
|
||
✓ convertClaudeHistoryEntry > maps user tool results to timeline items 1ms
|
||
✓ convertClaudeHistoryEntry > returns user messages when no tool blocks exist 0ms
|
||
✓ src/server/agent/model-catalog.e2e.test.ts (2 tests) 1074ms
|
||
✓ provider model catalogs > Claude catalog exposes Sonnet and Haiku variants 688ms
|
||
✓ provider model catalogs > Codex catalog exposes gpt-5.1-codex 385ms
|
||
stdout | src/server/bootstrap.smoke.test.ts > paseo daemon bootstrap > starts and serves health endpoint
|
||
✓ Agent registry loaded (0 records); agents will initialize on demand
|
||
✓ Agent MCP server mounted at /mcp/agents
|
||
✓ WebSocket server initialized on /ws
|
||
|
||
stderr | src/server/bootstrap.smoke.test.ts > paseo daemon bootstrap > starts and serves health endpoint
|
||
⚠ OPENAI_API_KEY not set - LLM, STT, and TTS features will not work
|
||
|
||
✓ src/server/bootstrap.smoke.test.ts (1 test) 5ms
|
||
stderr | src/server/agent/agent-registry.test.ts > AgentRegistry > recovers from trailing garbage in agents.json
|
||
[AgentRegistry] Recovered corrupted agents.json payload; rewrote sanitized copy
|
||
|
||
✓ src/server/agent/agent-registry.test.ts (7 tests) 7ms
|
||
✓ src/server/agent/agent-manager.test.ts (4 tests) 5ms
|
||
✓ src/server/agent/mcp-server.test.ts (2 tests) 3ms
|
||
✓ src/server/agent/agent-projections.test.ts (9 tests) 2ms
|
||
stderr | src/server/agent/model-resolver.test.ts > resolveAgentModel > returns undefined when the catalog lookup fails
|
||
[AgentModelResolver] Failed to resolve default model for codex: Error: boom
|
||
at [90m/Users/moboudra/dev/voice-dev/packages/server/[39msrc/server/agent/model-resolver.test.ts:55:35
|
||
at file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:155:11
|
||
at file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:752:26
|
||
at file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1897:20
|
||
at new Promise (<anonymous>)
|
||
at runWithTimeout (file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1863:10)
|
||
at runTest (file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1574:12)
|
||
at runSuite (file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1729:8)
|
||
at runSuite (file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1729:8)
|
||
at runFiles (file:///Users/moboudra/dev/voice-dev/node_modules/[4m@vitest/runner[24m/dist/chunk-hooks.js:1787:3)
|
||
|
||
✓ src/server/agent/model-resolver.test.ts (4 tests) 2ms
|
||
✓ src/server/agent/providers/codex-agent.unit.test.ts (1 test) 1ms
|
||
✓ src/server/agent/wait-for-agent-tracker.test.ts (2 tests) 1ms
|
||
✓ src/server/persistence-hooks.test.ts (1 test) 0ms
|
||
✓ src/server/agent/providers/claude-agent.history.test.ts (3 tests) 0ms
|
||
|
||
⎯⎯⎯⎯⎯⎯⎯ Failed Tests 3 ⎯⎯⎯⎯⎯⎯⎯
|
||
|
||
FAIL src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates persisted tool call results into the UI stream
|
||
AssertionError: expected false to be true // Object.is equality
|
||
|
||
[32m- Expected[39m
|
||
[31m+ Received[39m
|
||
|
||
[32m- true[39m
|
||
[31m+ false[39m
|
||
|
||
❯ src/server/agent/providers/claude-agent.test.ts:968:56
|
||
966|
|
||
967| const historyPaths = getClaudeHistoryPaths(cwd, sessionId!);
|
||
968| expect(await waitForHistoryFile(historyPaths)).toBe(true);
|
||
| ^
|
||
969|
|
||
970| const resumed = await client.resumeSession(handle!, { cwd });
|
||
|
||
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/3]⎯
|
||
|
||
FAIL src/server/agent/providers/claude-agent.test.ts > ClaudeAgentClient (SDK integration) > hydrates user messages from persisted history
|
||
AssertionError: expected false to be true // Object.is equality
|
||
|
||
[32m- Expected[39m
|
||
[31m+ Received[39m
|
||
|
||
[32m- true[39m
|
||
[31m+ false[39m
|
||
|
||
❯ src/server/agent/providers/claude-agent.test.ts:1069:56
|
||
1067|
|
||
1068| const historyPaths = getClaudeHistoryPaths(cwd, sessionId!);
|
||
1069| expect(await waitForHistoryFile(historyPaths)).toBe(true);
|
||
| ^
|
||
1070|
|
||
1071| const resumed = await client.resumeSession(handle!, { cwd });
|
||
|
||
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[2/3]⎯
|
||
|
||
FAIL src/server/agent/providers/codex-agent.test.ts > CodexAgentClient (SDK integration) > hydrates persisted shell_command tool calls with completed status
|
||
AssertionError: expected undefined to be truthy
|
||
|
||
[32m- Expected:[39m
|
||
true
|
||
|
||
[31m+ Received:[39m
|
||
undefined
|
||
|
||
❯ src/server/agent/providers/codex-agent.test.ts:498:30
|
||
496| isAgentToolCallItem(item) && item.payload.data.server === …
|
||
497| );
|
||
498| expect(commandEntry).toBeTruthy();
|
||
| ^
|
||
499| if (commandEntry) {
|
||
500| expect(commandEntry.payload.data.status).toBe("completed");
|
||
|
||
⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[3/3]⎯
|
||
|
||
|
||
Test Files 2 failed | 14 passed (16)
|
||
Tests 3 failed | 104 passed | 1 skipped (108)
|
||
Start at 14:40:44
|
||
Duration 509.26s (transform 358ms, setup 0ms, collect 742ms, tests 508.39s, environment 0ms, prepare 35ms)
|
||
|
||
npm error Lifecycle script `test` failed with error:
|
||
npm error code 1
|
||
npm error path /Users/moboudra/dev/voice-dev/packages/server
|
||
npm error workspace @paseo/server@0.1.0
|
||
npm error location /Users/moboudra/dev/voice-dev/packages/server
|
||
npm error command failed
|
||
npm error command sh -c vitest run
|