用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ahmedelgabri/dotfiles --skill pr-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | pr-review |
| description | Review a GitHub pull request, examining the summary, linked resources, and diff |
| argument-hint | [PR number or URL] |
| allowed-tools | ["Bash","Read","Glob","Grep","WebFetch","AskUserQuestion"] |
Review a GitHub pull request using the gh CLI. Examine it as a thorough human
reviewer would.
Identify the PR:
gh pr view --json number,urlFetch PR details by running:
gh pr view <number> --json title,body,baseRefName,headRefName,files,additions,deletions,commits,reviews,comments,url
Read the PR description carefully:
curl via bash) to understand the
context.Examine the diff:
gh pr diff <number>
If the diff is very large, also look at the file-level summary:
gh pr diff <number> --stat
and then examine the most important files in detail.
Conduct the review by evaluating:
Present the review to the user:
Offer next steps. Ask the user which of these to do:
Option A: Post review comments on the PR
gh pr review <number> to submit the review.[AI Review] so it is obvious
the feedback was AI-generated.--comment for suggestion-level reviews, --request-changes if there
are blocking issues.Option B: Check out the branch and implement fixes locally
gh pr checkout <number>Option C: Do nothing (just keep the review as conversation output).
gh, always label them as AI-generated.