multi-agent-team
Installation
SKILL.md
Multi-Agent Team Orchestration
Parallel vs Serial Decision Tree
Task arrives
|
+-- Can subtasks run independently? (no shared files, no data dependency)
| YES --> Are there 3+ independent domains?
| YES --> Parallel dispatch (one agent per domain)
| NO --> 2 agents parallel if truly independent, else serial
| NO --> Do subtasks have a clear dependency chain?
| YES --> Serial pipeline (plan->exec->verify)
| NO --> Decompose further until dependencies are explicit
|
+-- Will agents edit the same files?
YES --> Serial OR use git worktree isolation
NO --> Safe to parallelize