What problem does it solve?
Manually writing CRUD pages, controllers, and API endpoints for ASP.NET Core applications is repetitive and error-prone, especially when the generated code must match an existing project's CSS framework, layout conventions, and Entity Framework Core data model.
Core Features & Use Cases
- Multi-pattern scaffolding: Generates Razor Pages, Blazor components, MVC controllers with views, and Minimal API endpoints without invoking CLI scaffolding tools.
- EF Core integration: Creates or reuses DbContext classes, registers providers, and runs migrations for full database-backed CRUD workflows.
- Convention matching: Inspects existing layouts, CSS frameworks (Bootstrap, Tailwind), and coding patterns so generated UI blends into the project.
- Use Case: Ask the agent to scaffold Razor Pages with CRUD for a Product model backed by SQLite, and it generates the pages, DbContext, migration, and verifies the build end to end.
Quick Start
Ask the agent to scaffold CRUD Razor Pages for a model class in your ASP.NET Core project, specifying the .csproj path, DbContext name, and database provider.