Use a repo-root `.editorconfig` to configure free .NET analyzer and style rules.
dotnet skills install analyzer-config
Set up or refine open-source .NET code-quality gates for CI: formatting, `.editorconfig`, SDK analyzers, third-party analyzers, coverage, mutation testing, architecture tests, and security scanning. Use when a .NET repo needs an explicit quality stack in `AGENTS.md`, docs, or pipeline YAML.
.editorconfig, dotnet format, and warning policy- repo-root .editorconfig - dotnet format --verify-no-changes - SDK analyzers with explicit EnableNETAnalyzers, AnalysisLevel, and warning policy
- StyleCopAnalyzers - Roslynator - Meziantou.Analyzer - framework analyzers such as xUnit, MSTest, or TUnit analyzers
- formatting and style - correctness and static analysis - coverage and reports - architecture rules - security scanning - mutation testing
- CA1502 thresholding - maintainability limits in AGENTS.md - architecture tests - coverage and mutation where risk justifies it
AGENTS.md and CI:- which command formats - which command analyzes - which command measures coverage - which runner model the tests use
- format - build - analyze - focused tests - broader tests - coverage and report generation when configured - extra configured gates only when the repo actually enabled them
- dotnet-format - dotnet-code-analysis - dotnet-analyzer-config - analyzer-pack skills such as dotnet-stylecop-analyzers, dotnet-roslynator, and dotnet-meziantou-analyzer - frontend asset quality skills in mixed .NET plus Node repos such as dotnet-eslint, dotnet-stylelint, dotnet-htmlhint, dotnet-webhint, dotnet-biome, dotnet-sonarjs, dotnet-metalint, and dotnet-chous - coverage/reporting skills such as dotnet-coverlet and dotnet-reportgenerator - architecture/security skills such as dotnet-netarchtest, dotnet-archunitnet, and dotnet-codeql
dotnet format..editorconfig is the default source of truth for per-rule severityreferences/editorconfig-and-ci.mdreferences/quality-toolchain.mdreferences/workflows.mdreferences/checklist.mdUse a repo-root `.editorconfig` to configure free .NET analyzer and style rules.
dotnet skills install analyzer-config
Use Biome in .NET repositories that ship Node-based frontend assets and want a fast combined formatter-linter-import organizer for JavaScript, TypeScript, CSS, JSON, GraphQL, or…
dotnet skills install biome
Use Chous in .NET repositories that ship sizeable frontend codebases and want file-structure linting, naming convention enforcement, and folder-layout policy as a CLI gate.
dotnet skills install chous
Build-focused orchestration agent for .NET restore, build, test, packaging, CI failures, diagnostics, and environment drift.
Also works: dotnet agents install build
Review orchestration agent for .NET changes across bugs, regressions, analyzers, architecture, tests, and maintainability.
Also works: dotnet agents install review