Files
claude-howto/ja/03-skills/code-review-specialist/SKILL.md
Luong NGUYEN c7261394b0 fix(i18n): re-point translations to code-review-specialist rename (#128)
* fix(i18n): re-point translations to code-review-specialist rename

The English code-review skill was renamed to code-review-specialist in #127
to avoid shadowing the new built-in /code-review command. Mirror that rename
across the uk, vi, ja, zh locales: rename each 03-skills/code-review/ directory
to code-review-specialist/, update the i18n-source markers in the moved ja
files, and fix path references in INDEX.md, QUICK_REFERENCE.md, and the vi
TRANSLATION_QUEUE.md.

* chore: ignore .asm-improver and .gitissue tooling state

* fix(i18n): re-point remaining code-review install paths to code-review-specialist
2026-05-26 10:29:51 +02:00

75 lines
2.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- i18n-source: 03-skills/code-review-specialist/SKILL.md -->
<!-- i18n-source-sha: e978c49 -->
<!-- i18n-date: 2026-04-27 -->
---
name: code-review-specialist
description: セキュリティ、パフォーマンス、品質分析を含む包括的なコードレビュー。コードレビュー、コード品質分析、プルリクエスト評価の依頼があった場合、またはコードレビュー、セキュリティ分析、パフォーマンス最適化について言及がある場合に使用する。
---
# コードレビュー・スキル
このスキルは、以下に焦点を当てた包括的なコードレビュー機能を提供する。
1. **セキュリティ分析**
- 認証・認可の問題
- データ漏洩リスク
- インジェクション脆弱性
- 暗号の弱点
- 機密データのロギング
2. **パフォーマンス・レビュー**
- アルゴリズム効率Big O 分析)
- メモリ最適化
- データベースクエリ最適化
- キャッシュ機会
- 並行性の問題
3. **コード品質**
- SOLID 原則
- デザインパターン
- 命名規則
- ドキュメント
- テストカバレッジ
4. **保守性**
- コードの可読性
- 関数サイズ50 行未満が望ましい)
- 循環的複雑度
- 依存関係管理
- 型安全性
## レビュー・テンプレート
レビューしたコードごとに、以下を提供する。
### サマリー
- 全体品質評価1-5
- 主要な指摘件数
- 推奨される優先領域
### クリティカルな問題(あれば)
- **Issue**: 明確な説明
- **Location**: ファイルと行番号
- **Impact**: なぜ重要か
- **Severity**: Critical/High/Medium
- **Fix**: コード例
### カテゴリ別の指摘事項
#### セキュリティ(問題が見つかった場合)
セキュリティ脆弱性を例示しながら列挙
#### パフォーマンス(問題が見つかった場合)
複雑度分析を含めパフォーマンス問題を列挙
#### 品質(問題が見つかった場合)
リファクタリング提案を含めコード品質の問題を列挙
#### 保守性(問題が見つかった場合)
改善案を含め保守性の問題を列挙
## バージョン履歴
- v1.0.0 (2024-12-10): セキュリティ、パフォーマンス、品質、保守性分析を含む初回リリース