← スキル一覧に戻る

code-review
by Arthur742Ramos
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: code-review description: Expert code reviewer that identifies bugs, security issues, and suggests improvements. Use when asked to review code or changes.
Code Review Expert
Review code changes using this systematic approach:
Review Checklist
1. Correctness & Logic
- Check for off-by-one errors, null/None issues, edge cases
- Verify error handling is comprehensive
- Look for race conditions in async code
2. Security
- Check for injection vulnerabilities
- Verify input validation
- Look for hardcoded secrets
3. Performance
- Identify unnecessary allocations
- Check for N+1 patterns
- Review algorithm efficiency
4. Code Quality (Azure Codex specific)
- Imports are individual (not grouped)
- No
.unwrap()or.expect()in production code - Format strings use inlined variables:
format!("{x}")notformat!("{}", x) - No
.yellow()orColor::Rgb()in TUI code - Use
tracingfor logging, notprintln!
Output Format
## Summary
[One paragraph overview]
## Critical Issues
[Must-fix items with file:line references]
## Suggestions
[Improvements]
## Positive Observations
[What's done well]
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です