refactor(worker): move Codex turn logic into CodexAdapter behind AgentRuntime

This commit is contained in:
Gabriel Brown
2026-07-11 02:53:26 -04:00
parent c1e816741d
commit e5bba720b4
5 changed files with 382 additions and 268 deletions
@@ -0,0 +1,4 @@
import { registerAdapter } from './agent-runtime';
import { createCodexAdapter } from './codex-adapter';
registerAdapter('codex', createCodexAdapter);