# Epic 1: Core Kernel & Infrastructure ## Overview Extend DI container to support all core services, implement database layer with Ent ORM, build health monitoring and metrics system, create error handling and error bus, establish HTTP server with comprehensive middleware stack, and integrate OpenTelemetry for distributed tracing. ## Stories ### 1.1 Enhanced Dependency Injection Container - [Story: 1.1 - Enhanced DI Container](./1.1-enhanced-di-container.md) - **Goal:** Extend the DI container to provide all core infrastructure services with proper lifecycle management. - **Deliverables:** Extended DI container, provider functions for all services, core module export ### 1.2 Database Layer with Ent ORM - [Story: 1.2 - Database Layer](./1.2-database-layer.md) - **Goal:** Set up a complete database layer using Ent ORM with core domain entities, migrations, and connection management. - **Deliverables:** Ent schema, core entities, database client, migrations, connection pooling ### 1.3 Health Monitoring and Metrics System - [Story: 1.3 - Health & Metrics](./1.3-health-metrics-system.md) - **Goal:** Implement comprehensive health checks and Prometheus metrics for monitoring platform health and performance. - **Deliverables:** Health check system, Prometheus metrics, health endpoints, metrics endpoint ### 1.4 Error Handling and Error Bus - [Story: 1.4 - Error Handling](./1.4-error-handling.md) - **Goal:** Implement centralized error handling with an error bus that captures, logs, and optionally reports all application errors. - **Deliverables:** Error bus interface, channel-based implementation, panic recovery middleware ### 1.5 HTTP Server Foundation with Middleware Stack - [Story: 1.5 - HTTP Server](./1.5-http-server.md) - **Goal:** Create a production-ready HTTP server with comprehensive middleware for security, observability, and error handling. - **Deliverables:** HTTP server, comprehensive middleware stack, core routes, FX lifecycle integration ### 1.6 OpenTelemetry Distributed Tracing - [Story: 1.6 - OpenTelemetry](./1.6-opentelemetry.md) - **Goal:** Integrate OpenTelemetry for distributed tracing across the platform to enable observability in production. - **Deliverables:** OpenTelemetry setup, HTTP instrumentation, database instrumentation, trace-log correlation ## Deliverables Checklist - [x] DI container with all core services - [x] Database client with Ent schema - [x] Health and metrics endpoints functional - [x] Error bus captures and logs errors - [x] HTTP server with middleware stack - [x] Basic observability with OpenTelemetry ## Acceptance Criteria - `GET /healthz` returns 200 - `GET /ready` checks DB connectivity - `GET /metrics` exposes Prometheus metrics - Panic recovery logs errors via error bus - Database migrations run on startup - HTTP requests are traced with OpenTelemetry ## Implementation Summary - [Implementation Summary and Verification Instructions](./SUMMARY.md) - Complete guide on how to verify all Epic 1 functionality, including database testing and Docker Compose setup