dotnet-development

dotnet-development is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 24 tokens per session (551 once invoked), scanned A, original, Apache-2.0.

A development guide for modern C# and .NET applications, including web APIs, dependency injection, asynchronous code, and automated tests. .NET is Microsoft's application platform, and C# is its main programming language.

In plain words
What is it for?
Use it to build .NET services and APIs, structure configuration and middleware, write unit and integration tests, and connect to real test infrastructure.
Why use it?
It provides consistent application patterns and helps avoid common problems with null values, service dependencies, asynchronous work, and testing.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jxoesneon/ciel/dotnet-development
Any agent
npx skills add jxoesneon/Ciel --skill dotnet-development
Clone the repo
git clone --depth 1 https://github.com/jxoesneon/Ciel

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dotnet-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/dotnet-development.svg)](https://agentmods.dev/skills/jxoesneon/ciel/dotnet-development)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/dotnet-development"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/dotnet-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 551 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00024 $0.00551
Opus 5 $0.00012 $0.00275
Sonnet 5 $0.00005 $0.00110
Haiku 4.5 $0.00002 $0.00055

Measured yesterday against content hash af08efc46c3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dotnet-development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/dotnet-development/SKILL.md · 52 lines

What it actually says

CIEL ADAPTATION: .NET Development (Modern & Typed)

This skill formalizes the development of robust C# applications using .NET 8+. it prioritizes immutability, explicit DI, and async efficiency.

Idiomatic Standards

  1. Immutability First: Use public sealed record for all DTOs and Value Objects. Use init setters for optional properties.
  2. Explicit Nullability: Enable <Nullable>enable</Nullable>. Use ? for optional types.
  3. Async Efficiency: Use await all the way down. ALWAYS pass CancellationToken to async I/O calls.
  4. DI Discipline: Depend on abstractions (IInterface). Prohibit manual new Service() in business logic.

ASP.NET Core Patterns

  • Minimal APIs: Use MapGroup to organize routes. Use TypedResults for unit-testable responses.
  • Options Pattern: Map config sections to sealed class options. Inject via IOptions<T>.
  • Middleware: Use for cross-cutting concerns (Logging, Auth, Performance).

TDD & Verification

  • Framework: xUnit + FluentAssertions.
  • Mocking: Use NSubstitute for clean, interface-based mocking.
  • Integration: Use WebApplicationFactory and Testcontainers for real infrastructure testing (SQL, Redis).
  • Gate: Run dotnet test with 80% coverage check.

Anti-Patterns

  • Async Void: Using async void except for top-level event handlers.
  • Blocking on Async: Using .Result or .Wait() (causes deadlocks).
  • Fat Controllers: Putting business logic in API controllers instead of Services or MediatR handlers.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 52 lines · 24 tokens per session scan A af08efc46c3d

Subscribe to this mod's changes

dotnet-development is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 24 tokens to every session and 551 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

unity-vrc-udon-sharp

UdonSharp scripting skill for VRChat SDK 3.10.5 (active and verified target). Use when writing, reviewing, debugging, or migrating UdonSharp C# and UdonBehaviour code. Positive triggers include UdonSharp, NetworkCallable, NetworkCalling, CallingPlayer, Udon network authorization, synced runtime state, a local public…

niaka3dayo/agent-skills-vrc-udon · 184 tokens

neo4j-driver-dotnet-skill

Neo4j .NET Driver v6 — IDriver lifecycle, DI registration (singleton), ExecutableQuery fluent API, ExecuteReadAsync/ExecuteWriteAsync managed transactions, IResultCursor (FetchAsync/ ToListAsync), record value access (.Get /As ), null safety, UNWIND batching, temporal types, await using, EagerResult, object mapping…

neo4j-contrib/neo4j-skills · 187 tokens

azure-resource-manager-mysql-dotnet

Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments.

tmolavi/mcp-agent-skills-hub · 27 tokens

weekly-review-coach

Friday weekly retrospective coach and OKR check-in. Three sections: retro (what went well / what didn't / surprises), OKR check-in (red/yellow/green per KR with blockers), next-week plan (top 3 priorities + reasoning). Loads last week's review for continuity. Triggers on: weekly review, friday retro, OKR check-in…

Xipher-Labs/walter-os · 80 tokens

avalonia-viewmodels-zafiro

Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.

agent-skills-hub/agent-skills-hub · 26 tokens

csharp-pro

Write modern C# code with advanced features like records, pattern matching, and async/await. Optimizes .NET applications, implements enterprise patterns, and ensures comprehensive testing. Use PROACTIVELY for C# refactoring, performance optimization, or complex .NET solutions.

agent-skills-hub/agent-skills-hub · 58 tokens