What problem does it solve? Code review before landing a PR often misses structural issues that tests don't catch, such as SQL injection risks, race conditions, LLM trust boundary violations, and scope drift from the original plan. This Skill automates a two-pass pre-landing review of your branch diff so critical problems surface before merge. ## Core Features & Use Cases - Two-Pass Diff Review: Runs a critical pass (SQL safety, race conditions, LLM output trust, enum completeness) and an informational pass (dead code, test gaps, performance, CI/CD) against the diff with the base branch. - Scope Drift & Plan Completion Audit: Compares the diff against TODOS.md, PR descriptions, and plan files to detect scope creep and missing requirements. - Greptile Comment Triage: Fetches, classifies, and replies to Greptile bot review comments with evidence-based responses and suppression history. - Fix-First Workflow: Auto-applies mechanical fixes (dead code, magic numbers, N+1 queries) and batches ambiguous findings into a single user question. - Use Case: Before merging a feature branch, run the review to catch a missing enum consumer in the backend, an unparameterized SQL query, and a plan item that was never implemented. ## Quick Start Ask the assistant to review this PR or check my diff against the base branch before merging.