Browse Source

Merge pull request #559 from alvinunreal/tune/background-delegation

Alvin 1 month ago
parent
commit
07b939d598
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.
+- Launch specialist agents in the background by default so the orchestrator stays unblocked and can reconcile results when they return.
 - 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.