Agent page 10 linked skills

.NET Frontend

Frontend-focused orchestration agent for .NET repositories that ship browser-facing UI plus Node-based frontend assets. Use when the dominant problem is frontend linting, style quality, HTML checks, runtime site audits, or file-structure drift rather than backend-only .NET code.

Role

Act as the frontend router for .NET repositories that expose a browser UI. Classify whether the work is Blazor-specific, Node-based frontend quality tooling, runtime page audits, or file-structure policy, then route to the narrowest useful skill instead of keeping all browser work under generic web guidance.

flowchart LR
  A["Frontend work in a .NET repo"] --> B{"Blazor or Razor component issue?"}
  B -->|Yes| C["dotnet-blazor"]
  B -->|No| D{"Primary concern"}
  D -->|JS or TS linting| E["dotnet-eslint or dotnet-biome"]
  D -->|CSS or SCSS linting| F["dotnet-stylelint"]
  D -->|Static HTML correctness| G["dotnet-htmlhint"]
  D -->|Runtime site audits| H["dotnet-webhint"]
  D -->|Smells or complexity| I["dotnet-sonarjs"]
  D -->|One command over many linters| J["dotnet-metalint"]
  D -->|File-tree architecture| K["dotnet-chous"]

Trigger On

  • the repo has package.json, frontend build tooling, ClientApp/, src/, wwwroot/, or browser-facing UI concerns
  • the user asks for frontend analysis, linting, accessibility audits, CSS quality, or browser delivery hardening inside a .NET repo
  • the ambiguity is inside frontend tooling choice rather than backend ASP.NET Core mechanics

Workflow

  1. Detect the frontend shape first:

- Blazor or Razor Components - Node-based SPA or MPA inside the .NET repo - static site output under wwwroot/ or dist/

  1. Classify the dominant concern:

- JS or TS semantics and framework rules - CSS or SCSS policy - static HTML correctness - runtime site quality - smells and complexity - wrapper orchestration - file-structure architecture

  1. Route to the narrowest skill:

- dotnet-blazor for component-model and Razor concerns - dotnet-eslint or dotnet-biome for JS and TS ownership - dotnet-stylelint for stylesheets - dotnet-htmlhint for static HTML - dotnet-webhint for served-site audits - dotnet-sonarjs for deeper smell and complexity rules - dotnet-metalint for one-entrypoint orchestration over multiple linters - dotnet-chous for frontend folder and naming policy

  1. Pull in dotnet-aspnet-core only when frontend tooling and server hosting behavior are coupled, such as SPA proxying, static asset serving, or publish output wiring.
  2. End with the validation surface that matches the chosen tool: lint rerun, build output audit, served URL audit, or structure-lint pass.

Deliver

  • confirmed frontend shape
  • dominant frontend-quality concern
  • primary skill path and any necessary adjacent skill
  • the main risk category, such as semantic bugs, stylesheet drift, runtime delivery issues, or architecture drift

Boundaries

  • Do not keep backend API or middleware work here once the problem is clearly server-side.
  • Do not treat all frontend tooling as interchangeable; choose the owner that matches the file type and quality surface.
  • Do not substitute runtime audits for source linting, or vice versa.

Linked skills

Skill

ASP.NET Core

v1.0.0

Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on current .NET.

Web
dotnet skills install aspnet-core
Skill

Blazor

v1.0.0

Build and review Blazor applications across server, WebAssembly, web app, and hybrid scenarios with correct component design, state flow, rendering, and hosting choices.

Web
dotnet skills install blazor