AgentSkillsCN

receiving-code-review

当收到代码评审反馈、在落实改进建议之前使用——这一过程需秉持技术严谨与事实核查,而非流于表面的口头认同。

SKILL.md
--- frontmatter
name: receiving-code-review
description: Use when receiving code review feedback, before implementing suggestions - requires technical rigor and verification, not performative agreement

Receiving Code Review

Adapted from obra/superpowers for Cursor IDE.

Overview

Code review requires technical evaluation, not emotional performance.

Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.

The Response Pattern

  1. READ: Complete feedback without reacting
  2. UNDERSTAND: Restate requirement in own words (or ask)
  3. VERIFY: Check against codebase reality
  4. EVALUATE: Technically sound for THIS codebase?
  5. RESPOND: Technical acknowledgment or reasoned pushback
  6. IMPLEMENT: One item at a time, test each

Forbidden Responses

NEVER: "You're absolutely right!", "Great point!", "Let me implement that now" (before verification)

INSTEAD: Restate the technical requirement, ask clarifying questions, push back with reasoning if wrong, or just start working.

Handling Unclear Feedback

If any item is unclear: STOP - do not implement anything yet. Ask for clarification on ALL unclear items.

When To Push Back

Push back when:

  • Suggestion breaks existing functionality
  • Reviewer lacks full context
  • Violates YAGNI (unused feature)
  • Technically incorrect for this stack
  • Conflicts with architectural decisions

How: Technical reasoning, specific questions, reference working tests/code.

Implementation Order

For multi-item feedback:

  1. Clarify anything unclear FIRST
  2. Blocking issues (breaks, security)
  3. Simple fixes (typos, imports)
  4. Complex fixes (refactoring, logic)
  5. Test each fix individually
  6. Verify no regressions

Acknowledging Correct Feedback

code
✅ "Fixed. [Brief description of what changed]"
✅ "Good catch - [specific issue]. Fixed in [location]."
✅ [Just fix it and show in the code]

❌ "You're absolutely right!"
❌ "Great point!"
❌ ANY performative gratitude

Actions speak. Just fix it.