address-pr-review
星标15
分支2
更新时间2026年7月8日 20:25
Look at the pull request review comments and address any issues raised.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Look at the pull request review comments and address any issues raised.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | address-pr-review |
| description | Look at the pull request review comments and address any issues raised. |
| disable-model-invocation | true |
| context | fork |
| allowed-tools | Bash(bash ~/.claude/skills/address-pr-review/*) |
Run both helper scripts:
bash ./get-unresolved-threads.sh
bash ./get-failing-ci.sh
The first returns a JSON array of unresolved threads. Each thread has:
id — thread ID (needed to reply)path — file pathline / startLine — line numbers in the diffisOutdated — whether the diff has changed since the commentcomments.nodes[] — the comment thread (first = original comment, rest = replies), each with author.login, body, and urlThe second checks CI status and outputs failure details if any jobs failed (exit code 1 = failures, 0 = all passed).
If there are no unresolved threads and CI is green, stop here.
If there are many items, create one task per item to keep things organized.
For each unresolved review thread:
For each CI failure:
After addressing all review comments and CI failures, commit your changes and push.
After addressing each comment, reply using the helper script:
bash ./reply-to-thread.sh "<thread_id>" "<body>" [--resolve]
--resolve to mark the thread as resolved.--resolve) so the reviewer can reply if they disagree.