Claude-skill-registry decomplect
Architectural code analysis for design quality. Evaluates simplicity (Rich Hickey), functional core/imperative shell (Gary Bernhardt), and coupling (Constantine & Yourdon). Use for design review or architectural assessment.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/decomplect" ~/.claude/skills/majiayu000-claude-skill-registry-decomplect && rm -rf "$T"
manifest:
skills/data/decomplect/SKILL.mdsource content
Decomplect
Architectural analysis for design quality.
Usage
/decomplect # Run all 3 analyzers in parallel /decomplect --simplicity # Specific analyzer /decomplect --fcis # Specific analyzer /decomplect --coupling # Specific analyzer
Analyzers
| Analyzer | Question |
|---|---|
| simplicity-analyzer | Is this truly simple or just easy? |
| fcis-analyzer | Is pure logic separated from I/O? |
| coupling-analyzer | Are modules well-separated? |
What It Checks
| Pillar | Focus |
|---|---|
| Simplicity | Values over state, decomplected concerns |
| FCIS | Functional core (pure), imperative shell (I/O) |
| Coupling | High cohesion, low coupling |
When to Use
- Reviewing system design
- Before major refactoring
- Assessing architectural quality
- Checking if code is "Rich Hickey approved"
Supported Languages
- TypeScript / JavaScript
- Go
- Rust
Reference Documentation
See Also
- Tactical code cleanup (types, SRP, fail-fast)/unslopify