What problem does it solve? When multiple unrelated failures appear at once (different test files, subsystems, or bugs), investigating them sequentially wastes time and bloats your own context. This Skill provides a structured pattern for delegating each independent problem to a focused subagent so investigations run in parallel. ## 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. - Focused Agent Prompt Structure: Guidance for writing self-contained agent prompts with specific scope, constraints, and expected output so agents stay on task. - Parallel Dispatch Pattern: Instructions to issue multiple subagent dispatches in a single response so they execute concurrently rather than sequentially. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file, then review summaries, check for conflicts, and run the full suite to integrate all fixes. ## Quick Start Ask the agent to dispatch one subagent per failing test file so all independent failures are investigated in parallel.