What problem does it solve? Investigating multiple unrelated failures sequentially wastes time when each problem domain is independent. This Skill provides a structured pattern for delegating independent tasks to parallel subagents with isolated context, so concurrent investigations finish faster without agents interfering with each other. ## Core Features & Use Cases - Independence Assessment: A decision flowchart and explicit criteria help determine whether failures are independent enough for parallel dispatch or require sequential investigation. - Focused Agent Prompts: A proven prompt structure ensures each agent gets a specific scope, clear goal, constraints, and expected output format. - Parallel Dispatch Pattern: Issuing multiple subagent dispatches in a single response runs them concurrently, followed by a review-and-integrate phase. - Use Case: After a major refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per test file, then verify the fixes don't conflict and run the full suite. ## Quick Start Ask the agent to dispatch one subagent per failing test file so the independent failures are investigated and fixed in parallel.