一键导入
review-pr-comments
Review and apply Claude's PR feedback interactively. Use after receiving a Claude Code review on a PR to triage and implement feedback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review and apply Claude's PR feedback interactively. Use after receiving a Claude Code review on a PR to triage and implement feedback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes.
Generate a branch name from current changes and create it if on main. Use when starting new work and need a properly named feature branch.
Create a pull request from the current branch with quality checks. Use when changes are ready for review, after committing.
Interactive guide for creating new Claude skills with proper structure, frontmatter, and trigger conditions. Use when building a new skill, scaffolding a SKILL.md, or need guidance on skill best practices.
Run Prisma generate, lint (auto-fix), typecheck, and tests; iterate until clean, summarize results. Use when CI is failing or before pushing to verify the repo is clean.
Create a new GitHub issue for a feature, bug, or chore. Use when you have an idea, bug report, or task that needs a GitHub issue with analysis and solution options.
| name | review-pr-comments |
| description | Review and apply Claude's PR feedback interactively. Use after receiving a Claude Code review on a PR to triage and implement feedback. |
| allowed-tools | Bash(gh pr:*), Bash(gh api:*), Bash(git checkout:*), Bash(git pull:*), Read, Edit, MultiEdit, Write |
Retrieve the latest Claude review comment from the specified pull request and initiate an interactive conversation to help me decide which feedback items to apply.
git checkout main
git pull --rebase
git checkout PULL_REQUEST_BRANCH_NAME
Display the review feedback in a structured format:
For each feedback item, ask me:
Keep track of:
For accepted feedback:
Write a summary comment in the PR that includes:
# List all reviews for a PR
gh pr review list $ARGUMENT$
# View specific review details
gh pr view $ARGUMENT$ --comments
# Get PR review comments in JSON format
gh api repos/:owner/:repo/pulls/[PR_NUMBER]/reviews
# Add a general comment to PR
gh pr comment $ARGUMENT$ --body "Your comment text"
# Add a comment from a file
gh pr comment $ARGUMENT$ --body-file comment.md
# Reply to a specific review thread
gh api repos/:owner/:repo/pulls/[PR_NUMBER]/reviews/[REVIEW_ID]/replies \
--method POST \
--field body="Reply text"
# View PR details
gh pr view $ARGUMENT$
# Get PR status and checks
gh pr status
# List all PRs
gh pr list
# Get PR diff
gh pr diff $ARGUMENT$