skills/pr-address-bot-reviews/SKILL.md
Use this skill to process bot review feedback on a pull request (for example coderabbitai and chatgpt-codex-operator). Invoke when bot comments arrive and the user wants triage, decision making, and implementation of required fixes.
npx skillsauth add gentamura/dotfiles pr-address-bot-reviewsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Triage and resolve bot-generated PR feedback with a consistent workflow.
coderabbitai[bot]chatgpt-codex-operatorAdd more bot logins when needed.
gh:
Classify each item into:
must-fix: clear bug/risk/regressionshould-fix: strong improvement with low downsideskip-with-reason: incorrect assumption, out-of-scope, or high-cost low-valueneeds-user-decision: product/architecture tradeoffmust-fix and agreed should-fix items.skills/pr-address-bot-reviews/scripts/reply-to-review-comment <pr> --login <bot-login> --path <file> [--line <line>] "<response>"find-review-comment-id then pr-thread-replygh pr commentgh pr view <number> --json number,title,body,reviews,comments,files
gh pr view <number> --comments
# preferred single-command inline review reply flow
skills/pr-address-bot-reviews/scripts/reply-to-review-comment <number> --login <bot-login> --path <file> [--line <line>] "<response>"
# lower-level two-step flow when you want explicit control
skills/pr-address-bot-reviews/scripts/find-review-comment-id <number> --login <bot-login> --path <file> [--line <line>]
skills/pr-address-bot-reviews/scripts/pr-thread-reply <number> <comment_id> "<response>"
# optional general PR note
gh pr comment <number> --body "<response>"
# implement code changes
git add <files...>
git commit -m "<message>"
git push
scripts/reply-to-review-comment: thin entrypoint that resolves the target review comment id and posts the replyscripts/find-review-comment-id: resolve a single inline review comment id from bot login + path + optional linescripts/pr-thread-reply: post a reply to a known inline review comment idThis keeps comment discovery and reply posting separate internally while still exposing a one-command path for routine use.
tools
Use this skill to break down requirements into user stories, acceptance criteria, and actionable tasks. Invoke when starting a new feature or receiving new requirements.
devops
Use this skill for release preparation and execution. Invoke when deploying to staging or production environments.
development
Use this skill to review pull requests against coding standards and best practices. Invoke when reviewing code changes before merge.
tools
Use this skill to create a pull request from current local changes. Invoke when the user asks to create a branch, commit, push, and open a PR.