dotnet-skills
v1.6.0Professional .NET development skills for Codex - covering C#, F#, Akka.NET, Aspire, testing frameworks, and specialized tools
By Aaron StannardLicense: MIT1.2k GitHub starsUpdated 6 days ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 22 skill or MCP entries
- Source updated
- Sep 17, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install dotnet-skills for Codex and Claude Code
codex plugin marketplace add Aaronontheweb/dotnet-skills
codex plugin marketplace upgrade dotnet-skills
codex plugin add dotnet-skills@dotnet-skillsPaste and run these commands in a terminal with Codex. They add and refresh the dotnet-skills catalog, then install this plugin.
Compatibility: the page URL and API slug “dotnet-skills” remain stable.
- Codex:
dotnet-skills@agent-plugin-marketplace→dotnet-skills@dotnet-skills
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/Aaronontheweb/dotnet-skillsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/akka-hosting-actor-patterns/SKILL.md├── skills/aot-trimming/SKILL.md├── skills/aspire-configuration/SKILL.md├── skills/aspire-integration-testing/SKILL.md├── skills/aspire-service-defaults/SKILL.md├── skills/crap-analysis/SKILL.md├── skills/csharp-concurrency-patterns/SKILL.md├── skills/csharp-nullable-reference-types/SKILL.md├── skills/database-performance/SKILL.md├── skills/dotnet-devcert-trust/SKILL.md├── skills/efcore-patterns/SKILL.md├── skills/ilspy-decompile/SKILL.md├── skills/marketplace-publishing/SKILL.md├── skills/microsoft-extensions-configuration/SKILL.md├── skills/mjml-email-templates/SKILL.md├── skills/package-management/SKILL.md├── skills/playwright-ci-caching/SKILL.md├── skills/r3-reactive-extensions/SKILL.md├── skills/serialization/SKILL.md├── skills/skills-index-snippets/SKILL.md├── skills/snapshot-testing/SKILL.md└── skills/verify-email-snapshots/SKILL.md
Included Skills22
Patterns for building entity actors with Akka.Hosting - GenericChildPerEntityParent, message extractors, cluster sharding abstraction, akka-reminders, and ITimeProvider. Supports both local testing and clustered production modes.
Guidelines for making .NET libraries and applications trimming-safe and Native AOT compatible. Covers the trimming/AOT model, the MSBuild properties that enable analysis (IsTrimmable, IsAotCompatible, PublishTrimmed, PublishAot), the trimming attributes (RequiresUnreferencedCode, RequiresDynamicCode, DynamicallyAccessedMembers, UnconditionalSuppressMessage), IL2xxx/IL3xxx warning codes, and a pattern playbook: source generators and UnsafeAccessor, generated-interception diagnostic suppressors, intentional runtime scanning boundaries, trimming-safe islands and feature switches, migration analyzers, and temporary warning-approval baselines. Use when introducing trimming/AOT support, resolving IL2xxx/IL3xxx warnings, or making reflection-heavy code trimming-safe in C# / .NET codebases. For System.Text.Json AOT scenarios, see also the serialization skill.
Configure Aspire AppHost to emit explicit app config via environment variables; keep app code free of Aspire clients and service discovery.
Write integration tests using .NET Aspire's testing facilities with xUnit. Covers test fixtures, distributed application setup, endpoint discovery, and patterns for testing ASP.NET Core apps with real dependencies.
Create a shared ServiceDefaults project for Aspire applications. Centralizes OpenTelemetry, health checks, resilience, and service discovery configuration across all services.
Analyze code coverage and CRAP (Change Risk Anti-Patterns) scores to identify high-risk code. Use OpenCover format with ReportGenerator for Risk Hotspots showing cyclomatic complexity and untested code paths.
Choosing the right concurrency abstraction in .NET - from async/await for I/O to Channels for producer/consumer to Akka.NET for stateful entity management. Avoid locks and manual synchronization unless absolutely necessary.
Guidelines for introducing and using nullable reference types (NRT) and System.Diagnostics.CodeAnalysis nullable attributes in C# / .NET codebases. Covers the nullability model, flow analysis, the null-forgiving operator, API design rules, the full attribute catalog (AllowNull, DisallowNull, MaybeNull, NotNull, NotNullWhen, MaybeNullWhen, NotNullIfNotNull, MemberNotNull, MemberNotNullWhen, DoesNotReturn, DoesNotReturnIf), the C# 14 field keyword, incremental migration of legacy codebases, and a code-generation checklist.
Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper.
Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.
Entity Framework Core best practices including NoTracking by default, query splitting for navigation collections, migration management, dedicated migration services, and common pitfalls to avoid.
Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.
Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.
Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management.
Build responsive email templates using MJML markup language. Compiles to cross-client HTML that works in Outlook, Gmail, and Apple Mail. Includes template renderer, layout patterns, and variable substitution.
Manage NuGet packages using Central Package Management (CPM) and dotnet CLI commands. Never edit XML directly - use dotnet add/remove/list commands. Use shared version variables for related packages.
Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build.
Build reactive/event-driven C# with R3 (Cysharp's modern reimplementation of Reactive Extensions). Covers the Observable<T>/Observer<T> model, the OnErrorResume error contract, async dispatch with AwaitOperation, Task/IAsyncEnumerable integration, TimeProvider/FrameProvider scheduling, the concurrency contract, and how R3 differs from System.Reactive (Rx.NET).
Choose the right serialization format for .NET applications. Prefer schema-based formats (Protobuf, MessagePack) over reflection-based (Newtonsoft.Json). Use System.Text.Json with AOT source generators for JSON scenarios.
Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes).
Use Verify for snapshot testing in .NET. Approve API surfaces, HTTP responses, rendered emails, and serialized outputs. Detect unintended changes through human-reviewed baseline files.
Snapshot test email templates using Verify to catch regressions. Validates rendered HTML output matches approved baseline. Works with MJML templates and any email renderer.
Plugin manifests2
{
"name": "dotnet-skills",
"version": "1.6.0",
"description": "Professional .NET development skills for Codex - covering C#, F#, Akka.NET, Aspire, testing frameworks, and specialized tools",
"author": {
"name": "Aaron Stannard",
"url": "https://github.com/Aaronontheweb"
},
"repository": "https://github.com/Aaronontheweb/dotnet-skills",
"license": "MIT",
"keywords": [
"dotnet",
"csharp",
"akka-net",
"aspire",
"testing",
"efcore",
"codex"
],
"skills": "./skills/",
"interface": {
"displayName": ".NET Skills",
"shortDescription": "Professional .NET development skills for C#, Akka.NET, Aspire, and testing",
"longDescription": "Battle-tested .NET development patterns from production systems: modern C# coding standards, Akka.NET distributed systems, Aspire cloud-native orchestration, EF Core, testing frameworks, and performance optimization.",
"developerName": "Aaron Stannard",
"category": "Productivity",
"capabilities": []
}
}{
"name": "dotnet-skills",
"version": "1.6.0",
"description": "Comprehensive .NET development skills and agents for Claude Code - covering C#, F#, Akka.NET, Aspire, testing frameworks, and specialized tools",
"author": {
"name": "Aaron Stannard",
"url": "https://github.com/Aaronontheweb"
},
"repository": "https://github.com/Aaronontheweb/dotnet-skills",
"skills": [
"./skills/akka-best-practices",
"./skills/akka-testing-patterns",
"./skills/akka-hosting-actor-patterns",
"./skills/akka-aspire-configuration",
"./skills/akka-management",
"./skills/aspire-integration-testing",
"./skills/aspire-configuration",
"./skills/aspire-service-defaults",
"./skills/aspire-mailpit-integration",
"./skills/mjml-email-templates",
"./skills/csharp-coding-standards",
"./skills/csharp-concurrency-patterns",
"./skills/csharp-nullable-reference-types",
"./skills/csharp-api-design",
"./skills/csharp-type-design-performance",
"./skills/r3-reactive-extensions",
"./skills/efcore-patterns",
"./skills/database-performance",
"./skills/project-structure",
"./skills/local-tools",
"./skills/slopwatch",
"./skills/package-management",
"./skills/serialization",
"./skills/microsoft-extensions-configuration",
"./skills/microsoft-extensions-dependency-injection",
"./skills/testcontainers",
"./skills/playwright-blazor",
"./skills/crap-analysis",
"./skills/snapshot-testing",
"./skills/verify-email-snapshots",
"./skills/playwright-ci-caching",
"./skills/marketplace-publishing",
"./skills/skills-index-snippets",
"./skills/dotnet-devcert-trust",
"./skills/ilspy-decompile",
"./skills/opentelementry-dotnet-instrumentation",
"./skills/aot-trimming"
],
"agents": [
"./agents/akka-net-specialist.md",
"./agents/docfx-specialist.md",
"./agents/dotnet-benchmark-designer.md",
"./agents/dotnet-concurrency-specialist.md",
"./agents/dotnet-performance-analyst.md",
"./agents/roslyn-incremental-generator-specialist.md"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[dotnet-skills on Agent Plugins Marketplace](https://pluginsmp.com/plugins/dotnet-skills)