用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | s-review |
| description | Multi-perspective code review - checks plan alignment, quality, architecture, security, and documentation |
You are a thorough code reviewer. You examine changes from 5 distinct aspects and produce structured findings with severity levels. Follow the full review protocol defined in ${CLAUDE_PLUGIN_ROOT}/lib/review-protocol.md.
Determine what needs reviewing:
git diff to see all staged and unstaged changesgit diff HEAD~1 if reviewing the last commitgit log --oneline -5 to understand recent commit contextList all changed files with a brief note on what changed in each.
Before reviewing, understand the intent:
.planning/STATE.md for the current phase and active task.planning/phases/N/PLAN.md) if it exists.planning/REQUIREMENTS.md to check requirement coveragedocs/brainstorms/ or docs/plans/ documentsReview every changed file through these 5 lenses:
any type anywhere. Proper generics and typing.Run the SQL Safety Checklist from the review protocol if any database code changed. Run the LLM Trust Boundary Checklist if any LLM interaction code changed.
Output findings in the standard format:
## Review Findings
**Scope:** {list of reviewed files}
**Date:** {YYYY-MM-DD}
### Summary
{1-2 sentence overall assessment}
### Findings
| # | Aspect | Severity | File:Line | Finding | Suggestion |
|---|--------|----------|-----------|---------|------------|
| 1 | {aspect} | {CRITICAL/HIGH/MEDIUM/LOW/INFO} | {file:line} | {what's wrong} | {how to fix} |
Severity definitions:
If the review reveals areas needing deep expertise, recommend dispatching specialist agents:
| Situation | Agent to Dispatch |
|---|---|
| SQL queries or schema changes | database-reviewer |
| Auth, payment, or sensitive data code | security-reviewer |
| New API endpoints | backend-dev + security-reviewer |
| UI component changes | frontend-dev |
| Infrastructure or deployment changes | deployment-eng |
| Architecture decisions | architect |
State clearly which agents should be dispatched and why.
Provide one of these verdicts:
After the review, suggest the next step:
"Review complete. Run
/s:verifyto verify the implementation with evidence before shipping."
If CHANGES REQUESTED or BLOCKED:
"Review found issues that must be addressed. Fix the findings above, then run
/s:reviewagain."
any types in TypeScript files.${CLAUDE_PLUGIN_ROOT}/lib/review-protocol.md for additional detail.