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 problems into focused agent tasks that run concurrently, then integrating their results without conflicts. ## Core Features & Use Cases - Independence Decision Framework: A decision flowchart and criteria to determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Agent Prompt Structure: Guidance for writing focused, self-contained agent prompts with specific scope, constraints, and expected output format. - Integration and Verification Workflow: Steps to review agent summaries, detect conflicting edits, and run the full test suite after parallel fixes. - Use Case: After a refactoring causes 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file to fix each domain concurrently, then integrate all fixes with zero conflicts. ## Quick Start Dispatch one agent per failing test file to investigate and fix each independent failure in parallel, then review their summaries and run the full test suite.