用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HybridAIOne/hybridclaw --skill code-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | code-review |
| description | Review diffs and change sets for bugs, regressions, risks, and missing tests. |
| user-invocable | true |
| metadata | {"hybridclaw":{"category":"development","short_description":"Diff and regression review.","tags":["engineering","review","quality","github"],"related_skills":["github-pr-workflow","feature-planning"]}} |
Use this skill to review local changes or an existing GitHub pull request for correctness, regressions, maintainability, security, and missing tests.
git status --short, git diff --stat, and
git diff --name-only.Use local git state when the change is in the current checkout:
git status --short
git diff --stat
git diff --name-only
git diff --staged
git diff <base-branch>...HEAD
git log --oneline <base-branch>..HEAD
Replace <base-branch> with the repository's actual review base branch.
Use gh when the review target is an open pull request:
gh pr view 123
gh pr diff 123
gh pr checkout 123
gh pr view 123 --comments
After checking out the PR branch, review it the same way as a local branch and run the relevant repo checks before leaving comments.
Prioritize issues that change behavior or raise delivery risk:
Treat pure style comments as low priority unless the user explicitly asks for a style review.
Default to this structure:
For each finding:
If there are no findings, say that explicitly and mention any residual risk such as unrun integration tests or unverified deployment paths.
Use targeted searches when helpful:
git diff <base-branch>...HEAD | rg "console\\.log|TODO|FIXME|HACK|debugger"
git diff <base-branch>...HEAD | rg "<<<<<<<|=======|>>>>>>>"
git diff <base-branch>...HEAD | rg -i "password|secret|token|api[_-]?key|private[_-]?key"
Prefer repo-native test commands over broad guesses. Run the smallest check set that can confirm or disprove a suspected issue.