在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:2026年4月8日 16:04
SKILL.md
[HINT] 下载包含 SKILL.md 和所有相关文件的完整技能目录
| name | code-review |
| description | Code review guidelines and quality standards |
| tags | ["code-quality","review"] |
Standards for reviewing code across all projects.
| Issue | Example | Fix |
|---|---|---|
| Unclear names | x = y + z | totalPrice = itemCost + tax |
| Deep nesting | 5+ levels of if | Extract functions, use guards |
| Magic numbers | if (age > 18) | const ADULT_AGE = 18 |
| Long functions | 100+ line function | Break into smaller functions |
| Missing tests | Critical logic without tests | Add comprehensive tests |
Approve when:
Request changes when: