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 delegating each independent problem domain to a separate agent so investigations run concurrently. ## Core Features & Use Cases - Independent Domain Identification: Group failures by root cause and decide whether they can be worked on in parallel using a decision flow. - Focused Agent Prompts: Craft self-contained agent tasks with specific scope, constraints, and expected output so agents stay on target. - Review and Integration Workflow: Verify agent summaries, check for conflicting edits, and run the full test suite after parallel fixes. - Use Case: After a major refactoring leaves 6 failures across 3 test files (abort logic, batch completion, race conditions), dispatch three agents in parallel, then integrate their independent fixes with zero conflicts. ## Quick Start Ask the agent to split the current failing tests into independent problem domains and dispatch one focused agent per domain in parallel.