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.
npx agentmods add skills/jxoesneon/ciel/dotnet-developmentnpx skills add jxoesneon/Ciel --skill dotnet-developmentgit clone --depth 1 https://github.com/jxoesneon/CielWrote 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.
[](https://agentmods.dev/skills/jxoesneon/ciel/dotnet-development)<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>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.
| Model | Per session | Once 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 |
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.
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
- Immutability First: Use
public sealed recordfor all DTOs and Value Objects. Useinitsetters for optional properties. - Explicit Nullability: Enable
<Nullable>enable</Nullable>. Use?for optional types. - Async Efficiency: Use
awaitall the way down. ALWAYS passCancellationTokento async I/O calls. - DI Discipline: Depend on abstractions (
IInterface). Prohibit manualnew Service()in business logic.
ASP.NET Core Patterns
- Minimal APIs: Use
MapGroupto organize routes. UseTypedResultsfor unit-testable responses. - Options Pattern: Map config sections to
sealed classoptions. Inject viaIOptions<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 testwith 80% coverage check.
Anti-Patterns
- Async Void: Using
async voidexcept for top-level event handlers. - Blocking on Async: Using
.Resultor.Wait()(causes deadlocks). - Fat Controllers: Putting business logic in API controllers instead of Services or MediatR handlers.
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.
- yesterday First seen · 52 lines · 24 tokens per session scan A af08efc46c3d
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.
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…
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…
azure-resource-manager-mysql-dotnet
Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments.
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…
avalonia-viewmodels-zafiro
Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.
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.