What problem does it solve? Investigating multiple unrelated test failures sequentially wastes time when each failure has an independent root cause. This Skill coordinates parallel subagent dispatch so independent problems are investigated and fixed concurrently without shared state or context pollution. ## Core Features & Use Cases - Independent Domain Identification: Groups failures by subsystem or test file to determine which can be worked on in parallel. - Focused Agent Prompts: Provides a structure for self-contained agent tasks with specific scope, constraints, and expected output. - Parallel Dispatch Pattern: Issues multiple subagent dispatches in a single response so they execute concurrently. - Use Case: After a major refactoring leaves 6 failures across 3 test 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. ## Quick Start Dispatch one subagent per failing test file to fix each independent failure in parallel, then review their summaries and run the full test suite.