What problem does it solve? When a reviewer hands you a repair prompt listing specific blockers, re-reading the entire repository wastes time and risks scope creep. This Skill enforces a disciplined repair workflow: parse the blockers, map them to real code via symbol search, fix only what is broken, and verify with targeted tests. ## Core Features & Use Cases - Delta Discovery: Uses git diff from the last reviewed SHA and symbol-first search (ripgrep) to locate blocker-related files in 1-3 minutes instead of scanning the whole repository. - Blocker-Scoped Fixing: Repairs only active blockers and their direct dependencies, marks already-resolved items, and protects locked passed areas from regression. - Changed-File Verification: Runs only the minimal test set covering modified files, delegating full repository validation to PR CI. - Use Case: You receive a PR review with 5 blockers (e.g., a dead component prop and a broken leagueMode contract). The Skill maps each blocker to its files, fixes them, runs the related unit tests, and produces a structured repair report. ## Quick Start Apply this repair prompt to the current branch, fix each listed blocker with minimal discovery, and run only the tests covering the files you changed.