event4u-app/agent-config

receiving-code-review

Use when processing code review feedback (bot or human) before changing anything — triages, verifies, and pushes back with technical reasoning — even when the user just says 'fix the comments'.

91Collecting
See how to use itView GitHub source
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/receiving-code-review"

Quick start

Start using it in three steps

Install it or open the source, trigger it with a clear task, then follow the source workflow.

1

Install the Skill

npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/receiving-code-review"
2

Describe the task

Use receiving-code-review to help me with: [describe your task]. Before you begin, tell me what input you need, the steps you will follow, and the expected output.

3

Follow the workflow

No structured workflow was detected; follow the original SKILL.md below.

Continue to the workflow

Direct answers

Answers to review before you install

What is receiving-code-review?

Use when processing code review feedback (bot or human) before changing anything — triages, verifies, and pushes back with technical reasoning — even when the user just says 'fix the comments'.

Who should use receiving-code-review?

It is most relevant to software development workflows. Confirm the original prerequisites before using it in production.

How do you install receiving-code-review?

SkillSignal detected this source-specific command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/receiving-code-review". Inspect the repository and command before running it.

Which Agent platforms does it support?

The upstream source does not declare a dedicated Agent platform.

What permissions or risks should you review?

No obvious permission action was detected by the static rules. This is not proof that the Skill is safe.

What are the current evidence limits?

This page combines upstream documentation with deterministic repository, quality, and static-risk signals. It is not described as a manual test or security review.

SkillSignal brief

Decide whether it fits your work first

Use when processing code review feedback (bot or human) before changing anything — triages, verifies, and pushes back with technical reasoning — even when the user just says 'fix the comments'.

Useful in these contexts

Core capabilities

Code reviewEngineering

Distilled from the source

Understand this Skill in one minute

About 6 min · 11 sections

