receiving-code-review

Guides verification and implementation of code review feedback with technical rigor.

Updated Aug 1, 2026
One-click install
npx skills add https://github.com/siegenthalerroger/.llmctl-marketplace --skill receiving-code-review-siegenthalerroger
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: receiving-code-review
Source: https://github.com/siegenthalerroger/.llmctl-marketplace/tree/main/plugins/llmctl-workflow-0.2.1/skills/receiving-code-review
Command: npx skills add https://github.com/siegenthalerroger/.llmctl-marketplace --skill receiving-code-review-siegenthalerroger

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Receiving code review feedback often leads to two failure modes: performative agreement without verification, or blind implementation of suggestions that may break the codebase. This Skill enforces a disciplined response pattern so feedback is evaluated against codebase reality before any changes are made. ## Core Features & Use Cases - Structured Response Pattern: Read, understand, verify, evaluate, respond, then implement feedback one item at a time with individual testing. - Source-Specific Handling: Differentiates between trusted feedback from your human partner and external reviewer suggestions that require skeptical verification. - Pushback and YAGNI Checks: Provides criteria for pushing back on technically incorrect suggestions and checking whether proposed features are actually used before implementing them. - Use Case: A reviewer on your GitHub pull request suggests removing legacy code and adding a metrics endpoint. Instead of agreeing immediately, you verify the legacy code is still needed for backward compatibility and grep the codebase to confirm nothing calls the metrics endpoint, then reply in the review thread with technical reasoning. ## Quick Start Use the receiving-code-review skill to help me evaluate and respond to the review comments on my current pull request.

Frequently Asked Questions about receiving-code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How should I respond to code review feedback on a pull request?▼

Read all feedback completely, restate each requirement in your own words, verify it against the codebase, then implement one item at a time with individual testing. Avoid performative agreement like "great point" and instead state the fix or ask clarifying questions.

How do I handle unclear code review comments?▼

Stop and ask for clarification before implementing anything, even if other items are clear. Partial understanding leads to wrong implementations because feedback items are often related, so clarify all unclear items first.

When should I push back on a code review suggestion?▼

Push back when a suggestion breaks existing functionality, violates YAGNI for unused features, is technically incorrect for your stack, or conflicts with prior architectural decisions. Use technical reasoning and reference working code or tests rather than being defensive.

Should I implement every suggestion from external reviewers?▼

No. Verify external feedback against your codebase first: check if it breaks existing functionality, whether the reviewer has full context, and if it works on all target platforms. If you cannot verify something, state the limitation and ask for direction.

How do I reply to inline review comments on GitHub?▼

Reply within the comment thread using the GitHub API endpoint for pull request comment replies, not as a top-level PR comment. This keeps the discussion attached to the specific line of code being reviewed.