ワンクリックで
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.