โ 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
โๆ่ฟใฎๆดปๅ
3ใถๆไปฅๅ ใซๆดๆฐใใใ
0/10
โใใฉใผใฏ
10ๅไปฅไธใใฉใผใฏใใใฆใใ
0/5
โIssue็ฎก็
ใชใผใใณIssueใ50ๆชๆบ
+5
โ่จ่ช
ใใญใฐใฉใใณใฐ่จ่ชใ่จญๅฎใใใฆใใ
+5
โใฟใฐ
1ใคไปฅไธใฎใฟใฐใ่จญๅฎใใใฆใใ
+5
Reviews
๐ฌ
Reviews coming soon

