← スキル一覧に戻る

complexity
by bchapuis
This is a Claude Code plugins repository.
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: complexity description: Analyzes code for complexity issues. Use when code feels hard to understand, reviewing maintainability, or planning refactoring. allowed-tools: Read, Grep, Glob
Complexity Analyzer
Complexity is the enemy. Good design reduces the complexity developers face.
Three Symptoms
-
Change Amplification: Simple change requires modifications in many places
- Duplicated magic values, scattered configuration, tight coupling
-
Cognitive Load: Too much knowledge needed to complete a task
- Too many parameters, deep nesting, complex conditionals, hidden state, non-obvious side effects
-
Unknown Unknowns: Not obvious what to modify or what info is needed
- Missing docs on non-obvious behavior, implicit contracts, hidden dependencies, action-at-a-distance
Red Flags
- Shallow modules (interface nearly as complex as implementation)
- Information leakage (implementation details in interfaces)
- Pass-through methods (just call another method)
- Conjoined methods (must be called together)
- Temporal decomposition (split by execution order, not information hiding)
Output
Complexity level (Low/Medium/High/Critical), findings with location/symptom/impact/suggestion, prioritized refactoring recommendations.
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です