Open Source

.NET Skills
for Modern Coding Platforms

Stop re-explaining .NET in every tool. Install the same skill catalog for Claude Code, GitHub Copilot, Gemini, and Codex.

63
Skills
4
Platforms
13
Categories

Why dotnet-skills?

We've all been there: asking Claude Code to use Entity Framework, only to get EF6 patterns in a .NET 8 project. Explaining to GitHub Copilot that Blazor Server and Blazor WebAssembly aren't the same thing. This catalog fixes that.

🎯

Modern Patterns

Skills are maintained by the community and track official Microsoft documentation. No more outdated advice.

🔄

Works Across Platforms

Same skills for Claude Code, GitHub Copilot, Gemini, and Codex. Install once, use across your coding workflow.

👥

Community Driven

Missing a skill for your favorite library? Add it and help everyone. Open source and welcoming contributions.

Quick Start

Install the CLI once, inspect the catalog, and add only the skills your platform actually needs.

Primary flow

Install, browse, and add the exact skills you want

This is the fastest path when you already know the frameworks or libraries you want your coding platform to handle.

1

Install the CLI

One command and the catalog is ready to use on your machine.

Install CLI
dotnet tool install --global dotnet-skills
2

Browse the catalog

See what is already installed and explore the remaining categories.

Browse skills
dotnet skills list
3

Install what matches your stack

Add the exact skills you want your coding platform to use, using short aliases.

Install skills
dotnet skills install aspire blazor
Alternative path

Want the tool to scan your repo first?

dotnet skills recommend inspects local .csproj files, proposes a skill list, and lets you decide whether to run the suggested install command.

Get recommendations
dotnet skills recommend
Need-to-know

CLI Commands

Command Description
dotnet skills list Show installed and available skills with quick follow-up commands
dotnet skills list --local Show only installed skills in the current target
dotnet skills recommend Scan local .csproj files and suggest relevant skills
dotnet skills install <skill...> Install one or more skills (use short names like "aspire", "blazor")
dotnet skills remove [skill...] Remove installed skills, or use --all to clear all
dotnet skills update [skill...] Update installed skills to the latest catalog version
dotnet skills sync Download the latest skill catalog
dotnet skills where Show install paths for each supported platform
dotnet skills install blazor --agent claude Install for a specific platform

Skill Catalog

Browse and search through all available .NET skills

.NET Router Skill v1.0.0

Primary router skill for broad .NET work. Classify the repo by app model and cross-cutting concern first, then switch to the narrowest matching .NET skill instead of staying at a generic layer.

.NET Analyzer Configuration v1.0.0

Use a repo-root `.editorconfig` to configure free .NET analyzer and style rules. Use when a .NET repo needs rule severity, code-style options, section layout, or analyzer ownership made explicit. Nested `.editorconfig` files are allowed when they serve a clear subtree-specific purpose.

.NET Architecture v1.0.0

Design or review .NET solution architecture across modular monoliths, clean architecture, vertical slices, microservices, DDD, CQRS, and cloud-native boundaries without over-engineering.

ArchUnitNET for .NET v1.0.0

Use the open-source free `ArchUnitNET` library for architecture rules in .NET tests. Use when a repo needs richer architecture assertions than lightweight fluent rule libraries usually provide.

.NET Aspire v1.0.0

Use .NET Aspire to orchestrate distributed .NET applications locally with service discovery, telemetry, dashboards, and cloud-ready composition for cloud-native development.

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.

Azure Functions for .NET v1.0.0

Build, review, or migrate Azure Functions in .NET with correct execution model, isolated worker setup, bindings, DI, and Durable Functions patterns.

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.

CLOC for .NET Repositories v1.0.0

Use the open-source free `cloc` tool for line-count, language-mix, and diff statistics in .NET repositories. Use when a repo needs C# and solution footprint metrics, branch-to-branch LOC comparison, or repeatable code-size reporting in local workflows and CI.

.NET Code Analysis v1.0.0

