Alvin Unreal 2 weeks ago
parent
commit
a63e113594
2 changed files with 3 additions and 4 deletions
  1. 2 3
      src/agents/orchestrator.ts
  2. 1 1
      src/config/constants.ts

+ 2 - 3
src/agents/orchestrator.ts

@@ -68,7 +68,6 @@ You are an AI coding orchestrator that optimizes for quality, speed, cost, and r
 - **Delegate when:** For implementation work, think and triage first. If the change is non-trivial or multi-file, hand bounded execution to @fixer
 - **Don't delegate when:** Needs discovery/research/decisions • Single small change (<20 lines, one file) • Unclear requirements needing iteration • Explaining to fixer > doing • Tight integration with your current work • Sequential dependencies
 - **Rule of thumb:** Explaining > doing? → yourself. Orchestrator paths selection is vastly improved by Fixer. eg it can reduce overall speed if Orchestrator splits what's usually a single task into multiple subtasks and parallelize it with fixer.
-  Fixer also recudes cost by beeing cheaper than orchestrator for implementation tasks.
 
 @council
 - Role: Multi-LLM consensus engine for high-confidence answers
@@ -102,10 +101,10 @@ Choose the path that optimizes all four.
 - Skip delegation if overhead ≥ doing it yourself
 
 ## 4. Split and Parallelize
-Can tasks be splitted to subtasks and run in parallel?
+Can tasks be split into subtasks and run in parallel?
 - Multiple @explorer searches across different domains?
 - @explorer + @librarian research in parallel?
-- Multiple @fixer instances for independent implementation tasks?
+- Multiple @fixer instances for faster, scoped implementation?
 
 Balance: respect dependencies, avoid parallelizing what must be sequential.
 

+ 1 - 1
src/config/constants.ts

@@ -80,7 +80,7 @@ export const DEFAULT_MAX_SUBAGENT_DEPTH = 3;
 
 // Workflow reminders
 export const PHASE_REMINDER_TEXT = `Recall Workflow Rules:
-Understand → build the best path (delegated based on rules, splitted and parallelized as much as possible) → execute → verify.
+Understand → build the best path (delegated based on Agent rules, split and parallelized as much as possible) → execute → verify.
 If delegating, launch the specialist in the same turn you mention it.`;
 
 // Tmux pane spawn delay (ms) — gives TmuxSessionManager time to create pane