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 requirement gathering, selects the appropriate interactivity mode, and runs the correct dotnet new blazor command with matching project structure and configuration. ## Core Features & Use Cases - Render Mode Decision Guidance: Decision tables map app requirements (interactivity level, latency, offline support) to Static SSR, Interactive Server, WebAssembly, or Auto modes, per-page or global. - Scaffolding Commands: Provides exact dotnet new blazor commands for every mode combination, including authentication via -au Individual. - AGENTS.md Generation: Creates a project-level AGENTS.md from mode-specific templates in assets/agents-md/ so future AI agents understand the project's rendering configuration. - Use Case: A developer asks to create a new product catalog site with a live search feature. The Skill recommends Interactive Server per-page, scaffolds the project, verifies the build, and writes an AGENTS.md documenting the configuration. ## Quick Start Create a new Blazor web app called ShopFront with per-page Interactive Server rendering and set up its initial project structure.