Use the free built-in .NET SDK analyzers and analysis levels. Use when a .NET repo needs first-party code analysis, `EnableNETAnalyzers`, `AnalysisLevel`, or warning policy wired into build and CI.

.NET Code Review v1.0.0

Review .NET changes for bugs, regressions, architectural drift, missing tests, incorrect async or disposal behavior, and platform-specific pitfalls before you approve or merge them.

CodeQL for .NET v1.0.0

Use the open-source CodeQL ecosystem for .NET security analysis. Use when a repo needs CodeQL query packs, CLI-based analysis on open source codebases, or GitHub Action setup with explicit licensing caveats for private repositories.

.NET Complexity Review v1.0.0

Use free built-in .NET maintainability analyzers and code metrics configuration to find overly complex methods and coupled code. Use when a repo needs cyclomatic complexity checks, maintainability thresholds, or complexity-driven refactoring gates.

Coverlet for .NET v1.0.0

Use the open-source free `coverlet` toolchain for .NET code coverage. Use when a repo needs line and branch coverage, collector versus MSBuild driver selection, or CI-safe coverage commands.

CSharpier for .NET v1.0.0

Use the open-source free `CSharpier` formatter for C# and XML. Use when a .NET repo intentionally wants one opinionated formatter instead of a highly configurable `dotnet format`-driven style model.

Entity Framework Core v1.0.0

Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET applications.

Entity Framework 6 v1.0.0

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.

dotnet format v1.0.0

Use the free first-party `dotnet format` CLI for .NET formatting and analyzer fixes. Use when a .NET repo needs formatting commands, `--verify-no-changes` CI checks, or `.editorconfig`-driven code style enforcement.

gRPC for .NET v1.0.0

Build or review gRPC services and clients in .NET with correct contract-first design, streaming behavior, transport assumptions, and backend service integration.

Legacy ASP.NET v1.0.0

Maintain classic ASP.NET applications on .NET Framework, including Web Forms, older MVC, and legacy hosting patterns, while planning realistic modernization boundaries.

LibVLC Skill v1.0.0

Expert knowledge of the libvlc C API (3.x and 4.x), the multimedia framework behind VLC media player. Use when helping with LibVLC or LibVLCSharp for media playback, streaming, or transcoding.

ManagedCode.Communication v1.0.0

Use ManagedCode.Communication when a .NET application needs explicit result objects, structured errors, and predictable service or API boundaries instead of exception-driven control flow.

ManagedCode.MarkItDown v1.0.0

Use ManagedCode.MarkItDown when a .NET application needs deterministic document-to-Markdown conversion for ingestion, indexing, summarization, or content-processing workflows.

ManagedCode.MimeTypes v1.0.0

Use ManagedCode.MimeTypes when a .NET application needs consistent MIME type detection, extension mapping, and content-type decisions for uploads, downloads, or HTTP responses.

ManagedCode.Orleans.Graph v1.0.0

Use ManagedCode.Orleans.Graph when a distributed .NET application models graph-oriented relationships or traversal logic on top of Orleans grains and graph-aware integration patterns.

ManagedCode.Orleans.SignalR v1.0.0

Use ManagedCode.Orleans.SignalR when a distributed .NET application needs Orleans-based coordination of SignalR real-time messaging, hub delivery, and grain-driven push flows.

ManagedCode.Storage v1.0.0

Use ManagedCode.Storage when a .NET application needs a provider-agnostic storage abstraction with explicit configuration, container selection, upload and download flows, and backend-specific integration kept behind one library contract.

.NET MAUI v1.0.0

Build, review, or migrate .NET MAUI applications across Android, iOS, macOS, and Windows with correct cross-platform UI, platform integration, and native packaging assumptions.

Model Context Protocol (MCP) for .NET v1.0.0

Implement Model Context Protocol (MCP) servers and clients in .NET to enable secure, standardized communication between LLM applications and external tools or data sources.

Meziantou.Analyzer v1.0.0

