receiving-code-review
Installation
SKILL.md
Receiving Code Review
Core Principle
Verify before implementing. Technical correctness matters more than social comfort. A reviewer can be wrong -- blindly implementing bad suggestions creates bugs.
Response Pattern
For each piece of feedback, follow this sequence:
0. Prior feedback check (re-reviews only) -- if this is not the first review round, check whether previously flagged issues were addressed before processing new comments. Compare the current diff against prior review threads (gh api repos/{owner}/{repo}/pulls/{pr}/comments). Surface any that were ignored or only partially fixed -- these take priority over new feedback.
- Read -- Understand what's being suggested and why
- Verify -- Is the suggestion technically correct for THIS codebase?
- Evaluate -- Does it improve the code, or is it preference/style?
- Respond -- Agree with evidence, disagree with evidence, or ask for clarification
- Implement -- Only after verification confirms the suggestion is correct
Triage all feedback first (see Implementation Order below), then implement one item at a time. Don't batch-implement everything at once.
Related skills