Back to list
hscspring

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

PriorityCheck
🔴 CriticalSecurity (no secrets, injection)
🔴 CriticalCorrectness (logic, edge cases)
🟡 ImportantPerformance (N+1, loops)
🟡 ImportantError handling
🟢 Nice-to-haveReadability, DRY, style

Process

  1. Context - Read requirement/design
  2. High-level - Architecture check
  3. Line-by-line - Detailed inspection
  4. Tests - Check coverage
  5. 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