feat(worker): ClaudeCodeAdapter runs claude -p stream-json in the per-user box

This commit is contained in:
Gabriel Brown
2026-07-11 10:35:56 -04:00
parent c9ee2e6cde
commit 76886621b5
7 changed files with 465 additions and 0 deletions
@@ -1,6 +1,8 @@
import { registerAdapter } from './agent-runtime';
import { createClaudeAdapter } from './claude-adapter';
import { createCodexAdapter } from './codex-adapter';
import { createOpenCodeAdapter } from './opencode-adapter';
registerAdapter('codex', createCodexAdapter);
registerAdapter('opencode', createOpenCodeAdapter);
registerAdapter('claude', createClaudeAdapter);