← Back to list

code-review
by erikpr1994
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: code-review description: "Use when reviewing code changes or conducting PR reviews."
Code Review
Goal: Find bugs, ensure quality, share knowledge.
Process
UNDERSTAND -> What changed and why?
EXAMINE -> Check code systematically
TEST -> Run it yourself
FEEDBACK -> Provide actionable comments
FOLLOW-UP -> Verify fixes
Examine Code
git diff main...feature-branch --stat
git checkout feature-branch && npm test
Check:
- Correctness: Logic? Edge cases? Error paths?
- Security: Input validation? Auth checked?
- Testing: Tests exist? Cover regressions?
Feedback Severity
| Level | Meaning | Action |
|---|---|---|
| Critical | Bug, security | Must fix |
| Important | Logic error | Should fix |
| Minor | Style, naming | Can fix later |
Good Format:
**[Important]** Missing null check
`user` could be null if API fails. Throws at line 45.
Review Checklist
- Logic errors - Will it work?
- Security holes - Can it be exploited?
- Error handling - Will it crash?
- Test coverage - Will regressions be caught?
Block PR If
- Hardcoded credentials
- Disabled security checks
- Tests that always pass
- Catch-all error swallowing
Decision Criteria
| Finding | Action |
|---|---|
| Critical issue | Block merge |
| Important issue | Request changes |
| Only minor/nitpicks | Approve with comments |
Pairs with: pr-workflow, verification, tdd
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon