What problem does it solve? When multiple unrelated failures appear at once (different test files, subsystems, or bugs), investigating them sequentially wastes time and bloats your working context. This Skill provides a decision framework and prompt patterns for delegating each independent problem domain to a focused subagent that works in parallel with isolated context. ## Core Features & Use Cases - Independence Decision Framework: A flowchart and criteria to determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Focused Agent Prompt Structure: Templates for writing self-contained agent tasks with specific scope, constraints, and expected output format. - Parallel Dispatch Pattern: Guidance on issuing multiple subagent dispatches in a single response so they run concurrently rather than sequentially. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch three agents in parallel—each fixes its own file—and integrate the non-conflicting fixes in the time of one investigation. ## Quick Start Ask the agent to dispatch one subagent per failing test file so the independent failures are investigated and fixed in parallel.