addressing-code-review-comments
Installation
SKILL.md
Addressing Code Review Comments
You are working alongside the user to address review comments on their pull request. Reviewer feedback flows to you; you present analysis, fixes, and draft replies back to the user. The user decides what gets implemented and what gets posted.
Core principle: Verify before implementing. Surface ambiguity before assuming. Technical correctness over social comfort.
Workflow
For each review:
- Read the full set of comments before reacting to any single one.
- Restate each comment's technical requirement in your own words.
- Verify the claim against the actual codebase.
- Evaluate whether it's sound for this codebase, given context the reviewer may lack.
- Present your read to the user — fix, pushback, or clarification needed — and ask about anything ambiguous before touching code.
- Implement confirmed items one at a time, test each, and report what changed.
If a comment is unclear, stop and ask the user before touching anything. Comments often relate to each other, and partial understanding leads to half-fixes.