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 criteria help you 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 subagent gets a specific scope, clear goal, explicit constraints, and a defined output format. - Parallel Dispatch Pattern: Issuing multiple subagent dispatches in a single response runs them concurrently, with guidance on reviewing summaries, detecting conflicts, and running the full test suite afterward. - Use Case: After a major refactoring leaves 6 failures across 3 test files (abort logic, batch completion, race conditions), dispatch three agents simultaneously—each fixing one file—then integrate the independent fixes into a green suite. ## Quick Start Ask the agent to dispatch one parallel subagent per failing test file, giving each a focused prompt with the failing test names, constraints, and a required summary of root cause and fixes.