What problem does it solve? When multiple unrelated test failures or bugs appear across different files and subsystems, investigating them sequentially wastes time and bloats your working context. This Skill provides a structured pattern for delegating each independent problem domain to a focused subagent that works in parallel with isolated context. ## Core Features & Use Cases - Independence Assessment: A decision flowchart and explicit criteria help you determine whether failures are truly independent or share root causes before dispatching agents. - Parallel Dispatch Pattern: Issue multiple subagent dispatches in a single response so they execute concurrently, one agent per problem domain. - Agent Prompt Structure: Guidance for writing focused, self-contained agent prompts with specific scope, constraints, and expected output summaries. - Use Case: After a major refactoring leaves 6 failures across 3 test files (abort logic, batch completion, race conditions), dispatch three agents simultaneously, then review their summaries, check for conflicts, and run the full suite to integrate the fixes. ## Quick Start Ask the AI to dispatch one parallel subagent per failing test file, each with a focused prompt containing the failure details and a constraint to not touch unrelated code.