← スキル䞀芧に戻る
hscspring

code-review

by hscspring

🎞 Scaffold AI-friendly project structures for Vibe Coding

⭐ 10🍎 1📅 2026幎1月23日
GitHubで芋るManusで実行

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

スコア

総合スコア

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

レビュヌ

💬

レビュヌ機胜は近日公開予定です