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.

  1. Read -- Understand what's being suggested and why
  2. Verify -- Is the suggestion technically correct for THIS codebase?
  3. Evaluate -- Does it improve the code, or is it preference/style?
  4. Respond -- Agree with evidence, disagree with evidence, or ask for clarification
  5. 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
Installs
21
GitHub Stars
11
First Seen
Apr 13, 2026