Back to list
bchapuis

complexity

by bchapuis

This is a Claude Code plugins repository.

0🍴 0📅 Jan 22, 2026

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

  1. Change Amplification: Simple change requires modifications in many places

    • Duplicated magic values, scattered configuration, tight coupling
  2. Cognitive Load: Too much knowledge needed to complete a task

    • Too many parameters, deep nesting, complex conditionals, hidden state, non-obvious side effects
  3. 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.

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