What problem does it solve? Building modern .NET backend services requires coordinating many patterns—minimal APIs, clean architecture layering, EF Core data access, JWT authentication, and cloud-native deployment—and getting them wrong leads to tangled, insecure, or untestable code. ## Core Features & Use Cases - Clean Architecture & CQRS: Generates layered solutions (Domain, Application, Infrastructure, WebApi) with MediatR commands, queries, FluentValidation, and pipeline behaviors. - Minimal APIs & Authentication: Implements typed endpoints with route groups, filters, JWT bearer authentication, authorization policies, and password hashing. - Data & Cloud-Native: Provides EF Core DbContext configurations, migrations, query optimization, Dockerfiles, health checks, Kubernetes manifests, and OpenTelemetry observability. - Use Case: Ask it to scaffold a products API with JWT login, and it produces the solution structure, MediatR handlers, EF Core context, secured endpoints, and integration tests. ## Quick Start Ask the assistant to build a .NET 8 minimal API with clean architecture, EF Core persistence, and JWT authentication for your domain model.