← Back to list

code-review
by usorama
Unified Intelligence System: Knowledge-Base (Qdrant) + Veracity-Engine (Neo4j) for Complete Codebase Understanding
⭐ 0🍴 0📅 Jan 18, 2026
SKILL.md
name: code-review description: Review code for quality, security, and best practices. Use for PR reviews, code quality checks, security audits, and pre-merge reviews. allowed-tools: Read, Grep, Glob, Bash
Code Review Skill
Systematic code review for quality, security, and maintainability.
Review Checklist
1. Correctness
- Logic is correct
- Edge cases handled
- Error handling appropriate
- No obvious bugs
2. Security (OWASP Top 10)
- No SQL injection vulnerabilities
- No XSS vulnerabilities
- Input validation present
- No hardcoded secrets
- Authentication/authorization correct
- Sensitive data protected
3. Code Quality
- Code is readable
- Functions are focused (single responsibility)
- No code duplication (DRY)
- Naming is clear and consistent
- No magic numbers/strings
- Appropriate comments where needed
4. TypeScript Specifics
- No
anytypes - Proper type annotations
- Null/undefined handled
- Generics used appropriately
5. Performance
- No obvious performance issues
- No N+1 queries
- Appropriate caching
- Memory leaks avoided
6. Testing
- Tests exist for new code
- Tests are meaningful
- Edge cases tested
- Coverage maintained
Output Format
Critical (Must Fix)
Issues that must be fixed before merge.
CRITICAL: [file:line] - [Issue description]
Code: `problematic code`
Fix: [Suggested fix]
Warnings (Should Fix)
Issues that should be addressed but don't block merge.
WARNING: [file:line] - [Issue description]
Suggestion: [Improvement]
Suggestions (Consider)
Nice-to-have improvements.
SUGGESTION: [file:line] - [Improvement idea]
Summary
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CODE REVIEW SUMMARY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Files reviewed: X
Critical issues: X
Warnings: X
Suggestions: X
Verdict: [APPROVED / CHANGES REQUESTED]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon