← Back to list

code-review
by hscspring
🎸 Scaffold AI-friendly project structures for Vibe Coding
⭐ 10🍴 1📅 Jan 23, 2026
SKILL.md
name: code-review description: Review code for quality, bugs, security, and improvements. Use when self-reviewing before commit, reviewing PRs, or debugging issues.
Code Review
Systematically review code for quality, bugs, and security.
Checklist
| Priority | Check |
|---|---|
| 🔴 Critical | Security (no secrets, injection) |
| 🔴 Critical | Correctness (logic, edge cases) |
| 🟡 Important | Performance (N+1, loops) |
| 🟡 Important | Error handling |
| 🟢 Nice-to-have | Readability, DRY, style |
Process
- Context - Read requirement/design
- High-level - Architecture check
- Line-by-line - Detailed inspection
- Tests - Check coverage
- Document - Summarize findings
Output Format
## Code Review: [Name]
### Summary
[Approved / Changes Requested]
### Issues
- 🔴 [file:line] Problem → Suggestion
- 🟡 [file:line] Problem → Suggestion
### Good Patterns 👍
- [What was done well]
Common Issues
# 🔴 Security
password = "hardcoded" # Bad
password = os.environ["PASS"] # Good
# 🔴 SQL Injection
f"SELECT * WHERE id={id}" # Bad
"SELECT * WHERE id=%s", (id,) # Good
Tips
- Be constructive
- Explain the "why"
- Acknowledge good patterns
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

