skills/smithery.ai/blazor-frontend

blazor-frontend

Installation
SKILL.md

Blazor Frontend Development Standards

Core Requirements

  • MUST use dual-file component structure (.razor + .razor.cs code-behind)
  • MUST NOT use @code blocks in .razor files
  • MUST use public partial class ComponentName : ComponentBase
  • MUST follow PascalCase for component and method names
  • MUST use [Inject] attribute for dependency injection

File Organization

.razor File Contains

  • HTML markup and Razor syntax (@if, @foreach, etc.)
  • Component references and structure
  • CSS classes and styling references
  • Razor comments (@* ... *@) for component summaries
Installs
1
First Seen
Apr 9, 2026
blazor-frontend from smithery.ai