一键导入
superpowers-receiving-code-review
Got review feedback? Load BEFORE changing anything — verify each point, push back if wrong.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Got review feedback? Load BEFORE changing anything — verify each point, push back if wrong.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Got a spec or requirements for a multi-step task? Load first, before touching code.
Sync this port with upstream obra/superpowers or Reasonix main-v2: detect drift, re-port, bench-gate
Building a feature or starting from an idea? STOP. Load first for an approved design before code.
Executing a written plan step-by-step in this session, with checkpoints? Load this first.
Branch finished, tests green? Load first to merge, PR, or clean up.
Any bug, failing or flaky test, or surprise behavior? Load BEFORE you investigate or guess.
基于 SOC 职业分类
| name | superpowers-receiving-code-review |
| description | Got review feedback? Load BEFORE changing anything — verify each point, push back if wrong. |
Code review = technical evaluation. Not emotional performance.
Core principle: Verify before implementing. Ask before assuming. Technical correctness beats social comfort.
WHEN receiving code review feedback:
1. READ: Full feedback, no 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 ack or reasoned pushback
6. IMPLEMENT: One item at a time, test each
NEVER:
INSTEAD: restate technical requirement; ask clarifying questions; push back with technical reasoning if wrong; or just start working (actions > words).
IF any item unclear:
STOP - implement nothing yet
ASK for clarification on unclear items
WHY: Items may be related. Partial understanding = wrong implementation.
Example:
Partner: "Fix 1-6"
You understand 1,2,3,6. Unclear on 4,5.
❌ WRONG: Implement 1,2,3,6 now, ask 4,5 later
✅ RIGHT: "Understand items 1,2,3,6. Need clarification on 4 and 5 before proceeding."
BEFORE implementing:
1. Technically correct for THIS codebase?
2. Breaks existing functionality?
3. Reason for the current implementation?
4. Works on all platforms/versions?
5. Does the reviewer understand full context?
IF suggestion seems wrong: push back with technical reasoning
IF can't easily verify: "I can't verify this without [X]. Should I [investigate/ask/proceed]?"
IF conflicts with your human partner's prior decisions: stop and discuss first
Rule: External feedback — stay skeptical. Check carefully.
IF reviewer suggests "implementing properly":
grep codebase for actual usage
IF unused: "Endpoint isn't called. Remove it (YAGNI)?"
IF used: implement properly
FOR multi-item feedback:
1. Clarify anything unclear FIRST
2. Then implement in order:
- Blocking issues (breaks, security)
- Simple fixes (typos, imports)
- Complex fixes (refactoring, logic)
3. Test each fix individually
4. Verify no regressions
Push back when suggestion: breaks existing functionality; comes from reviewer lacking full context; violates YAGNI (unused feature); is technically incorrect for this stack; ignores legacy/compatibility reasons; conflicts with your human partner's architectural decisions.
How: technical reasoning, not defensiveness; ask specific questions; reference working tests/code; involve your human partner if architectural.
✅ "Fixed. [what changed]"
✅ "Good catch - [specific issue]. Fixed in [location]."
✅ [Just fix it; show it in code]
❌ "You're absolutely right!" ❌ "Great point!" ❌ "Thanks for catching that!"
❌ ANY gratitude expression
Why no thanks: actions speak. Just fix it — code shows you heard. Catch yourself writing "Thanks"? Delete it. State the fix.
Pushed back, but wrong:
✅ "You were right - checked [X], it does [Y]. Implementing now."
✅ "Verified, you're correct. My understanding was wrong because [reason]. Fixing."
❌ Long apology ❌ Defending why you pushed back ❌ Over-explaining
State correction factually. Move on.
| 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 it breaks things |
| Avoiding pushback | Technical correctness > comfort |
| Partial implementation | Clarify all items first |
| Can't verify, proceed anyway | State limitation, ask for direction |
Replying to inline GitHub review comments? Reply in the thread (gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies), not as a top-level PR comment.
External feedback = suggestions to evaluate, not orders to follow.
Evaluate each item against the actual code before acting. Push back on what's wrong. No performative agreement. Technical rigor always.