Use the open-source free `Meziantou.Analyzer` package for design, usage, security, performance, and style rules in .NET. Use when a repo wants broader analyzer coverage with a single NuGet package.

Microsoft Agent Framework v1.0.0

Build agentic .NET applications with Microsoft Agent Framework using modern agent orchestration, provider abstractions, telemetry, and enterprise integration patterns.

Microsoft.Extensions for .NET v1.0.0

Use the Microsoft.Extensions stack correctly across Generic Host, dependency injection, configuration, logging, options, HttpClientFactory, and other shared infrastructure patterns.

Microsoft.Extensions.AI v1.0.0

Use Microsoft.Extensions.AI abstractions such as `IChatClient` and embeddings cleanly in .NET applications, libraries, and provider integrations.

Minimal APIs v1.0.0

Design and implement Minimal APIs in ASP.NET Core using handler-first endpoints, route groups, filters, and lightweight composition suited to modern .NET services.

Mixed Reality with .NET v1.0.0

Work on C# and .NET-adjacent mixed-reality solutions around HoloLens, MRTK, OpenXR, Azure services, and integration boundaries where .NET participates in the stack.

ML.NET v1.0.0

Use ML.NET to train, evaluate, or integrate machine-learning models into .NET applications with realistic data preparation, inference, and deployment expectations.

Modern C# for .NET v1.0.0

Write modern, version-aware C# for .NET repositories. Use when choosing language features across C# versions, especially C# 13 and C# 14, while staying compatible with the repo's target framework and `LangVersion`.

MSTest v1.0.0

Write, run, or repair .NET tests that use MSTest. Use when a repo uses `MSTest.Sdk`, `MSTest`, `[TestClass]`, `[TestMethod]`, `DataRow`, or Microsoft.Testing.Platform-based MSTest execution.

MVVM Pattern for .NET v1.0.0

Implement the Model-View-ViewModel pattern in .NET applications with proper separation of concerns, data binding, commands, and testable ViewModels using MVVM Toolkit.

NetArchTest v1.0.0

Use the open-source free `NetArchTest.Rules` library for architecture rules in .NET unit tests. Use when a repo wants lightweight, fluent architecture assertions for namespaces, dependencies, or layering.

NUnit Testing v1.0.0

Write, run, or repair .NET tests that use NUnit. Use when a repo uses `NUnit`, `[Test]`, `[TestCase]`, `[TestFixture]`, or NUnit3TestAdapter for VSTest or Microsoft.Testing.Platform execution.

Microsoft Orleans v1.0.0

Build or review distributed .NET applications with Orleans grains, silos, streams, persistence, versioning, and cloud-native hosting patterns.

.NET Profiling v1.0.0

Use the free official .NET diagnostics CLI tools for profiling and runtime investigation in .NET repositories. Use when a repo needs CPU tracing, live counters, GC and allocation investigation, exception or contention tracing, heap snapshots, or startup diagnostics without GUI-only tooling.

.NET Project Setup v1.0.0

Create or reorganize .NET solutions with clean project boundaries, repeatable SDK settings, and a maintainable baseline for libraries, apps, tests, CI, and local development.

.NET Quality CI v1.0.0

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.

QuickDup for .NET v1.0.0

Use the open-source free `QuickDup` clone detector for .NET repositories. Use when a repo needs duplicate C# code discovery, structural clone detection, DRY refactoring candidates, or repeatable duplication scans in local workflows and CI.

ReportGenerator for .NET v1.0.0

Use the open-source free `ReportGenerator` tool for turning .NET coverage outputs into HTML, Markdown, Cobertura, badges, and merged reports. Use when raw coverage files are not readable enough for CI or human review.

ReSharper Command Line Tools v1.0.0

Use the free official JetBrains ReSharper Command Line Tools for .NET repositories. Use when a repo wants powerful `jb inspectcode` inspections, `jb cleanupcode` cleanup profiles, solution-level `.DotSettings` enforcement, or a stronger CLI quality gate for C# than the default SDK analyzers alone.

