ワンクリックで
review-pr-comments
Review PR comments, apply or reject each one with evidence, and post replies directly to GitHub
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review PR comments, apply or reject each one with evidence, and post replies directly to GitHub
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a git branch from a base and set its upstream at once, so a later push can never land on the base branch. Use when starting work that needs its own branch.
Create a well-structured GitHub issue with duplicate detection, code verification, and auto-labeling
Root-cause a bug or a failed fix with evidence, not guesses - brainstorm causes, research them in parallel, confirm one with logs before changing code. Use when a reported behavior needs root-causing or a fix attempt has failed.
Implement a GitHub issue interactively - asks about branch, PR target, and phases/steps before starting work
Rename or refactor a symbol safely by searching every naming-case variant across code, tests, docs, configs, and JSON. Use when renaming any identifier so no reference is missed.
Launch N parallel research agents that explore different improvement approaches, cross-pollinate ideas, and converge on a unified plan
| name | review-pr-comments |
| description | Review PR comments, apply or reject each one with evidence, and post replies directly to GitHub |
| argument-hint | ["pr-number-or-url"] |
Review PR comments from reviewers, make deliberate decisions about each, apply code changes where appropriate, and reply directly on GitHub.
If $ARGUMENTS contains a PR number or URL, use it. Otherwise, ask using AskUserQuestion:
"Which PR's comments do you want to review?"
Options:
Store as PR_NUMBER.
gh pr view $PR_NUMBER --json title,body,url,state,headRefName,baseRefName
gh pr diff $PR_NUMBER
gh api repos/$(gh repo view --json nameWithOwner -q .nameWithOwner)/pulls/$PR_NUMBER/comments --paginate
gh api repos/$(gh repo view --json nameWithOwner -q .nameWithOwner)/pulls/$PR_NUMBER/reviews --paginate
If there are no comments, inform the user and stop.
Present a summary: PR title/state, number of comments, which files have comments.
For each comment:
Record 1-3 evidence bullets from the codebase.
For each "Apply" or "Ambiguous -> Applied" decision:
cd menu_management && flutter analyze
cd menu_management && flutter test test/
cd menu_management && dart run build_runner build --delete-conflicting-outputsfix: address PR review - <short description>git push origin HEADgh api repos/$(gh repo view --json nameWithOwner -q .nameWithOwner)/pulls/{pr_number}/comments/{comment_id}/replies -f body="<reply>"
**Applied** in <short-sha> - <one sentence>.**Reject** - <1-3 sentences with evidence>.**Ambiguous -> Applied** in <short-sha> - Interpreted as: <interpretation>. <what changed>.## PR Comments Review Summary
**PR:** #<number> - <title>
**Comments reviewed:** N
### Applied (N)
- Comment by @user on `file:line` - <what was changed>
### Rejected (N)
- Comment by @user on `file:line` - <why rejected>
### Ambiguous -> Applied (N)
- Comment by @user on `file:line` - <interpretation>. <what was changed>
### Verification
- Analysis: pass/fail
- Tests: pass/fail