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 domain to a focused subagent that works concurrently with isolated context. ## 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: A template for writing focused, self-contained agent prompts with specific scope, constraints, and expected output format. - Review and Integration Workflow: Steps to verify agent summaries, detect 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—one per file—then integrate their independent fixes with zero conflicts. ## Quick Start Ask the AI to dispatch one parallel agent per failing test file, giving each agent the failing test names, error messages, and a constraint to fix only that file.