What problem does it solve? When multiple unrelated test failures or bugs appear across different files and subsystems, investigating them sequentially wastes time, and a single agent loses focus juggling unrelated contexts. This Skill provides a structured pattern for splitting independent problems into focused subagent tasks that run concurrently. ## 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, context, and expected output format. - Parallel Dispatch Pattern: Instructions for issuing 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 split the current failing tests into independent problem domains and dispatch one focused subagent per domain in parallel.