libs/product/
├── src/product/
│ ├── core/
│ │ └── product.clj ← Pure business logic
│ ├── shell/
│ │ ├── persistence.clj ← Database operations
│ │ ├── service.clj ← Service orchestration
│ │ ├── http.clj ← HTTP handlers
│ │ └── module-wiring.clj
│ ├── ports.clj ← Protocol definitions
│ └── schema.clj ← Malli validation schemas
├── test/product/
│ ├── core/product_test.clj ← Unit tests
│ ├── shell/service_test.clj ← Integration tests
│ └── shell/persistence_test.clj ← Contract tests
└── resources/boundary/product/
└── migrations/001-create-products.sql