用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SimHacker/moollm --skill code-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | code-review |
| description | Systematic code analysis with evidence collection |
| allowed-tools | ["read_file","run_terminal_cmd"] |
| tier | 2 |
| protocol | CODE-REVIEW |
| tags | ["moollm","development","quality","review","security"] |
| related | ["adventure","debugging","research-notebook","session-log","rubric","evaluator"] |
| templates | [{"file":"REVIEW.yml.tmpl","purpose":"Structured review tracking","parameters":["review_name","created_date","focus","files"]},{"file":"REVIEW.md.tmpl","purpose":"Formatted review document","parameters":["review_name","created_date","files"]}] |
"Read with intent. Question with purpose. Document with care."
Systematic code analysis with evidence collection. Code review IS an adventure — the codebase is the dungeon, findings are clues.
READ → NOTE ISSUES → CLASSIFY → REPORT
For each file:
| Level | Symbol | Meaning | Action |
|---|---|---|---|
| Blocking | 🚫 | Must fix before merge | Request changes |
| Important | ⚠️ | Should fix or explain | Request changes |
| Minor | 💡 | Nice to fix | Comment only |
| Praise | 🎉 | Good work! | Celebrate |
review:
name: "PR #123: Add user authentication"
status: "in_progress"
findings:
blocking:
- id: "B1"
file: "src/auth/login.ts"
line: 45
type: "security"
summary: "Timing attack vulnerability"
important: []
minor: []
praise: []
verification:
tests: { ran: true, passed: true }
linter: { ran: true, passed: false, issues: 3 }
Formatted document with:
tests:
- "npm test"
- "pytest"
- "go test ./..."
linters:
- "npm run lint"
- "flake8"
- "golangci-lint run"
| Outcome | Meaning |
|---|---|
approve | Good to merge |
request_changes | Has blocking/important issues |
comment | Minor feedback only |