What problem does it solve? Code reviews often degrade into superficial LGTM approvals based on diff summaries, missing bugs, test coverage gaps, and architecture drift hidden inside changed hunks. ## Core Features & Use Cases - Changed Hunk Inspection: Reads every changed hunk with surrounding context and classifies each as OK, finding, question, or unnecessary, recording actionable items in a repo-local review ledger. - Four-Layer Heuristic: Applies surface correctness checks, test coverage gap analysis, bounded refactor signals, and architecture attention questions, with file-type lenses for templates, scripts, composables, tests, styles, and config. - Adaptive Depth and Modes: Scales review depth by diff size and switches between review-only mode for PRs and self-review mode for local changes. - Use Case: Before opening a PR on a 250-line feature branch, run a self-review to catch a missing error-state test, an unnecessary wrapper in a Vue template, and a cross-domain import, all reported with exact file and line references. ## Quick Start Ask the assistant to review this PR or review my staged changes line-by-line and report findings with file and line references.