What problem does it solve? Choosing the right Blazor render mode and scaffolding options is confusing, and picking the wrong one leads to rework. This Skill guides requirements gathering, selects the appropriate interactivity level, and runs the correct dotnet new blazor command. ## Core Features & Use Cases - Render Mode Decision Guidance: Maps app requirements (interactivity, latency, offline support) to Static SSR, Interactive Server, WebAssembly, or Auto modes with per-page or global scope. - Scaffolding Commands: Provides exact dotnet new blazor commands for every mode combination, including authentication via -au Individual. - Project Structure & AGENTS.md Setup: Explains the generated single-project and two-project layouts, Program.cs wiring, and creates a mode-specific AGENTS.md from templates. - Use Case: A developer wants to build an internal dashboard with real-time updates. The Skill recommends Interactive Server per-page, scaffolds the project, verifies the build, and sets up AGENTS.md. ## Quick Start Ask the agent to create a new Blazor web app called MyApp with Interactive Server rendering and individual account authentication.