What problem does it solve? When multiple unrelated test failures or bugs appear across different files and subsystems, investigating them sequentially wastes time and bloats your working context. This Skill provides a structured pattern for delegating each independent problem to a focused subagent that works concurrently with isolated context. ## Core Features & Use Cases - Independence Decision Framework: A decision flowchart and explicit criteria help you determine whether failures are independent enough for parallel dispatch or related enough to investigate together. - Agent Prompt Structure: Guidance for writing focused, self-contained agent prompts with specific scope, constraints, and expected output so agents stay on task. - Integration and Verification Workflow: Steps for reviewing agent summaries, checking for conflicting edits, and running the full test suite after parallel fixes. - Use Case: After a refactoring leaves 6 failing tests across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file, let them fix concurrently, then integrate the conflict-free results. ## Quick Start Ask the assistant to dispatch one parallel agent per failing test file, giving each agent the error messages, scope constraints, and a request for a summary of root cause and fixes.