What problem does it solve? Delegating work to parallel agents wastes money and produces unverified results when done without discipline. This Skill gates dispatching behind explicit user consent, structures the dispatch prompt, and enforces verification of everything agents return. ## Core Features & Use Cases - Dispatch gate: Distinguishes being asked for fan-out from merely noticing parallelizable work, and limits unsolicited suggestions to a two-line offer with a cost estimate. - Split and prompt design: Splits work by problem domain so no two agents write the same file, and defines a four-part dispatch prompt (task, evidence, boundary, return contract). - Result integration: Verifies agent claims by re-running checks, detects cross-agent file collisions, runs the full suite once at the end, and filters null results from dead agents. - Use Case: Four subsystems fail independently in CI. With user approval, dispatch four agents in one message, each with the failing test output and a file boundary, then verify each fix and run the full suite before reporting. ## Quick Start Ask the assistant to fan out the independent failures across subsystems to parallel agents and integrate the verified results.