← Back to list

code-review
by PhantasticUniverse
Self-maintaining Claude Code showcase demonstrating all features (January 2026)
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: code-review description: Universal code review checklist and guidelines. Use when reviewing PRs, checking code quality, or providing feedback on code changes.
Code Review
Universal code review checklist and guidelines.
Review Mindset
Goals
- Improve code quality
- Catch bugs before production
- Share knowledge
- Maintain standards
Approach
- Be constructive, not critical
- Focus on the code, not the person
- Explain the "why" behind suggestions
Review Checklist
1. Correctness
- Logic is correct
- Edge cases handled
- Error cases covered
- Tests verify behavior
2. Readability
- Clear naming
- Logical structure
- Appropriate comments
- Consistent style
3. Maintainability
- Single responsibility
- No magic numbers
- Appropriate abstractions
- No code duplication
4. Security
- No hardcoded secrets
- Input validation
- SQL injection prevention
- XSS prevention
5. Performance
- No N+1 queries
- Appropriate data structures
- Efficient algorithms
- Resource cleanup
6. Testing
- Tests exist
- Tests are meaningful
- Edge cases tested
Providing Feedback
Be Specific
# Bad
"This function is confusing"
# Good
"Consider splitting this into validate_input() and process_data()
to make each function's responsibility clearer."
Explain Why
# Bad
"Use a Set instead of Array"
# Good
"Consider using a Set - lookup is O(1) vs O(n),
which matters since this runs for each cart item."
Prioritize
- 🔴 Blocker: Must fix before merge
- 🟡 Suggestion: Should consider
- 🟢 Nit: Minor improvement
Quick Reference
### Verdict
- ✅ Approve
- ⚠️ Suggestions
- ❌ Changes required
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon