← Back to list

code-review
by DeruL0
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: code-review description: Reviews code changes for bugs, style issues, and best practices. Use when looking for errors or improving code quality.
Code Review Skill
When reviewing code, systematically check the following areas:
1. Correctness & Logic
- Boundary Conditions: Are edge cases (empty lists, None values, zero division) handled?
- Error Handling: Are exceptions caught specifically? (No bare
except:). - Type Safety: Do function signatures match their usage?
2. Architecture & Design
- Single Responsibility: Does the function/class do one thing?
- Coupling: Are dependencies manageable? (e.g., UI code shouldn't import low-level processors directly if possible).
- Resource Management: Are files and GPU memory released properly? (Look for
try...finallyor context managers).
3. Style & Conventions
- Naming: Do names reflect intent? (e.g.,
pnm_adjacencyvsadjacency). - Docstrings: Are complex logic blocks explained?
- Imports: Are imports grouped and sorted?
4. Performance (Specific to CT/Volume Data)
- Vectorization: Is
numpy/cupyused instead of explicit loops? - Memory: Are large arrays copied unnecessarily?
- GPU Usage: Is generic
try-importused for optional GPU backends?
Output Format
Provide feedback in a structured list:
- Severity: [Critical/Major/Minor]
- File: [Filename]
- Issue: [Description]
- Suggestion: [Proposed Fix]
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