home / skills / lerianstudio / ring / receiving-code-review

receiving-code-review skill

/default/skills/receiving-code-review

This skill performs rigorous code review verification to ensure changes are technically sound before implementation, reducing blind edits.

npx playbooks add skill lerianstudio/ring --skill receiving-code-review

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
5.4 KB
---
name: ring:receiving-code-review
description: |
  Review reception protocol - requires technical verification before implementing
  suggestions. Prevents performative agreement and blind implementation.

trigger: |
  - Received code review feedback
  - About to implement reviewer suggestions
  - Feedback seems unclear or technically questionable

skip_when: |
  - Feedback is clear and obviously correct → implement directly
  - No feedback received → continue working
---

# 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 feedback:** READ (complete, no reaction) → UNDERSTAND (restate or ask) → VERIFY (check codebase reality) → EVALUATE (technically sound for THIS codebase?) → RESPOND (technical acknowledgment or pushback) → IMPLEMENT (one 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. Items may be related - partial understanding = wrong implementation.

**Example:** "Fix 1-6" - You understand 1,2,3,6, unclear on 4,5. ❌ Implement 1,2,3,6 now. ✅ "Understand 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) Technically correct for THIS codebase? (2) Breaks existing functionality? (3) Reason for current implementation? (4) Works on all platforms/versions? (5) Does 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

**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. Unused? "This endpoint isn't called. Remove it (YAGNI)?" 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) Implement: Blocking issues → Simple fixes → Complex fixes (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

✅ "Fixed. [Brief description]" | ✅ "Good catch - [issue]. Fixed in [location]." | ✅ [Just fix it and show in code]
❌ "You're absolutely right!" | ❌ "Great point!" | ❌ "Thanks for [anything]" | ❌ ANY gratitude expression

**Why no thanks:** Actions speak. Just fix it. The code shows you heard the feedback. 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." ❌ 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

| Type | Response |
|------|----------|
| **Performative (Bad)** | "Remove legacy code" → ❌ "You're absolutely right! Let me remove that..." |
| **Technical (Good)** | "Remove legacy code" → ✅ "Checking... build target is 10.15+, this API needs 13+. Need legacy for backward compat." |
| **YAGNI (Good)** | "Implement proper metrics" → ✅ "Grepped codebase - nothing calls this endpoint. Remove it (YAGNI)?" |
| **Unclear (Good)** | "Fix items 1-6" → ✅ "Understand 1,2,3,6. Need clarification on 4 and 5 before implementing." |

## The Bottom Line

**External feedback = suggestions to evaluate, not orders to follow.**

Verify. Question. Then implement.

No performative agreement. Technical rigor always.

Overview

This skill enforces a disciplined code review reception protocol that requires technical verification before implementing suggestions. It prevents performative agreement and blind changes by guiding responses, verification steps, and prioritized implementation. The goal is measurable quality gates and reproducible engineering behavior for AI agents handling human and external feedback.

How this skill works

When feedback arrives, the skill prescribes a fixed response pattern: read fully, restate or ask to confirm understanding, verify facts against the codebase, evaluate technical correctness for the current context, then respond and implement one change at a time. It includes rules for handling unclear items, external reviewer suggestions, YAGNI checks, and when to push back. The workflow enforces tests and regression checks for each implemented change.

When to use it

  • Receiving code review comments from teammates or external reviewers
  • Deciding whether to implement requested changes or ask for clarification
  • Triage of multi-item feedback where scope or impact is unclear
  • Evaluating feature suggestions for YAGNI and actual usage
  • Handling conflicting guidance between reviewers and your human partner

Best practices

  • Always restate the technical requirement or ask a clarifying question before acting
  • Verify suggested changes against the codebase and tests before implementation
  • Implement fixes one at a time: blocking → simple → complex, testing each
  • Push back with focused technical reasoning and evidence, not defensiveness
  • If unsure, stop and request the missing artifacts or context needed to verify

Example use cases

  • Reviewer says 'remove legacy code' → grep and verify backward-compat constraints before change
  • Feedback lists items 1–6 but 4–5 are unclear → confirm understanding of 4–5 before implementing others
  • External suggestion adds an endpoint → check whether the endpoint is actually called (YAGNI) before building
  • Suggested fix risks breaking platform compatibility → push back with concrete compatibility tests or ask for guidance
  • Multiple reviewers conflict with prior architecture decisions → pause and escalate to the human partner for a decision

FAQ

What if I agree but can't verify immediately?

State what you can verify, enumerate what you cannot, and ask whether to investigate, request assets, or wait for clarification.

How should I phrase pushback?

Use concise technical reasoning, reference tests or code, ask specific questions, and avoid emotional language.

Are acknowledgements allowed?

Acknowledge only with technical confirmation or a brief fix description. Avoid performative praise or thanks.