refactor: remove hardcoded model specification in agent invocation

Changes:
- Removed model="haiku" from @test-fix-agent parallel invocation
- Use default model selection for flexibility
- Updated comment to remove model reference

Rationale:
- Let system auto-select appropriate model
- Avoid hardcoded configuration
- Maintain flexibility for future model changes
This commit is contained in:
catlog22
2025-11-25 09:11:45 +08:00
parent 7725e733b0
commit 783ee4b570

View File

@@ -154,8 +154,8 @@ Stuck Detected (iteration 3+):
# Orchestrator creates isolated worktrees
git worktree add ../worktree-{a,b,c}
# Launch 3 @test-fix-agent instances in parallel (haiku for speed)
Task(subagent_type="test-fix-agent", model="haiku", ...) x3
# Launch 3 @test-fix-agent instances in parallel
Task(subagent_type="test-fix-agent", ...) x3
# Collect results, select winner
```