用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/windmill-labs/windmill --skill local-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | local-review |
| user_invocable | true |
| description | Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code. |
Run the same review locally that the GitHub Claude Auto Review action runs on PRs. The shared review instructions live in .claude/review-prompt.md — read that file first and follow its instructions.
Read .claude/review-prompt.md for the review criteria and focus areas
Determine the PR scope:
gh pr view if a PR exists, or use git diff main...HEADGet the diff and metadata:
gh pr diff or git diff main...HEAD for the full diffgh pr view or git log main..HEAD --oneline for contextRead changed files where the diff alone is insufficient to understand context
Apply the review instructions from .claude/review-prompt.md
Self-validate each finding: Before reporting, ask yourself:
Output findings to the terminal (default) or post as PR comments (with --comment flag)
## Code review
Found N issues:
1. <description> (<reason: CLAUDE.md adherence | bug | security>)
<file_path:line_number>
2. <description> (<reason>)
<file_path:line_number>
If no issues are found:
## Code review
No issues found. Checked for bugs and CLAUDE.md compliance.
If the user passes --comment, post findings as inline PR comments using:
gh pr review --comment --body "<summary>"
Or for inline comments on specific lines:
gh api repos/{owner}/{repo}/pulls/{pr}/reviews -f body="<summary>" -f event="COMMENT" -f comments="[...]"