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 mode (Static SSR, Interactive Server, WebAssembly, or Auto), and runs the correct dotnet new blazor command with matching options. ## Core Features & Use Cases - Render Mode Decision Guidance: Decision tables map app requirements (interactivity level, latency, offline support, deployment environment) to the right render mode and scope (per-page vs global). - Scaffolding Commands: Ready-to-use dotnet new blazor commands for every mode combination, including authentication via -au Individual. - Project Documentation Generation: Creates a project AGENTS.md from mode-specific templates in assets/agents-md/ so future work follows the correct architectural constraints. - Use Case: A developer asks to build a product catalog site with a live search feature. The Skill recommends Interactive Server per-page, scaffolds the project, and generates an AGENTS.md documenting where interactive components belong. ## Quick Start Ask the assistant to create a new Blazor web app for your project idea and let it choose the right render mode and scaffold the project.