← Back to list

reviewing-code
by whyleonardo
Reusable Claude Code configuration template with custom commands and skills
⭐ 0🍴 0📅 Jan 13, 2026
SKILL.md
name: reviewing-code description: Guidelines and checklist for thorough code review.
Code Review Guidelines
Review Mindset
- Be constructive, not critical
- Focus on the code, not the author
- Ask questions instead of making demands
- Praise good patterns and improvements
- Consider the context and constraints
Checklist
Correctness
- Does the code do what it's supposed to do?
- Are edge cases handled?
- Are there any off-by-one errors?
- Is error handling appropriate?
Security
- Is user input validated/sanitized?
- Are there any SQL injection risks?
- Is sensitive data properly protected?
- Are authentication/authorization correct?
Performance
- Are there any obvious N+1 queries?
- Is there unnecessary computation in loops?
- Are expensive operations cached appropriately?
- Could any operations be parallelized?
Maintainability
- Is the code readable and self-documenting?
- Are functions/modules appropriately sized?
- Is there code duplication that should be abstracted?
- Are naming conventions followed?
Testing
- Are there tests for new functionality?
- Do existing tests still pass?
- Are edge cases covered in tests?
- Is test coverage adequate?
Type Safety
- Are types properly defined?
- Are there any
anytypes that should be typed? - Are null/undefined cases handled?
Communication
- Use conventional comment prefixes:
nit:- minor, non-blocking suggestionsuggestion:- optional improvementquestion:- seeking clarificationissue:- must be addressed before merge
- Provide examples when suggesting changes
- Link to documentation or resources when helpful
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/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

