Summary
基于本地 git diff 的代码审查技能。用于在提交 PR 前先做自检评审,严格复用 pr-review 的三维度标准(代码质量标准、FastGPT 风格规范、常见问题清单),支持审查未暂存改动、已暂存改动、某次提交、或当前分支相对基线分支的全部改动。
yyh211/claude-meta-skill
基于本地 git diff 的代码审查技能。用于在提交 PR 前?
npx skills add yyh211/claude-meta-skill --skill local-diff-review
基于本地 git diff 的代码审查技能。用于在提交 PR 前先做自检评审,严格复用 pr-review 的三维度标准(代码质量标准、FastGPT 风格规范、常见问题清单),支持审查未暂存改动、已暂存改动、某次提交、或当前分支相对基线分支的全部改动。
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Adds interactive widget previews to the project using the previews.dart system. Use when creati…
29.4K installsFind Google Tasks that are past due and need attention.
27.2K installsReview who attended a Google Meet conference and for how long.
26.9K installsSecurity code review for vulnerabilities.
15.5K installsThis skill enables visual inspection of websites running locally or remotely to identify and fi…
13.3K installsUniversal SQL code review assistant that performs comprehensive security, maintainability, and …
13K installsOther skills from yyh211/claude-meta-skill · top by installs.
npx skills add yyh211/claude-meta-skill
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
3,191 B
SUMMARY.md
340 B
pr-review 保持一致,不允许自定义弱化标准。./code-quality-standards.md](code-quality-standards.md)./common-issues-checklist.md](common-issues-checklist.md)说明:本 skill 的“评审准则”以
pr-review当前版本为准,以上链接即唯一标准来源。
先收集仓库状态:
git status --short
git branch --show-current
git remote -v
再根据用户意图选择 diff 范围(默认优先问清楚范围):
# 1) 未暂存改动
git diff
# 2) 已暂存改动
git diff --staged
# 3) 工作区全部改动(含暂存+未暂存)
git diff HEAD
# 4) 当前分支相对基线分支(推荐用于“准备提 PR”)
git diff upstream/<base-branch>...HEAD
# 5) 指定提交
git show <commit>
- 🔴 严重问题(必须修复) - 🟡 建议改进(建议本次修) - 🟢 可选优化(可后续处理)
每个问题都包含:
git diff --staged,只给问题清单。”upstream/v4.14.7-dev 的改动。”