What problem does it solve?
Subagent-guide helps you decide when delegation and parallel subagent execution will actually improve outcomes, and prevents wasting time on unnecessary or unsafe task splitting.
Core Features & Use Cases
- Decision-first delegation: guides agents to evaluate whether the task has multiple independent workstreams, needs isolated second opinions, or benefits from reducing coordination cost.
- Spawn vs fork mode selection: recommends the cheaper, safer approach (spawn for self-contained sub-tasks) and uses fork only when deep dependency on parent context is unavoidable.
- Robust task boundary design: instructs how to define self-contained sub-tasks with clear “done” criteria and avoid mixing execution with planning.
Quick Start
Tell your AI to handle the task by first checking whether it can be split into multiple independent workstreams, then delegate in parallel to subagents using self-contained tasks with an explicit spawn/fork rationale, and finally merge the results.