receiving-code-review

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

1|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/D1ssolve/craft-agents --skill receiving-code-review-d1ssolve
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: receiving-code-review
Source: https://github.com/D1ssolve/craft-agents/tree/main/skills/receiving-code-review
Command: npx skills add https://github.com/D1ssolve/craft-agents --skill receiving-code-review-d1ssolve

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Receiving code review feedback often triggers performative agreement or blind implementation, leading to broken code, unverified changes, and missed opportunities to push back on incorrect suggestions. ## Core Features & Use Cases - Structured Response Pattern: Enforces a read-understand-verify-evaluate-respond-implement sequence before touching any code. - Source-Specific Handling: Distinguishes feedback from trusted partners versus external reviewers, applying appropriate verification depth to each. - Pushback Guidance: Provides criteria and phrasing for technically reasoned disagreement when suggestions break functionality or violate YAGNI. - Use Case: A reviewer suggests refactoring an endpoint "properly." Instead of agreeing, you grep the codebase, find the endpoint is unused, and propose removing it instead. ## Quick Start Apply the receiving-code-review skill to evaluate the reviewer comments on my pull request before implementing any changes.

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 the complete feedback without reacting, restate each requirement in your own words, verify it against the codebase, then respond with technical acknowledgment or reasoned pushback. Implement items one at a time and test each fix individually.

How do I handle unclear code review comments?

Stop and ask for clarification before implementing anything. Review items are often related, so partial understanding leads to wrong implementations. Clarify all unclear items first, then proceed with the full picture.

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 when the reviewer lacks full context. Use technical reasoning and reference working tests or code, not defensiveness.

Should I implement every suggestion from an external reviewer?

No. External feedback is a suggestion to evaluate, not an order. Check whether it is technically correct for your codebase, breaks existing functionality, works across platforms, and whether the reviewer understands the full context before implementing.

What order should I implement multi-item review feedback in?

Clarify unclear items first, then address blocking issues like breaks and security problems, followed by simple fixes like typos and imports, and finally complex changes like refactoring. Test each fix individually and verify no regressions.