What problem does it solve? Code reviews often miss real defects because reviewers skim hunks in isolation, trust plausible-looking code, or get lost in style nits while broken data flow ships. This Skill enforces a disciplined, adversarial review process that grounds every finding in the actual code and produces a clear merge verdict. ## Core Features & Use Cases - Priority-ordered walkthrough: Reviews design, correctness, complexity, tests, naming, and style in that order so effort goes to what gates the merge. - Adversarial verification: Requires quoting exact lines, confirming referenced symbols exist, tracing data flow, and running tests or minimal repros before asserting any finding. - Security pass: Ships an OWASP-aligned checklist (references/security.md) covering access control, injection, secrets, dependency slopsquatting, and resource safety for changes touching sensitive surfaces. - Structured verdicts and evidence: Emits APPROVE / APPROVE-WITH-NITS / REQUEST-CHANGES mapped to a review-result evidence profile with severity-tagged Conventional Comments. - Use Case: Before merging a pull request that touches authentication logic, run this Skill to verify every changed line in context, execute the OWASP security sweep, and produce a blocker-tagged report with a release-blocker verdict. ## Quick Start Review the current uncommitted diff for code health and give me a severity-tagged findings report with a final approve or request-changes verdict.