بنقرة واحدة
pr-review
Review a pull request — check diff, run tests, report findings
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Review a pull request — check diff, run tests, report findings
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Write personal blog posts with the rhythm, structure, and voice of top-tier essayists (Paul Graham, Dan Luu, Henrik Karlsson, Ben Kuhn, etc.)
Add a new feature with design, TDD, and PR workflow
Audit a codebase for security vulnerabilities, code quality issues, and architecture concerns
Use when the user says "autopilot", "auto mode", "替我回答", or "自动回答". Enables autonomous decision-making by answering Claude's own questions based on the user's personality profile.
Fix a bug with systematic debugging, TDD, and PR workflow
Create a git release — tag, push, and create GitHub release
| name | pr-review |
| description | Review a pull request — check diff, run tests, report findings |
| user_invocable | true |
Review a pull request systematically before merge.
/pr-review <PR number or URL>
gh pr view <number> --json title,body,files,commits
gh pr diff <number>
EnterWorktree(name: "pr-<number>")
git fetch origin pull/<number>/head:pr-<number>
git checkout pr-<number>
## PR Review: #<number> — <title>
### Summary
[1-2 sentences on what the PR does]
### Findings
#### Critical (must fix)
- ...
#### Important (should fix)
- ...
#### Suggestions (nice to have)
- ...
### Tests
- Suite: [pass/fail count]
- Coverage: [new code covered? y/n]
### Verdict: [Approve / Request Changes / Needs Discussion]
ExitWorktree(action: "remove")