What problem does it solve? Receiving code review feedback often leads to performative agreement, blind implementation of questionable suggestions, or partial fixes when items are unclear. This Skill enforces a verify-before-implement workflow so review feedback is evaluated against the actual codebase 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: Different rules for trusted human partner feedback versus external reviewer suggestions, including pushback with technical reasoning when suggestions are wrong. - YAGNI and Clarification Checks: Grep the codebase for actual usage before implementing "proper" features, and stop to ask when any feedback item is unclear. - Use Case: A reviewer leaves six comments on your pull request, two of which are ambiguous and one of which suggests removing legacy code needed for backward compatibility. The Skill guides you to clarify the ambiguous items first, push back on the legacy removal with technical evidence, and implement the rest one at a time with tests. ## Quick Start Use the receiving-code-review skill to help me evaluate and respond to the review comments on my current pull request before implementing anything.