Swap model assignments: claude-opus-4.6 (high effort) for the actor,
claude-sonnet-4.6 (medium effort) for the planner. Increase planner
maxIterations from 1 to 5 so it can actually read AGENTS.md and
project context before producing its analysis.
export const AGENT_ACTOR_EFFORT = 'high'
-export const AGENT_ACTOR_MODEL = 'github-copilot/claude-sonnet-4.6'
+export const AGENT_ACTOR_MODEL = 'github-copilot/claude-opus-4.6'
export const AGENT_CRITIC_EFFORT = 'medium'
export const AGENT_MAX_CRITIC_ROUNDS = 10
-export const AGENT_PLANNER_EFFORT = 'high'
+export const AGENT_PLANNER_EFFORT = 'medium'
-export const AGENT_PLANNER_MODEL = 'github-copilot/claude-opus-4.6'
+export const AGENT_PLANNER_MODEL = 'github-copilot/claude-sonnet-4.6'
export const AGENT_TASK_TIMEOUT_MS = 6_000_000
completionSignal: COMPLETION_SIGNAL,
hooks: SANDBOX_AUTH_HOOKS,
idleTimeoutSeconds: AGENT_IDLE_TIMEOUT_S,
- maxIterations: 1,
+ maxIterations: 5,
name: 'Planner',
promptArgs: {
BRANCH_PREFIX: this.branchPrefix,