What problem does it solve? Unreviewed code reaches commits and pull requests with security flaws, logic errors, and style violations that are costly to fix later. This Skill enforces a structured review gate on local changes or GitHub PRs before code is committed or merged. ## Core Features & Use Cases - Local Review Mode: Inspects staged or working-tree diffs via git commands and checks for security issues (hardcoded credentials, injection, XSS), correctness problems (null handling, race conditions, missing error handling), and best-practice violations. - PR Review Mode: Fetches pull request metadata and diffs with the GitHub CLI, applies the same checklist plus pattern compliance and performance checks, then publishes an APPROVE, REQUEST_CHANGES, or BLOCK decision via gh pr review. - Severity-Gated Decisions: Blocks the commit path when CRITICAL or HIGH findings remain, and passes with notes when only MEDIUM/LOW issues exist. - Use Case: Before running /commit-changes, a developer triggers a local review of staged changes; the Skill flags a hardcoded API key as CRITICAL and blocks the commit until it is removed. ## Quick Start Ask the AI to run a code review on your current staged changes, or pass a PR number or URL to review a GitHub pull request.