원클릭으로
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