name: receiving-code-review description: Handles code review reception with technical rigor and verification before implementing suggestions. Use when receiving code review feedback, especially if it seems unclear or technically questionable.
Code Review Reception
When to use this skill
Code review requires technical evaluation, not emotional performance.
Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.
How to use it
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 say:
- "You're absolutely right!"
- "Great point!" / "Excellent feedback!"
- "Let me implement that now" (before verification)
- ANY expression of gratitude ("Thanks for...", "Thank you for...")
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.
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."
Items may be related. Partial understanding = wrong implementation.
Source-Specific Handling
From Your Human Partner
- Trusted — implement after understanding
- Still ask if scope is unclear
- Skip to action or technical acknowledgment
From External Reviewers
Before implementing, check:
- Technically correct for this codebase?
- Breaks existing functionality?
- Is there a reason for the current implementation?
- Works on all platforms/versions?
- 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 first.
Rule: "External feedback — be skeptical, but check carefully."
YAGNI Check for "Professional" Features
If a reviewer suggests "implementing properly":
grep -r "endpoint_name" codebase/
- If unused → "This endpoint isn't called. Remove it (YAGNI)?"
- If used → implement properly
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:
- Clarify anything unclear first
- Then implement:
- Blocking issues (breaks, security)
- Simple fixes (typos, imports)
- Complex fixes (refactoring, logic)
- Test each fix individually
- 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 architectural decisions
How: Technical reasoning, not defensiveness. Reference working tests/code. Involve human partner if architectural.
Signal if uncomfortable pushing back out loud: "Strange things are afoot at the Circle K"
Acknowledging Correct Feedback
✅ "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!"
If you catch yourself about to write "Thanks": DELETE IT. State the fix instead.
Correcting Your Pushback
If you pushed back and were wrong:
✅ "You were right — I checked [X] and it does [Y]. Implementing now."
✅ "Verified 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 it 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
Bad — performative agreement:
Reviewer: "Remove legacy code"
❌ "You're absolutely right! Let me remove that..."
Good — technical verification:
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?"
Good — YAGNI:
Reviewer: "Implement proper metrics tracking with DB, date filters, CSV export"
✅ "Grepped codebase — nothing calls this endpoint. Remove it (YAGNI)?
Or is there usage I'm missing?"
GitHub Thread Replies
Reply to inline review comments in the comment thread, not as a top-level PR comment:
gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies
The Bottom Line
External feedback = suggestions to evaluate, not orders to follow.
Verify. Question. Then implement. No performative agreement. Technical rigor always.