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 Assessment: A decision flowchart and criteria to determine whether failures are truly independent or share root causes before dispatching agents. - Focused Agent Prompts: A template for writing self-contained agent instructions with specific scope, constraints, and expected output format. - Parallel Dispatch & Integration: Guidance for launching one agent per problem domain concurrently, then reviewing summaries, checking for conflicts, and running the full test suite. - 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 file—then integrate all fixes with zero conflicts. ## Quick Start Ask the AI to analyze your failing tests, group them into independent problem domains, and dispatch one focused agent per domain to fix them in parallel.