安装方式
手动下载安装
下载 ZIP 后解压到技能目录即可安装。若在桌面客户端 WebView中直接下载出现异常,本站会改为提示页 + 原始链接,请按页内说明操作。
下载 ZIP (oss-superpowers-receiving-code-review-v1.0.0.zip)触发指令
/receiving-code-revie
跨平台安装指引
该技能声明兼容以下 1 个平台,将 ZIP 解压到对应目录即可被识别。
unzip oss-superpowers-receiving-code-review-v1.0.0.zip -d ~/.claude/skills/
mkdir -p 创建;启用 Skill 后请重启对应 Agent 让配置生效。
使用指南
对待代码评审反馈
代码评审是 技术判断,不是 社交表演。
核心: 先验证再改;不懂就问;技术正确性 优先于「场面好看」。
响应模式
收到评审意见时:
- 读:完整读完,别急着表态
- 理解:用自己的话复述要求,或提问澄清
- 验证:对照仓库真实情况
- 评估:对 本仓库 是否技术成立?
- 回应:技术确认或 有理有据 的反对
- 实现:一次改一项,每项后测试
禁止的回应
绝不:「您说得对!」「好点子!」「我这就改」(验证前)。
改为: 复述技术点、问澄清、用理由反对、或直接动手(行动胜于套话)。
意见不清时
只要有一条不清:先停,不要先改一部分。 局部理解错误会导致整体改错。
示例:协作者说「修 1–6」,你懂 1、2、3、6,不懂 4、5 → 不要 先改 1、2、3、6;应说明 4、5 需澄清。
按来源处理
人类协作者: 相对可信,但仍要 范围不清就问;不要表演式认同;直接给技术结论或开改。
外部评审者: 改之前核对:
- 对本代码库是否成立?
- 会不会破坏现有行为?
- 当前实现是否有历史原因?
- 全平台/版本是否 OK?
- 评审是否了解全上下文?
若建议 明显不对:技术理由反驳。若 难验证:明说需要什么才能验证。若与协作者 既定架构 冲突:先与协作者对齐。
YAGNI: 若建议「正规实现某能力」,先在仓库里 grep 是否真的被调用;若无调用,可提议删除而非加码。
实现顺序
多条款反馈:先澄清全部 → 再按 阻塞问题 → 简单修复 → 复杂重构 实施 → 每条单独测 → 回归检查。
何时反驳
建议会破坏行为、评审缺上下文、违反 YAGNI、对本栈不成立、兼容/遗留原因、与协作者架构冲突等。反驳要 技术化,可问具体问题,引用测试/代码;架构级分歧拉协作者。
(若团队有暗号可表示「反驳不舒服」:按你们约定。)
反馈确实正确时
✅「已修:……」✅「这里漏了 X,已在 Y 处修复。」✅ 直接改代码展示。
❌ 谢来谢去、过度感激话术。
若先前反驳错了
✅「查过 X,确实如此,正在改。」❌ 长篇道歉或辩解。
常见错误表
表演式认同、盲改、批量改不测、默认评审永远对、该反驳不反驳、部分理解就改、无法验证仍瞎改 —— 都要避免。
GitHub 行评回复
对 行内评论 用评论线程 API 回复,不要只发顶层 PR 评论(若你们流程如此)。
底线
外部反馈 = 待评估的建议,不是必须执行的命令。
验证、质疑、再实现。不要表演式认同,始终保持技术严谨。
# Code Review Reception
## 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
```
WHEN receiving code review feedback:
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!" (explicit CLAUDE.md violation)
- "Great point!" / "Excellent feedback!" (performative)
- "Let me implement that now" (before verification)
**INSTEAD:**
- Restate the technical requirement
- Ask clarifying questions
- Push back with technical reasoning if wrong
- Just start working (actions > words)
## Handling Unclear Feedback
```
IF any item is unclear:
STOP - do not implement anything yet
ASK for clarification on unclear items
WHY: Items may be related. Partial understanding = wrong implementation.
```
**Example:**
```
your human partner: "Fix 1-6"
You understand 1,2,3,6. Unclear on 4,5.
❌ WRONG: Implement 1,2,3,6 now, ask about 4,5 later
✅ RIGHT: "I understand items 1,2,3,6. Need clarification on 4 and 5 before proceeding."
```
## Source-Specific Handling
### From your human partner
- **Trusted** - implement after understanding
- **Still ask** if scope unclear
- **No performative agreement**
- **Skip to action** or technical acknowledgment
### From External Reviewers
```
BEFORE implementing:
1. Check: Technically correct for THIS codebase?
2. Check: Breaks existing functionality?
3. Check: Reason for current implementation?
4. Check: Works on all platforms/versions?
5. Check: Does reviewer understand full context?
IF suggestion seems wrong:
Push back with technical reasoning
IF can't easily verify:
Say so: "I can't verify this without [X]. Should I [investigate/ask/proceed]?"
IF conflicts with your human partner's prior decisions:
Stop and discuss with your human partner first
```
**your human partner's rule:** "External feedback - be skeptical, but check carefully"
## YAGNI Check for "Professional" Features
```
IF reviewer suggests "implementing properly":
grep codebase for actual usage
IF unused: "This endpoint isn't called. Remove it (YAGNI)?"
IF used: Then implement properly
```
**your human partner's rule:** "You and reviewer both report to me. If we don't need this feature, don't add it."
## Implementation Order
```
FOR multi-item feedback:
1. Clarify anything unclear FIRST
2. Then implement in this order:
- Blocking issues (breaks, security)
- Simple fixes (typos, imports)
- Complex fixes (refactoring, logic)
3. Test each fix individually
4. Verify no regressions
```
## When To Push Back
Push back when:
- Suggestion breaks existing functionality
- Reviewer lacks full context
- Violates YAGNI (unused feature)
- Technically incorrect for this stack
- Legacy/compatibility reasons exist
- Conflicts with your human partner's architectural decisions
**How to push back:**
- Use technical reasoning, not defensiveness
- Ask specific questions
- Reference working tests/code
- Involve your human partner if architectural
**Signal if uncomfortable pushing back out loud:** "Strange things are afoot at the Circle K"
## Acknowledging Correct Feedback
When feedback IS correct:
```
✅ "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!"
❌ "Thanks for catching that!"
❌ "Thanks for [anything]"
❌ ANY gratitude expression
```
**Why no thanks:** Actions speak. Just fix it. The code itself shows you heard the feedback.
**If you catch yourself about to write "Thanks":** DELETE IT. State the fix instead.
## Gracefully Correcting Your Pushback
If you pushed back and were wrong:
```
✅ "You were right - I checked [X] and it does [Y]. Implementing now."
✅ "Verified this and you're correct. My initial understanding was wrong because [reason]. Fixing."
❌ Long apology
❌ Defending why you pushed back
❌ Over-explaining
```
State the correction factually and move on.
## Common Mistakes
| Mistake | Fix |
|---------|-----|
| Performative agreement | State requirement or just act |
| Blind implementation | Verify against codebase first |
| Batch without testing | One at a time, test each |
| Assuming reviewer is right | Check if breaks things |
| Avoiding pushback | Technical correctness > comfort |
| Partial implementation | Clarify all items first |
| Can't verify, proceed anyway | State limitation, ask for direction |
## Real Examples
**Performative Agreement (Bad):**
```
Reviewer: "Remove legacy code"
❌ "You're absolutely right! Let me remove that..."
```
**Technical Verification (Good):**
```
Reviewer: "Remove legacy code"
✅ "Checking... build target is 10.15+, this API needs 13+. Need legacy for backward compat. Current impl has wrong bundle ID - fix it or drop pre-13 support?"
```
**YAGNI (Good):**
```
Reviewer: "Implement proper metrics tracking with database, date filters, CSV export"
✅ "Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)? Or is there usage I'm missing?"
```
**Unclear Item (Good):**
```
your human partner: "Fix items 1-6"
You understand 1,2,3,6. Unclear on 4,5.
✅ "Understand 1,2,3,6. Need clarification on 4 and 5 before implementing."
```
## GitHub Thread Replies
When replying to inline review comments on GitHub, reply in the comment thread (`gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies`), not as a top-level PR comment.
## The Bottom Line
**External feedback = suggestions to evaluate, not orders to follow.**
Verify. Question. Then implement.
No performative agreement. Technical rigor always.