What problem does it solve? Catching logic errors, security vulnerabilities, and standards violations before code is committed is tedious and easy to skip under time pressure. This Skill automates a structured technical review of your uncommitted changes so issues are found before they reach the repository. ## Core Features & Use Cases - Git-aware change detection: Runs git status, git diff, and lists untracked files to identify exactly what changed, then reads each file in full for context. - Multi-category analysis: Checks for logic errors, security issues (SQL injection, XSS, exposed secrets), performance problems, code quality violations, and adherence to documented codebase standards. - Structured report output: Writes a severity-tagged report (critical/high/medium/low) with file paths, line numbers, and fix suggestions to .claude/code-reviews/. - Use Case: Before committing a feature branch, invoke the review to get a written report flagging a missing error handler on line 42 and an exposed API key, with concrete fix suggestions for each. ## Quick Start Review my current uncommitted changes for bugs and security issues and write a report before I commit.