aspnet-core
Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on…
Use Metalint in .NET repositories that ship Node-based frontend assets and want one CLI entrypoint over several underlying linters. USE FOR: unified frontend lint commands; combined ESLint, Stylelint, HTMLHint, or similar checks; CI orchestration over multiple frontend linters.
$ npx -y skills add managedcode/dotnet-skills --skill metalint --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/metalintContext preview
The summary Claude sees to decide when to auto-load this skill.
Use Metalint in .NET repositories that ship Node-based frontend assets and want one CLI entrypoint over several underlying linters. USE FOR: unified frontend lint commands; combined ESLint, Stylelint, HTMLHint, or similar checks; CI orchestration over multiple frontend linters.
name: metalint description: "Use Metalint in .NET repositories that ship Node-based frontend assets and want one CLI entrypoint over several underlying linters. USE FOR: unified frontend lint commands; combined ESLint, Stylelint, HTMLHint, or similar checks; CI orchestration over multiple frontend linters. DO NOT USE FOR: simple repos where Biome already covers the required surface; teams that have not decided which underlying linters own each file type. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made." compatibility: "Requires a .NET repository with a Node-based frontend and multiple underlying linters; Metalint is an orchestrator, not a replacement for the actual linter configs it delegates to."
1. Define underlying ownership first:
2. Use Metalint only after those owners are explicit. 3. Keep all wrapper configuration under `.metalint/` and keep the delegated configs reviewable. 4. Add package scripts such as:
5. Treat formatter overlap carefully. If delegated tools can all fix files, define which ones are allowed to mutate which globs. 6. Use Metalint in CI when the repo benefits from a single frontend lint step and formatter output such as GitHub annotations. 7. Re-run the underlying owners directly when debugging Metalint issues so failures stay attributable.
1. Detect current state:
2. Prefer a repo-local install:
3. Install the delegated linters the repo actually needs; Metalint does not replace them. 4. Create `.metalint/metalint.config.js` plus delegated config files under `.metalint/` only when the repo wants that consolidated layout. 5. Verify with:
6. Return `status: configured` if the repo now has a working aggregated entrypoint, or `status: improved` if orchestration was tightened. 7. Return `status: not_applicable` when the repo intentionally stays with direct linter commands and does not want the wrapper layer.
1. Plan: analyze current state, target outcome, constraints, and risks. 2. Execute one step and produce a concrete delta. 3. Review the result and capture findings. 4. Apply fixes in small batches and rerun checks. 5. Update the plan after each iteration. 6. Repeat until outcomes are acceptable. 7. If a dependency is missing, bootstrap it or return `status: not_applicable` with a reason.
Stop explaining .NET to your AI. Start building. We've all been there: asking Claude to use Entity Framework, only to get EF6 patterns in a .NET 8 project. Explaining to Copilot that Blazor Server and Blazor WebAssembly aren't the same thing.
Repo: managedcode/dotnet-skills
Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on…
Build, upgrade, and operate Aspire 13.5.x C# or TypeScript application hosts with the current CLI, AppHost, ServiceDefaults, integrations, dashboard, testing,…
Build, review, or migrate Azure Functions in .NET with correct execution model, isolated worker setup, bindings, DI, and Durable Functions patterns. USE FOR:…
Build and review Blazor applications across server, WebAssembly, web app, and hybrid scenarios with correct component design, state flow, rendering, and…
Maintain or migrate EF6-based applications with realistic guidance on what to keep, what to modernize, and when EF Core is or is not the right next step. USE…
Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET…