在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用review
星标3
分支0
更新时间2026年4月25日 22:53
Perform a thorough code review of recent changes
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Perform a thorough code review of recent changes
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate changelog entries following Keep a Changelog format
Generate a well-structured pull request with summary and test plan
Cluster related instincts into skills, commands, or agents
Export instincts for sharing with teammates or backup
Import instincts from teammates or community collections
View learned instincts grouped by domain with confidence levels
| name | review |
| description | Perform a thorough code review of recent changes |
| user-invocable | true |
Perform a thorough code review of changes.
/review [file, PR, or commit]
/review # Review staged changes
/review src/auth/login.ts # Review specific file
/review #123 # Review PR #123
Before reviewing:
Format feedback clearly:
## Summary
[Overall assessment: approve, request changes, or discuss]
## Highlights
- [What's done well]
## Required Changes
1. **[File:Line]** - [Issue description]
```suggestion
// Suggested fix
### 4. Severity Levels
Use consistent severity markers:
| Level | Meaning | Action |
|-------|---------|--------|
| 🔴 **Blocker** | Must fix before merge | Required change |
| 🟡 **Warning** | Should fix, potential issue | Strongly suggested |
| 🔵 **Suggestion** | Could improve code | Optional |
| 💬 **Question** | Need clarification | Discussion |
| 👍 **Praise** | Well done | Positive feedback |
## Example Output
```markdown
## Code Review: Add OAuth Login
### Summary
Overall good implementation. A few security concerns need addressing
before merge.
### Highlights
- Clean separation of OAuth providers
- Good error messages for users
- Comprehensive token validation
### Required Changes
1. 🔴 **src/auth/oauth.ts:45** - Token stored in localStorage
Tokens should be in httpOnly cookies to prevent XSS.
```typescript
// Instead of localStorage, use secure cookie
res.cookie('token', token, { httpOnly: true, secure: true });
expiresAt optional?
Should tokens always have expiration?Verdict: Request changes (2 security issues)
## Tips
- Be constructive, not critical
- Explain the "why" behind suggestions
- Acknowledge good work
- Offer alternatives, not just criticism
- Consider the author's experience level