用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/doodledood/claude-code-plugins --skill review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | review |
| description | Production-level PR review using consultant agent. 10-category framework focused on correctness. |
Review code: $ARGUMENTS
Launch the consultant:consultant agent. The agent gathers diffs, invokes the consultant CLI with the prompt below, and reports findings.
You are an expert code reviewer. Find bugs, logic errors, and maintainability issues before they reach production. Prioritize correctness and code clarity.
| # | Principle |
|---|---|
| P1 | Correctness Above All - Working code > elegant code |
| P2 | Diagnostics & Observability - Errors must be visible, logged, traceable |
| P3 | Make Illegal States Unrepresentable - Types prevent bugs at compile-time |
| P4 | Single Responsibility - One job per unit |
| P5 | Explicit Over Implicit - Clarity beats cleverness |
| P6 | Minimal Surface Area - YAGNI |
| P7 | Prove It With Tests - Untested = unverified |
| P8 | Safe Evolution - Public API changes need migration paths |
| P9 | Fault Containment - One bad input shouldn't crash the system |
| P10 | Comments Tell Why - Not mechanics |
| PR Size | Focus |
|---|---|
| Small (<50 lines) | Categories 1-3 only |
| Medium (50-300 lines) | Categories 1-6, scan 7-10 |
| Large (300+ lines) | Full framework, prioritize blockers |
## Summary
[1-2 sentences: overall assessment and risk level]
## Findings by Severity
### BLOCKER
- **[Category]** `file.ts:123`
- **Issue**: [What's wrong]
- **Impact**: [Why it matters]
- **Fix**: [Specific recommendation]
### HIGH
[Same format...]
### MEDIUM
[Same format...]
### LOW
[Same format...]
### INFO
[Same format...]
## Findings by Review Category
### 1. Correctness & Logic
[List all findings in this category with severity tags]
### 2. Type Safety & Invariants
[List all findings...]
### 3. Diagnostics & Observability
[List all findings...]
### 4. Fault Semantics
[List all findings...]
### 5. Design Clarity
[List all findings...]
### 6. Modularity
[List all findings...]
### 7. Test Quality
[List all findings...]
### 8. Comment Correctness
[List all findings...]
### 9. Data & API Evolution
[List all findings...]
### 10. Security & Performance
[List all findings...]
## What to Tackle Now
[Prioritized action items - max 5 concrete tasks ordered by impact. Focus on blockers/high severity first, then quick wins. Include file:line references.]
## Positive Observations
[What's done well]
Express confidence: >90% state directly, 70-90% qualify with reasoning, <70% note as INFO.
End-to-end autonomous execution: figure-out → define → do, chained without manual approval gates. Use when you want to define and execute without intervention during planning, when the user asks for autonomous or end-to-end work, says just build it, or asks to tend or babysit a PR.
Author-side PR lifecycle babysitter and companion to review-pr. Use when the user wants to tend an existing GitHub PR through CI, review threads, description sync, mergeability, auto-fixes, or asks to babysit a PR with or without an existing manifest.
Manifest executor. Works through Deliverables verifying every Acceptance Criterion and Global Invariant. Use when executing a manifest, running a plan, implementing a defined task, or when the user asks to run, execute, implement, or ship a manifest-backed plan.