code-review
1
总安装量
1
周安装量
#49036
全站排名
安装命令
npx skills add https://github.com/majiayu000/claude-skill-registry --skill code-review
Agent 安装分布
replit
1
amp
1
opencode
1
kimi-cli
1
codex
1
github-copilot
1
Skill 文档
Code Review Skill
Purpose
Perform thorough code reviews that identify issues and suggest improvements.
Review Checklist
When reviewing code, check for:
Code Quality
- Clear variable and function names
- DRY (Don’t Repeat Yourself) principles
- Single responsibility principle
- Appropriate error handling
Security
- Input validation
- SQL injection prevention
- XSS prevention
- Sensitive data handling
Performance
- Unnecessary loops or iterations
- Database query optimization
- Memory leaks
- Caching opportunities
Maintainability
- Code documentation
- Test coverage
- Consistent coding style
- Clear module boundaries
Feedback Format
Provide feedback in this format:
- Issue: Description of the problem
- Location: File and line number
- Severity: Critical/Major/Minor/Suggestion
- Fix: Recommended solution