What problem does it solve? Manually reviewing merge requests against task requirements is time-consuming and error-prone, often missing requirement mismatches buried in large diffs. This Skill automates structured code review of uncommitted changes, verifying each change against a checklist derived from the task description and MR summary. ## Core Features & Use Cases - Checklist-Driven Review: Extracts checklist items from the task description and MR summary, then systematically verifies each item against the actual changes. - Diff-Based Analysis: Examines uncommitted changes via a user-provided diff command (e.g., git diff HEAD --relative) and explores surrounding code with Read, Glob, and Grep for context. - Incremental MR Comments: Submits focused, evidence-based review comments through the code_review_comment tool as issues are found, avoiding trivial style nitpicks. - Use Case: A developer finishes a refactor and asks for a review before committing. Provide the task description, MR summary, and a diff command; the reviewer walks the checklist, cites specific lines, and posts comments only on task-relevant issues. ## Quick Start Review my uncommitted changes against this task description and MR summary using the diff command 'git add . && git diff HEAD --relative -- ".go" ".yaml"'.