← Back to list

code-review
by ivanov-i
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: code-review description: code review
Reviewing Code
Review Checklist
- Context: read plan, docs, commits; scan layout/architecture
- Sanity: verify plan vs code/docs alignment; stop and clarify on mismatches
- Architecture: spot god objects, leaks, wrong abstractions, premature/missing optimizations
- Architecture style: verify code vs the rest of the project. Architecture must match the rest of the project.
- Bugs: races, deadlocks, off‑by‑one, nullability, resource leaks, TOCTOU
- Security: injection, authz, secrets, randomness, side channels, SSRF/XXE
- Performance: complexity bombs, N+1, blocking I/O, hot‑path allocs, regex traps
- Patterns: TODO/FIXME/HACK, debug prints, ts-ignore, string concatenated SQL, swallowed exceptions
- Code Quality: names, complexity, duplication, magic numbers, data clumps
- Coding Style: you know how to write code, use that
- Analysis: root causes; systemic issues and thinking errors
Report Format
- verdict
- critical_failures
- severe_problems
- architectural_disasters
- performance_catastrophes
- security_vulnerabilities
- code_quality_violations
- root_cause_diagnosis
- mandatory_fixes
- the_standard
- final_judgment
Verdict Scale
REJECTED | DANGEROUS | AMATEUR | MEDIOCRE | BARELY ACCEPTABLE | ACCEPTABLE
Quick Reference Patterns
- Grep patterns to catch common issues (adapt to stack):
TODO|FIXME|HACK|XXXconsole\.log|print|fmt\.Print|puts|var_dumppassword|secret|key|token.*=.*["']exec|eval|system|shell_execSELECT.*\+|".*\+.*SELECTcatch\s*\(.*\)\s*{\s*}Thread\.sleep|time\.sleep|sleep\(new Date\(\)|Date\.now\(\)@ts-ignore|@ts-nocheck
Score
Total Score
40/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