architecture-review
Installation
SKILL.md
Architecture Review
Review architecture quality, design consistency, extension seams, and pattern adherence.
Scope
1. Indirection pressure (primary focus)
Flag layers that add no architectural value:
- runtime import cycles across split modules
- pass-through facades that only rename or re-export
- alias/wrapper layers without independent policy or invariants
- DI bags exceeding practical seam or testing needs
- singleton imports in library modules that should accept injected params — an application reading its own central store is idiomatic and not this finding
- facade-for-facade chains
Default: if a layer carries no policy, invariants, or boundary isolation, remove it.