Roslynator v1.0.0

Use the open-source free `Roslynator` analyzer packages and optional CLI for .NET. Use when a repo wants broad C# static analysis, auto-fix flows, dead-code detection, optional CLI checks, or extra rules beyond the SDK analyzers.

Semantic Kernel for .NET v1.0.0

Build AI-enabled .NET applications with Semantic Kernel using services, plugins, prompts, and function-calling patterns that remain testable and maintainable.

SignalR v1.0.0

Implement or review SignalR hubs, streaming, reconnection, transport, and real-time delivery patterns in ASP.NET Core applications.

Stryker.NET v1.0.0

Use the open-source free `Stryker.NET` mutation testing tool for .NET. Use when a repo needs to measure whether tests actually catch faults, especially in critical libraries or domains.

StyleCop Analyzers v1.0.0

Use the open-source free `StyleCop.Analyzers` package for naming, layout, documentation, and style rules in .NET projects. Use when a repo wants stricter style conventions than the SDK analyzers alone provide.

TUnit v1.0.0

Write, run, or repair .NET tests that use TUnit. Use when a repo uses `TUnit`, `[Test]`, `[Arguments]`, source-generated test projects, or Microsoft.Testing.Platform-based execution.

Uno Platform v1.0.0

Build cross-platform .NET applications with Uno Platform targeting WebAssembly, iOS, Android, macOS, Linux, and Windows from a single XAML/C# codebase.

Windows Communication Foundation v1.0.0

Work on WCF services, clients, bindings, contracts, and migration decisions for SOAP and multi-transport service-oriented systems on .NET Framework or compatible stacks.

ASP.NET Core Web API v1.0.0

Build or maintain controller-based ASP.NET Core APIs when the project needs controller conventions, advanced model binding, validation extensions, OData, JsonPatch, or existing API patterns.

Windows Forms v1.0.0

Build, maintain, or modernize Windows Forms applications with practical guidance on designer-driven UI, event handling, data binding, and migration to modern .NET.

WinUI 3 and Windows App SDK v1.0.0

Build or review WinUI 3 applications with the Windows App SDK, modern Windows desktop patterns, packaging decisions, and interop boundaries with other .NET stacks.

.NET Worker Services v1.0.0

Build long-running .NET background services with `BackgroundService`, Generic Host, graceful shutdown, configuration, logging, and deployment patterns suited to workers and daemons.

Windows Workflow Foundation v1.0.0

Maintain or assess Workflow Foundation-based solutions on .NET Framework, especially where long-lived process logic or legacy designer artifacts still matter.

WPF v1.0.0

Build and modernize WPF applications on .NET with correct XAML, data binding, commands, threading, styling, and Windows desktop migration decisions.

xUnit.net v1.0.0

Write, run, or repair .NET tests that use xUnit. Use when a repo uses `xunit`, `xunit.v3`, `[Fact]`, `[Theory]`, or `xunit.runner.visualstudio`, and you need the right CLI, package, and runner guidance for xUnit on VSTest or Microsoft.Testing.Platform.

Supported Platforms

Install the same catalog into the coding platform your team already uses.

Anthropic
Claude Code

Uses Claude's native project and home-directory layouts, so installs stay where Claude Code expects them.

Global
~/.claude/agents/
Project
.claude/agents/
GitHub
GitHub Copilot

Targets Copilot skill folders directly, whether you want a personal install or a repo-local `.github/skills` setup.

Global
~/.copilot/skills/
Project
.github/skills/
Google
Gemini

Keeps Gemini installs aligned between your personal environment and repo-local `.gemini/skills` folders.

Global
~/.gemini/skills/
Project
.gemini/skills/
OpenAI
Codex

Matches Codex skill locations for both personal use and checked-in repo workflows without extra adapter steps.

Global
~/.codex/skills/
Project
.codex/skills/

Ready to get started?

Install the CLI and give your coding platform the .NET knowledge it needs.