What problem does it solve?
It turns build/create/implement-style requests into an organized execution plan that splits work into clear subcomponents, reducing confusion and missed integration seams.
Core Features & Use Cases
- Orchestrates decomposed execution: delegates planning to a task-decomposer and implementation to component-coder subagents, then dispatches in a controlled queue.
- Uses decomposition gates + approval gates: only decomposes when architectural seams and working-set needs justify the overhead, and when the user explicitly approves implementation.
- Contract verification workflow: validates that outputs match interfaces/dom contracts and performs stage 2 integration checks to ensure the artifact actually works.
(Optional) When to use
- Use when the user says build verbs for a non-trivial artifact and gives explicit approval like "let's build" or "ship it".
- Skip when it’s a bug fix, pure Q&A, doc-only edits, or the user opts out by saying to do it directly.
Quick Start
When you reply with an explicit approval to build an artifact (e.g., “ship it”), invoke decompose-task and let it coordinate planning and subagent implementation.