원클릭으로
git-review-pr-comments
Triage PR review comments: fix, discuss, or decline with reason - every thread answered
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Triage PR review comments: fix, discuss, or decline with reason - every thread answered
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verify, review, and push pending work as one milestone commit
Drive the current branch's PR to merge-ready: CI green and every review comment handled, ending with an outcome label
After owner accept: guard-checked squash-merge of the current branch's PR, base sync and branch cleanup
Open a pull request for the current branch against its target, using the repo template
Cut a release: version, changelog, tag, and release object — policy-driven across trunk/gitflow and tag-only/full
Audit documentation claims against the code; report drift vs violation
| name | git-review-pr-comments |
| description | Triage PR review comments: fix, discuss, or decline with reason - every thread answered |
| argument-hint | [pr number] |
Drain reviewer feedback: every thread ends with a fix commit or a reasoned reply. Silence is never a response.
gh pr list --head <branch> --state open --json number --jq '.[0].number'.reviewThreads(first: 100) { nodes { id isResolved comments(first: 1) { nodes { path line body author { login } } } } } - keep isResolved == false (already-resolved threads were handled on a prior run; skipping them is what makes re-running safe); plus gh pr view <pr> --json reviews,comments for conversation-level notes.dev-context-engineering). Apply fixes grouped into logical commits via git-commit-push (gates run before push).resolveReviewThread mutation by thread id) - the resolved flag is the only state that survives a re-run; a reply without resolve re-appears next run. Reply content: the commit reference for fixes, the reasoning for discuss/decline. Match the reviewer's tone; keep replies short.git-finalize-pr; merging - git-merge-pr.