What problem does it solve? Investigating multiple unrelated failures sequentially wastes time and bloats your working context. This Skill provides a structured pattern for splitting independent problems—such as failing test files with distinct root causes—into focused subagent tasks that run concurrently with isolated, hand-crafted context. ## Core Features & Use Cases - Domain Identification: Group failures by subsystem to confirm they are truly independent before parallelizing. - Focused Agent Prompts: Templates for writing self-contained agent tasks with specific scope, constraints, and expected output. - Integration & Verification: A review workflow to check for conflicts between agent changes and validate with a full test suite run. - Use Case: After a refactoring leaves 6 test failures across 3 files (abort logic, batch completion, race conditions), dispatch one agent per file, then integrate the three independent fixes with zero conflicts. ## Quick Start Ask the AI to dispatch one parallel subagent per failing test file, each with a focused prompt containing the error messages, scope constraints, and a required summary of root cause and fixes.