feat: support codex runner in reviewer container
- Build both agent-runner and codex-runner into container image - Select runner path based on group.agentType at docker exec time - Update README to role-centric overview, generic MoA references - Add MoA reference opinions guidance to arbiter prompt
This commit is contained in:
@@ -484,7 +484,11 @@ export async function runReviewerContainer(args: {
|
||||
}
|
||||
}
|
||||
}
|
||||
execArgs.push(containerName, 'bun', '/app/dist/index.js');
|
||||
const isCodexAgent = (group.agentType || 'claude-code') === 'codex';
|
||||
const runnerPath = isCodexAgent
|
||||
? '/app/codex/dist/index.js'
|
||||
: '/app/agent/dist/index.js';
|
||||
execArgs.push(containerName, 'bun', runnerPath);
|
||||
|
||||
return new Promise<AgentOutput>((resolve) => {
|
||||
const proc = spawn(CONTAINER_RUNTIME_BIN, execArgs, {
|
||||
|
||||
Reference in New Issue
Block a user