â ã¹ãã«äžèŠ§ã«æ»ã

code-review
by hscspring
ðž Scaffold AI-friendly project structures for Vibe Coding
â 10ðŽ 1ð
2026幎1æ23æ¥
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
ã¹ã³ã¢
ç·åã¹ã³ã¢
65/100
ãªããžããªã®åè³ªææšã«åºã¥ãè©äŸ¡
âSKILL.md
SKILL.mdãã¡ã€ã«ãå«ãŸããŠãã
+20
âLICENSE
ã©ã€ã»ã³ã¹ãèšå®ãããŠãã
+10
â説ææ
100æå以äžã®èª¬æããã
0/10
â人æ°
GitHub Stars 100以äž
0/15
âæè¿ã®æŽ»å
3ã¶æä»¥å ã«æŽæ°
+5
âãã©ãŒã¯
10å以äžãã©ãŒã¯ãããŠãã
0/5
âIssue管ç
ãªãŒãã³Issueã50æªæº
+5
âèšèª
ããã°ã©ãã³ã°èšèªãèšå®ãããŠãã
+5
âã¿ã°
1ã€ä»¥äžã®ã¿ã°ãèšå®ãããŠãã
+5
ã¬ãã¥ãŒ
ð¬
ã¬ãã¥ãŒæ©èœã¯è¿æ¥å ¬éäºå®ã§ã

