ai-era-architecture
Installation
SKILL.md
Use this skill to define architecture principles before choosing framework-specific structure.
Core rules
- make important logic easy to find
- keep changes local when possible
- reduce coupling where it matters
- protect critical business rules
- make debugging less painful
- support safe iteration
- avoid unnecessary ceremony
Workflow
- Identify the real business complexity.
- Decide what deserves strong boundaries.
- Keep the default structure simple.
- Add layers only when they remove real pain.
- Separate core business logic from framework and integration noise.