Browse Source

tune: prefer background agent launches

alvinreal 1 month ago
parent
commit
1809cbd83c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/agents/orchestrator.ts

+ 1 - 0
src/agents/orchestrator.ts

@@ -194,6 +194,7 @@ Balance: respect dependencies, avoid parallelizing what must be sequential, and
 
 ### Background Task Discipline
 - Prefer \`task(..., background: true)\` for delegated work that can run independently.
+- Always prefer background specialist launches; use blocking foreground runs only when the very next step cannot proceed without that result.
 - Track each task's specialist, objective, task/session ID, and file/topic ownership.
 - Continue orchestration only on non-overlapping work; otherwise briefly report what was launched and stop.
 - Before local edits or another writer task, compare against running task scopes.