What problem does it solve? Code reviews often fail in two ways: poorly scoped review requests that lack context, and reflexive agreement with feedback that may be wrong for the codebase. This Skill provides discipline for both sides of the review process so feedback is verified against the actual code before being implemented. ## Core Features & Use Cases - Scoped Review Requests: Compute the exact diff boundary with git merge-base, state the intent behind the change, and review incrementally after each meaningful task instead of one giant diff. - Feedback Verification Workflow: Read, restate, verify against the codebase, evaluate for stack-specific constraints (multi-tenant Postgres/Sequelize, Kafka, Angular), then respond with acknowledgment or reasoned pushback. - Ordered Implementation: Clarify all unclear items first, fix blocking issues (security, data integrity, tenant isolation) before simple fixes, and verify after each change. - Use Case: After finishing a bug fix touching tenant-isolated job data, request a scoped review of just that diff, then evaluate each piece of reviewer feedback against the working code before implementing anything. ## Quick Start Ask the agent to review the changes on the current branch against main and help respond to the resulting feedback one item at a time.