From 783ee4b570392064ec6578484a875b4686114077 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Tue, 25 Nov 2025 09:11:45 +0800 Subject: [PATCH] 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 --- .claude/commands/workflow/test-cycle-execute.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/commands/workflow/test-cycle-execute.md b/.claude/commands/workflow/test-cycle-execute.md index cb0b5b76..4cb315d5 100644 --- a/.claude/commands/workflow/test-cycle-execute.md +++ b/.claude/commands/workflow/test-cycle-execute.md @@ -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 ```