Skip to content
Development
Skill

/receiving-code-review

Processes code review feedback systematically by classifying findings, deciding fix or reject with evidence, applying approved fixes, and re-verifying before marking comments resolved.

From plugin
software-development-department
72116 skills28 agents1 MCP
Install
$ npx -y skills add tranhieutt/software_development_department --skill receiving-code-review --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/receiving-code-review

Context preview

The summary Claude sees to decide when to auto-load this skill.

Processes code review feedback systematically by classifying findings, deciding fix or reject with evidence, applying approved fixes, and re-verifying before marking comments resolved.

SKILL.md

receiving-code-review.SKILL.md
name: receiving-code-review
type: workflow
description: "Processes code review feedback systematically by classifying findings, deciding fix or reject with evidence, applying approved fixes, and re-verifying before marking comments resolved."
argument-hint: "[review-comments-or-pr-number]"
user-invocable: true
allowed-tools: Read, Glob, Grep, Bash
context: main
effort: 3
agent: lead-programmer
when_to_use: "Use after receiving code review, PR comments, subagent review findings, or a CHANGES_REQUIRED verdict; also use when deciding which review comments to fix, defer, reject, or route to spec-evolution."

Receiving Code Review

Purpose

`receiving-code-review` turns review feedback into controlled engineering work. It prevents agents from blindly applying every suggestion, ignoring blockers, or quietly expanding scope while "addressing comments."

This workflow is for response and remediation after review. It complements `code-review`, which produces findings.

Core Rule

Every review comment must be classified, resolved with evidence, deferred with
an explicit owner, or rejected with a technical reason.

Do not mark a comment resolved because code changed nearby. Do not say feedback is addressed until the specific finding has fresh verification evidence.

Workflow

1. Collect Review Inputs

Gather the review material:

  • PR or review comments
  • `code-review` or `code-review-checklist` output
  • Subagent spec-compliance or code-quality review findings
  • The approved spec/plan, if the review refers to requirements
  • The changed files or diff relevant to each finding

If the review feedback is missing, ask for it or inspect the available PR/review source. Do not invent likely comments.

2. Normalize Findings

Create one item per distinct finding. Preserve file and line references when available.

For each finding, record:

  • Reviewer concern
  • File/line or affected behavior
  • Severity: `BLOCKER`, `MUST_FIX`, `SHOULD_FIX`, `NIT`, `QUESTION`
  • Category: `correctness`, `security`, `performance`, `test`, `architecture`,

`maintainability`, `style`, `docs`, `spec-drift`, or `unclear`

  • Proposed disposition: `fix`, `reject`, `defer`, `needs-clarification`, or

`route-to-spec-evolution`

When the finding is architectural or maintainability-oriented, also ask:

  • Is reviewer pointing at a genuinely shallow module or only at code they dislike?
  • Would the proposed fix deepen the seam, or only move complexity into another wrapper?
  • Does the deletion test support the abstraction being kept, changed, or removed?

3. Decide Disposition

Use these rules:

| Finding | Required disposition | | --- | --- | | Security, correctness, data loss, privacy, auth, or broken tests | `fix` unless demonstrably false | | Missing acceptance criterion or behavior outside approved spec | `route-to-spec-evolution` | | Ambiguous requirement or reviewer question | `needs-clarification` before code | | Style or naming issue aligned with project conventions | `fix` if low-risk | | Suggestion that broadens scope | `defer` or `route-to-spec-evolution` | | Incorrect comment | `reject` with evidence and code/spec reference |

Do not batch unrelated fixes under one finding. Do not combine review remediation with opportunistic refactoring.

4. Build the Response Plan

Before editing, output a concise response plan:

## Review Response Plan

| Finding | Severity | Disposition | Action | Verification |
| --- | --- | --- | --- | --- |
| [file:line or summary] | BLOCKER | fix | [exact change] | [command/check] |

If any item changes behavior, data, architecture, or acceptance criteria, pause and route through `spec-evolution` before implementation.

5. Apply Fixes With the Right Gate

For each `fix` item:

  • Use `test-driven-development` for behavior, bug, validation, security, or

regression changes.

  • Use the existing plan/spec gate if the fix is part of an approved task.
  • Use a Fast Gate only for small mechanical review fixes such as naming,

comments, formatting, or docs.

  • Run the verification named for that finding.

For `reject` items:

  • Cite the exact code, spec, test, or command output proving the comment does

not apply.

  • Keep tone factual.
  • Do not change code just to satisfy an incorrect comment.
  • If the comment attacks an abstraction, explain whether the module is earning

its complexity by keeping leverage/locality concentrated behind the seam.

For `defer` items:

  • Name the follow-up issue/spec/owner if available.
  • Explain why it is not required for the current review gate.

6. Re-Review and Close the Loop

After fixes:

  • Re-run the specific verification for each fixed finding.
  • Run broader tests/checks if the fix touched shared behavior.
  • Re-read the changed diff against the original review findings.
  • Use `verification-before-completion` before saying comments are addressed.

If any reviewer finding remains open, report it plainly. Do not claim review is fully addressed.

Output Format

## Receiving Code Review: [PR/Task/Scope]

### Findings Triage
| Finding | Severity | Category | Disposition | Reason |
| --- | --- | --- | --- | --- |

### Fix Plan
| Finding | Files | Gate | Verification |
| --- | --- | --- | --- |

### Responses
- [Finding]: fixed/rejected/deferred/needs clarification because [evidence].

### Verification
- [Command/check]: [result]

### Remaining Items
- [Open item, or "None"]

Anti-Rationalizations

| Thought | Required correction | | --- | --- | | "I'll just apply all suggestions." | Suggestions can be wrong or out of scope. Classify first. | | "This comment is minor; no verification needed." | Every fix needs at least a targeted check. | | "The reviewer probably meant X." | Ask or state the assumption; do not guess silently. | | "I'll resolve the thread after pushing." | Verify the specific finding first. | | "This review comment implies a new feature." | Route scope changes to `spec-evoluti

Read more
Ships withsoftware-development-department

Software Development Department

Get the whole plugin