What problem does it solve?
This Skill helps you avoid incorrect ASP.NET Core setup by guiding you to choose the right application model and wire up the host and request pipeline according to current official guidance.
Core Features & Use Cases
- App-model selection: Pick exactly the primary ASP.NET Core model (Blazor, Razor Pages, MVC, or Minimal APIs/controllers) that matches your UI and API needs.
- Host & pipeline construction: Structure Program.cs using the correct conventions for services, configuration, middleware, routing, logging, and static assets.
- Cross-cutting additions on demand: Apply security/identity, data-state/services, realtime/background work, and testing/operations only when the task requires them.
Example use case: you are starting a new ASP.NET Core project and want a clean, maintainable Program.cs with the correct DI, middleware order, and the right routing and endpoint patterns for the chosen UI or API style.
Quick Start
Create a new ASP.NET Core website for me using the appropriate application model and a correct host and request pipeline.