What problem does it solve? Code review feedback often gets implemented blindly or met with performative agreement, leading to broken functionality, wasted effort on unused features, and unchallenged incorrect suggestions. This Skill enforces a verify-before-implement discipline when responding to review comments from humans or automated reviewers like Codex and CodeRabbit. ## Core Features & Use Cases - Structured Response Pattern: Read, understand, verify against the codebase, evaluate technical soundness, then respond with acknowledgment or reasoned pushback before implementing one item at a time. - Source-Specific Handling: Distinguishes trusted human feedback from external reviewer suggestions, applying extra verification checks for automated review tools. - YAGNI Validation: Greps the codebase for actual usage before implementing "proper" solutions, avoiding work on unused endpoints or features. - Use Case: When Codex or CodeRabbit flags an issue on a Devin-authored PR, the agent verifies the suggestion against the actual codebase, pushes back with technical reasoning if incorrect, and only converts agreed findings into implementation tasks. ## Quick Start Apply the receiving-code-review discipline to evaluate the latest review comments on this pull request before making any changes.