What problem does it solve? When multiple unrelated test failures or bugs appear across different files and subsystems, investigating them one at a time wastes time, and handing them all to a single agent dilutes focus. This Skill provides a structured pattern for splitting independent problems into focused agent tasks that run concurrently. ## Core Features & Use Cases - Independence Decision Framework: A decision flowchart and explicit criteria for determining when failures are independent enough to parallelize versus when they share root causes. - Agent Prompt Structure: A template for writing focused, self-contained agent prompts with specific scope, constraints, and expected output format. - Parallel Dispatch Pattern: Guidance on issuing multiple subagent dispatches in a single response so they execute concurrently rather than sequentially. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file, then review 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 failing test names, error messages, and constraints on what may be changed.