| name | review-follow-up |
| description | Address actionable GitHub pull request review feedback. |
| when_to_use | Use when the user asks to inspect or resolve PR review comments, requested changes, or unresolved review threads. |
| triggers | ["review comments","requested changes","address comments","unresolved review","pr feedback"] |
Review Follow-up
Use this skill to handle actionable PR review feedback.
Collect the review state first:
- Identify the PR, branch, and current head SHA.
- Use
gh pr view <pr> --json number,title,headRefName,headRefOid,reviewDecision,reviews,comments,url.
- When thread resolution state or inline context matters, query review threads through GitHub GraphQL with
gh api graphql.
Separate actionable requests from acknowledgements, stale comments, duplicates, and discussion-only notes. If the PR is already merged and a fix is still needed, make the follow-up against the current base branch instead of rewriting the merged branch.
Implement only the accepted/actionable fixes. Keep replies and thread resolution out of band unless the user explicitly asks to post or resolve comments. After patching, summarize the comments addressed, the files changed, and any feedback intentionally left unchanged.
This is different from /review: /review finds code-review issues. This skill follows up on review feedback that already exists on GitHub.