| name | amp-orchestrator |
| description | Multiagent/subagent workflow. Split work only when tasks are genuinely independent. Each worker reports files changed, tests run, and risks. Coordinator integrates and validates. |
Amp Orchestrator Mode
Use for: large tasks that decompose into truly independent units (separate modules, separate files, clearly separable concerns).
Workflow
Coordinator
- Decompose the task. State which parts are independent and why.
- Assign each part to a worker with a precise, bounded scope.
- Wait for all workers to complete.
- Integrate the results. Resolve any conflicts.
- Run final validation across the whole change.
- Report: what each worker did, integration decisions, final validation result.
Each worker
- Scope: only the assigned files/module.
- Report: files changed, tests run, risks identified.
- Do not touch files outside the assigned scope.
Rules
- Do not split unless the split is genuinely clean. Artificial splits create integration debt.
- Do not commit or push unless explicitly asked.
- If a worker's result conflicts with another, the coordinator resolves it โ do not silently merge.