What problem does it solve? When multiple unrelated failures appear at once (different test files, different subsystems, different bugs), investigating them one by one wastes time. This Skill provides a structured method for splitting independent problem domains into focused agent tasks that run concurrently, each with its own isolated context. ## Core Features & Use Cases - Independence Decision Framework: A decision flow helps you determine whether failures are truly independent and safe to parallelize, or related and better handled by a single agent. - Agent Prompt Structure: A proven template for writing focused, self-contained agent prompts with clear scope, constraints, and expected output summaries. - Review and Integration Workflow: Guidance for verifying agent results, detecting conflicts between fixes, and running the full test suite after integration. - Use Case: After a large refactor leaves 6 failing tests across 3 files (abort logic, batch completion, race conditions), dispatch three agents in parallel—one per file—and integrate their independent fixes with zero conflicts. ## Quick Start Ask the AI to analyze the current test failures, group them into independent problem domains, and dispatch one focused agent per domain to fix them in parallel.