What problem does it solve? When multiple unrelated test failures or bugs appear across different files and subsystems, investigating them sequentially wastes time. This Skill provides a structured pattern for splitting independent problems into focused agent tasks that run concurrently. ## Core Features & Use Cases - Independence Assessment: A decision flowchart helps determine whether failures are truly independent and safe to parallelize, or related and better handled by a single agent. - Focused Agent Prompts: A proven prompt structure ensures each agent gets a specific scope, clear goal, constraints, and expected output format. - Parallel Dispatch Pattern: Guidance on issuing multiple subagent dispatches in one 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 three agents in parallel—one per file—then review summaries, check for conflicts, and run the full suite to integrate all fixes. ## Quick Start Dispatch one subagent per failing test file to investigate and fix each independent failure in parallel, then review their summaries and run the full test suite.