address-pr-review
Look at the pull request review comments and address any issues raised.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
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.