What problem does it solve? When multiple unrelated failures or tasks exist (different test files, subsystems, or bugs), investigating them sequentially wastes time and bloats your main context. This Skill provides a structured pattern for delegating independent problem domains to parallel subagents, each with focused, self-contained instructions. ## 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. - Integration & Verification Workflow: Steps for reviewing agent summaries, checking for conflicts, and running the full test suite after parallel work completes. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file to fix them concurrently, then integrate all fixes with zero conflicts. ## Quick Start Ask the agent to analyze the current test failures, group them into independent problem domains, and dispatch one subagent per domain to fix them in parallel.