What problem does it solve? Catching bugs after merge is expensive, and generic code audits bury you in findings unrelated to your change. This Skill performs a focused pre-merge review of only your diff, surfacing the specific edge cases, logic errors, and integration risks your change introduces. ## Core Features & Use Cases - Diff-scoped review: Analyzes staged changes, unstaged changes, specific commits, branches, or pasted PR diffs using git commands like git diff --staged. - Adversarial stress-testing: Walks the change through null inputs, wrong types, concurrency, ordering, scale, and error-path scenarios. - Blast-radius assessment: Selectively invokes an explore sub-agent when the diff touches shared utilities, type shapes, exported signatures, or shared state. - Prioritized findings: Reports results as Must Fix, Edge Cases, Integration Risks, and Nits, each with file:line references and concrete fixes. - Use Case: Before merging a feature branch, ask for a review of git diff main...HEAD and receive a TL;DR summary plus actionable findings, then hand off to test-writing or fixing workflows. ## Quick Start Ask the agent to review my staged changes before I merge this PR.