بنقرة واحدة
local-review
Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| 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="[...]"
MUST use when writing Bun/TypeScript scripts.
MUST use when writing Bun Native scripts. The script must start with //native to run on the native worker.
MUST use when writing Deno/TypeScript scripts.
MUST use when writing Python scripts.
MUST use when writing Ansible playbooks.
MUST use when using the CLI, including debugging job failures and inspecting run history via `wmill job`.