skill-clean-architecture
Installation
SKILL.md
Core Philosophy: Basic Pillars, No Over-Engineering
This skill enforces only the essential 4 layers of Clean Architecture. No complex abstractions, no unnecessary patterns, no premature optimization.
The 4 Basic Pillars (Manténlo Simple)
- Domain - Entidades y reglas de negocio puras (POJOs/POCOs)
- Application - Casos de uso simples (orquestación)
- Infrastructure - Implementaciones concretas (DB, APIs externas)
- Interface - Controllers HTTP (manejo de requests/responses)
What We DON'T Want (Over-Engineering)
Related skills