Просмотр исходного кода

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

Alvin 2 месяцев назад
Родитель
Сommit
07b939d598
1 измененных файлов с 1 добавлено и 0 удалено
  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.