What problem does it solve? Investigating multiple unrelated failures sequentially wastes time when each problem domain is independent. This Skill provides a structured pattern for dispatching one agent per independent failure domain so investigations run concurrently without interference. ## Core Features & Use Cases - Independence Assessment: A decision flowchart and criteria to determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Agent Prompt Structure: A template for writing focused, self-contained agent tasks with specific scope, constraints, and expected output summaries. - Integration Workflow: Steps for reviewing agent summaries, checking for conflicts, and running the full test suite after parallel fixes. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch three agents in parallel, each fixing one test file, then integrate all fixes with zero conflicts. ## Quick Start Ask the AI to dispatch one parallel agent per failing test file, giving each agent the specific test names, error messages, and a constraint to not modify unrelated code.