When it is worth using

  1. A PR has review comments (from bots like Copilot, Greptile, Augment,

  2. Someone pasted review feedback into the conversation and asks you

  3. A pair-programming partner gave verbal suggestions about code you

  4. You are tempted to reply "you are absolutely right" before reading

Examples and typical usage

  1. Triage table — comment → classification → decision

  2. Implemented changes — bullet per change with file + commit ref

  3. Pushed back — bullet per rejected comment with the evidence

Limits and cautions

  1. Replying "Fixed!" after a commit that does not actually address the

  2. Rewriting the comment author's suggestion into your own words

  3. Implementing the YAGNI-suggested feature "just in case" the reviewer

  4. Silent disagreement — ignoring a comment without a reply

Repository stars
7
Repository forks
1
Quality
91/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

91/100
Documentation26/30
Specificity25/25
Maintenance20/20
Trust signals20/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 6 min

receiving-code-review

When to use

  • A PR has review comments (from bots like Copilot, Greptile, Augment, or from human reviewers) and the next step is to address them
  • Someone pasted review feedback into the conversation and asks you to "fix it" or "handle it"
  • A pair-programming partner gave verbal suggestions about code you just wrote
  • You are tempted to reply "you are absolutely right" before reading the rest of the comment

Do NOT use when:

  • You are writing a review yourself (different discipline)
  • The user explicitly asks for blind implementation of a specific change that is not framed as review feedback
  • The feedback is pure style/formatting that a linter should decide automatically — just run the linter

Goal

Treat review feedback as suggestions to evaluate, not orders to execute. Separate correct feedback from reviewer confusion. Push back with technical reasoning when the suggestion is wrong for this codebase. Never agree performatively.

The Iron Law

NO IMPLEMENTATION UNTIL THE FEEDBACK IS UNDERSTOOD AND VERIFIED.

A "fix" implemented against a misread comment is worse than no fix — it ships the wrong behavior under the label of "addressed feedback".

Procedure

1. Read the full comment set before touching code

Read every open comment on the PR first. Comments often relate to each other — fixing comment #3 in isolation can conflict with comment #5. Group them:

  • Blocking — breaks behavior, introduces a bug, security issue
  • Important — logic is correct but design / readability issue
  • Minor — naming, comment style, formatting the linter missed
  • Wrong — reviewer misunderstood the code, or suggestion would regress another behavior

2. Restate each comment in your own words

For every comment, write (internally or to the user): "The reviewer is asking me to X because Y."

If you cannot complete that sentence confidently → the comment is unclear. Ask for clarification before implementing anything. Do not implement the clear ones first and ask later — they may be linked.

3. Verify each claim against the code

For each comment classified as blocking/important:

  • Reproduce the alleged issue locally (run the test, hit the endpoint, read the actual runtime value — see systematic-debugging)
  • Check what the code actually does, not what the reviewer thinks it does
  • Check whether the suggested fix would break another test or caller
  • Check git blame / history — the current code may be the way it is for a reason
  • Consult memory for prior context. Via memory-access, call retrieve(types=["historical-patterns"], keys=<files in the review>, limit=3). A registered historical pattern may confirm the reviewer's concern (accept). For architectural rationale ("why is the current shape intentional?"), check the ADR index docs/decisions/INDEX.md — push back with the cited ADR number.

4. Decide: accept, push back, or escalate

SituationResponse
Reviewer is right, fix is local, no caller impactImplement, reference the comment in the commit message
Reviewer is right but fix affects other callersNote the downstream effects in the reply, then implement
Reviewer is wrong — based on misreading the codeReply with evidence (specific line / test / value), do not change code
Reviewer suggests a feature the codebase does not use (YAGNI)Reply asking whether the feature is actually needed, do not build speculatively
Reviewer and user / architecture disagreeEscalate to the user before implementing either path

5. Reply in the right place, with the right tone

  • For inline PR comments → reply in the thread of that comment, not as a top-level PR comment
  • Quote evidence, not opinion — "line 47 already handles this via $x->isNull()" beats "I think that's fine"
  • No flattery. No "great catch", "absolutely right", "thanks for noticing". The existing language-and-tone rule already bans this — actions are the acknowledgement
  • If you were wrong in your earlier pushback, state it factually and move on. No long apology

6. Implement in priority order, one at a time

  1. Blocking issues first
  2. Important issues next
  3. Minor issues last (or bundle them into a single commit)
  4. Wrong / YAGNI: no code change, only a reply with reasoning

Run the relevant tests and linters between each group — do not batch four changes and then run tests once. See verify-before-complete.

Output format

When reporting back to the user after handling review:

  1. Triage table — comment → classification → decision
  2. Implemented changes — bullet per change with file + commit ref
  3. Pushed back — bullet per rejected comment with the evidence
  4. Outstanding — anything awaiting clarification, with the specific question

Gotchas

  • Bot comments (Copilot, Greptile) are not automatically right. They frequently flag false positives on patterns the codebase uses deliberately. Verify like you would a human comment.
  • A comment that reads like a question ("should this be X?") is often a polite way of saying "change it to X". Ask if unclear instead of guessing the register.
  • Resolving a comment in the GitHub UI without an accompanying fix or reply silently marks it handled — reviewers may not notice the lack of substance.
  • Stacked PRs — a comment on the base PR may already be fixed in the child PR. Check both before touching code.
  • A suggestion that passes review aesthetics but fails the test suite is still a regression. Run tests even when "the change is trivial".
  • Flattery leaks in as "good point" or "thanks". Delete before sending. The code change itself is the acknowledgement.

Do NOT

  • Do NOT reply "you are absolutely right", "great catch", or any flattery variant — actions acknowledge, words do not
  • Do NOT implement a suggestion before verifying it against the code
  • Do NOT fix the clear items first and ask about the unclear ones later when the items are linked
  • Do NOT accept a reviewer's suggestion that conflicts with an explicit architectural decision without raising it
  • Do NOT batch multiple unrelated fixes into one commit — reviewers cannot re-review selectively
  • Do NOT mark a comment resolved without either a code change or a reply with reasoning

Anti-patterns

  • Replying "Fixed!" after a commit that does not actually address the comment (wrong file, missed case)
  • Rewriting the comment author's suggestion into your own words without checking whether the reinterpretation still matches intent
  • Implementing the YAGNI-suggested feature "just in case" the reviewer comes back
  • Silent disagreement — ignoring a comment without a reply

When to hand over to another skill / command

Validation checklist

Before considering review handling done:

  • Every open comment has been read, classified, and has a decision
  • No comment was implemented without a one-sentence restatement
  • Every implemented fix has been verified by a test or runtime check
  • Every rejected comment has a reply quoting evidence
  • No comment was marked resolved without code change or reply
  • No reply contains flattery
  • Linters and relevant tests pass after the changes
Skill path
src/skills/receiving-code-review/SKILL.md
Commit SHA
0adf49a8ae84
Repository license
MIT
Data collected