feature-architecture
Installation
SKILL.md
Feature Architecture
Layer Overview
┌─────────────────────────────────────────┐
│ Pages (src/app/) │ Route handlers, layouts
├─────────────────────────────────────────┤
│ Components (features/*/components/) │ UI elements
├─────────────────────────────────────────┤
│ Server Actions (features/*/usecases/) │ API layer
├─────────────────────────────────────────┤
│ Services (features/*/<name>-service) │ Business logic
├─────────────────────────────────────────┤
│ DAL (features/*/dal/) │ Database access
├─────────────────────────────────────────┤
│ Model (features/*/model/) │ Schemas, types
└─────────────────────────────────────────┘