What problem does it solve? Complex requests handled by a single agent often drift in scope, skip verification, or produce unreviewed output. This Skill decomposes a natural-language goal into a DAG of sub-agent tasks with two review gates, so planning and execution are checked before results reach the user. ## Core Features & Use Cases - DAG-based decomposition: Splits a goal into 3-5 typed nodes (Explore, Plan, general-purpose) dispatched in parallel layers, always ending with a critic node that must disagree. - Two review gates: Gate 1 classifies each plan finding as Auto or Ask before execution; Gate 2 validates each agent's output and re-dispatches only failed nodes, with a maximum of 2 rollbacks. - Hard resource caps: Enforces limits of 5 agents per layer, 10 agents per invocation, and 4 DAG layers to prevent over-fanning. - Use Case: Ask the agent to investigate and fix a cross-cutting bug; it reads the project reference docs, plans the investigation, dispatches parallel exploration agents, reviews their findings, and synthesizes a cited recommendation. ## Quick Start Run /team followed by a natural-language goal such as asking it to investigate why the login flow intermittently fails and propose a fix.