What problem does it solve? Manually writing repetitive CRUD code for ASP.NET Core applications — Razor Pages, Blazor components, MVC controllers, and Minimal API endpoints — is time-consuming and error-prone, especially when matching existing UI conventions and wiring up Entity Framework Core correctly. ## Core Features & Use Cases - Multi-Framework Scaffolding: Generates Razor Pages, Blazor components, MVC controllers with views, and Minimal API endpoints without relying on CLI scaffolding tools. - EF Core Integration: Creates or reuses DbContext classes, registers providers, and manages the full migration lifecycle (add migration, update database). - Convention Matching: Inspects existing layouts, CSS frameworks (Bootstrap, Tailwind), and coding patterns so generated UI blends into the project. - Use Case: You have a Product model in an ASP.NET Core project and need full CRUD Razor Pages with a new SQLite-backed DbContext, including CRUD for the parent Category entity, plus verified migrations and a clean build. ## Quick Start Ask the agent to scaffold Razor Pages with CRUD for your model in the target project, specifying the model namespace, the .csproj path, the DbContext name, and the database provider to use.