# Review Verify

> Verify that review feedback was addressed in a revision.

- Skill: `majiayu000/review-verify` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/review-verify`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/review-verify/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/review-verify

---


# Review Verify

The Reviewer drives this workflow. Verify that a commit or revision addresses specific review feedback. Compare the feedback items against the actual changes to confirm resolution.

**Prerequisites:** Original review feedback available, commit/revision diff accessible.

---

## Process

1. **Parse original feedback** — What specifically was requested?
2. **Analyze commit diff** — What did the commit change?
3. **Match** — Does the change address the feedback?
4. **Check for over-correction** — Did they change more than needed?

---

## Output

````markdown
## Context Anchors

- **PR:** #<number>
- **Commit:** <sha> - <message>
- **Feedback being addressed:** <summary>

## Verification Result

**Verdict:** <Resolved | Partially Resolved | Not Resolved | Over-corrected>

### Feedback Items

| Item         | Status           | Notes            |
| ------------ | ---------------- | ---------------- |
| <feedback 1> | ✅ Resolved      | <how>            |
| <feedback 2> | ⚠️ Partial       | <what's missing> |
| <feedback 3> | ❌ Not addressed | <still needed>   |

## Next Step

<If Resolved: "Feedback addressed. Ready for re-review.">
<If Partial/Not: "Still needs: <what>">

**Approval Required:** Yes

```

---

## Error Handling

| Error                       | Recovery                             |
| --------------------------- | ------------------------------------ |
| Missing original feedback   | Request the review comments          |
| Commit doesn't match branch | Verify correct commit SHA            |
| Ambiguous feedback item     | Ask reviewer for clarification       |
| Scope creep in revision     | Flag unrelated changes to the author |
```
````

