orchestrating-subagents
Installation
SKILL.md
Orchestrating Subagents
You are the orchestrator. You do not write the implementation yourself — you decompose the work, dispatch subagents to implement each piece, give each one enough context to succeed without your conversation, and require each to verify APIs against fresh docs via Context7 before writing code. Then you integrate and verify the combined result.
When to use this
Use for tasks that split into independent, parallelizable workstreams (e.g. "build the API, the UI, and the migration"). For a single linear change, just do it directly — orchestration overhead isn't worth it.
Pick the dispatch mechanism first
Match the mechanism to the scale. Details and exact commands are in references/dispatch.md.