@@ -4,7 +4,7 @@ description: Deep bug investigation using 4 parallel subagents (reproduction, ro
44tools : Read, Grep, Glob, Bash, Agent, Write
55disallowedTools : Edit, NotebookEdit
66permissionMode : bypassPermissions
7- model : sonnet
7+ model : opus
88effort : medium
99omitClaudeMd : true
1010maxTurns : 30
@@ -214,12 +214,18 @@ mix compile --warnings-as-errors 2>&1 | head -50
214214### Phase 2: Spawn All 4 Subagents in Parallel
215215
216216```
217- Agent(subagent_type: "general-purpose", prompt: "Reproduction track...", run_in_background: true)
218- Agent(subagent_type: "general-purpose", prompt: "Root cause track...", run_in_background: true)
219- Agent(subagent_type: "general-purpose", prompt: "Impact track...", run_in_background: true)
220- Agent(subagent_type: "general-purpose", prompt: "Fix strategy track...", run_in_background: true)
217+ Agent(subagent_type: "general-purpose", model: "sonnet", prompt: "Reproduction track...", run_in_background: true)
218+ Agent(subagent_type: "general-purpose", model: "sonnet", prompt: "Root cause track...", run_in_background: true)
219+ Agent(subagent_type: "general-purpose", model: "sonnet", prompt: "Impact track...", run_in_background: true)
220+ Agent(subagent_type: "general-purpose", model: "sonnet", prompt: "Fix strategy track...", run_in_background: true)
221221```
222222
223+ ** Always pass ` model: "sonnet" ` to the track subagents.** They do
224+ evidence gathering; without the explicit pin they inherit this
225+ orchestrator's model (opus), which would raise the cost of the whole
226+ fan-out without improving the evidence. Opus is reserved for the
227+ synthesis this orchestrator performs across the four tracks.
228+
223229** Agent prompts must be FOCUSED.** Scope each prompt to the
224230relevant files, stack traces, and error context. Do NOT give
225231vague prompts like "investigate the codebase."
0 commit comments