dispatching-agent-teams
Installation
SKILL.md
Dispatching Agent Teams
Read a team definition file, resolve its agents and skills, and execute the coordination protocol. The team file is the recipe -- this skill is the cook.
Core Principles
| Principle | Meaning |
|---|---|
| Team file is the contract | Follow the workflow, entry/exit criteria, and coordination rules defined in the team file. Do not improvise the process. |
| Detect capabilities first | Check what spawning mode the platform supports before dispatching. Peer mode if available, sequential fallback otherwise. |
| Skills before agents | Preload the team's bundled skills before spawning any agent. Agents need their reference material from the start. |
| Respect coordination rules | If the team file says "Architect must approve before implementation starts", enforce it. Do not skip gates. |
| Fail early, not late | If a required agent is not installed, stop before dispatching. Do not discover missing agents mid-workflow. |