What problem does it solve? Investigating multiple unrelated failures sequentially wastes time, and naive parallel fan-outs cause write collisions, stale-snapshot rework, and lost findings. This Skill provides a disciplined pattern for delegating independent tasks to concurrent agents with isolated context. ## Core Features & Use Cases - Parallel Fan-Out Pattern: Dispatch one agent per independent problem domain with focused, self-contained prompts covering scope, goal, constraints, and expected output. - Collision & Concurrency Safeguards: Ground-truth reconnaissance of branches, PRs, and worktrees; write-set partitioning; shared-index commit guards; and feasibility gates before dispatch. - Read-Only Evaluation Fan-Outs: A dual output contract (per-agent detail files plus fixed-schema summaries) for audits and rubric-based assessments where findings fidelity matters more than edits. - Use Case: Three test files fail for different reasons (tool approval, batch completion, abort handling). Dispatch three agents concurrently, each fixing one file, then review and integrate their summaries. ## Quick Start Dispatch one parallel agent per failing test file to investigate and fix each independent failure concurrently, then review and integrate their results.