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 problem domains across parallel subagents so each issue is investigated and fixed concurrently. ## Core Features & Use Cases - Independence Decision Framework: A decision flowchart and explicit criteria help determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Focused Agent Prompt Structure: Guidance for writing self-contained agent prompts with specific scope, constraints, context, and expected output format. - Parallel Dispatch Pattern: Instructions for 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 all fixes. ## Quick Start Ask the agent to dispatch parallel subagents to investigate and fix the failing tests in each of the independent test files.