exec-csharp

A set of C# and .NET coding rules for projects that use Microsoft’s C# programming language and .NET platform.

In plain words
What is it for?
Guiding C# code changes involving nullable values, asynchronous methods, dependency injection, configuration, collections, exceptions, and resource cleanup.
Why use it?
It helps agents produce code that matches common .NET practices, handles asynchronous work and errors correctly, and avoids unsafe null or resource handling.

Skill for Claude CodeCodex

Part of the codex-flow plugin — 55 skills, 1 command, 1 MCP server shipped together

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/anhnguyen0905/codex-mcp/exec-csharp
Any agent
npx skills add anhnguyen0905/codex-mcp --skill exec-csharp
Clone the repo
git clone --depth 1 https://github.com/anhnguyen0905/codex-mcp

Made for: Claude Code, Codex.

Or install codex-flow, the plugin that ships this one along with the rest of its 55 skills, 1 command, 1 MCP server.

Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 379 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.00037 $0.00379
Opus 5 $0.00018 $0.00189
Sonnet 5 $0.00007 $0.00076
Haiku 4.5 $0.00004 $0.00038

Measured 2d ago against content hash 6ec8a600c0cb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

exec-csharp 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 2d ago.

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/exec-csharp/SKILL.md · 27 lines

What it actually says

C# / .NET Idioms (embed when project is C#)

C#/.NET standards:
- Nullable reference types: honor the project's <Nullable> setting; no ! null-forgiving to silence
  warnings — narrow or guard instead. Validate args with ArgumentNullException.ThrowIfNull at boundaries.
- Async: async all the way — no .Result/.Wait()/.GetAwaiter().GetResult() (deadlock risk); pass and
  honor CancellationToken through call chains; ConfigureAwait(false) in library code; return Task,
  never async void except event handlers.
- Errors: throw specific exceptions with context; catch the narrowest type you can handle; never
  swallow; use try/finally or using/await using for IDisposable/IAsyncDisposable resources.
- Immutability: prefer records and init-only setters for DTOs; expose IReadOnlyList/IReadOnlyDictionary,
  not mutable collections; readonly fields where possible.
- Idioms: LINQ over manual loops when clearer; pattern matching and switch expressions; string
  interpolation over concatenation; var when the type is obvious. Dispose enumerators/streams.
- DI & config: constructor injection via the built-in container; bind config with IOptions<T>; no
  service-locator or static state for dependencies. Follow the project's layering.
- Follow .editorconfig / analyzers already configured; match namespace and folder structure.
- Tests: the repo's framework (xUnit/NUnit/MSTest) + assertion lib (FluentAssertions if present);
  Arrange-Act-Assert; descriptive Method_Scenario_Expected names consistent with existing tests.
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. 2d ago First seen · 27 lines · 37 tokens per session scan A 6ec8a600c0cb

Subscribe to this mod's changes

exec-csharp is a skill published in the GitHub repository anhnguyen0905/codex-mcp (3 stars, last pushed 11d ago), licensed MIT. It adds 37 tokens to every session and 379 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories

agui-dotnet-streaming-chat

Get started with the AG-UI .NET SDK: bootstrap and run your first streaming-chat app (client + server) with the AG-UI .NET NuGet packages (AGUI.Client, AGUI.Server, AGUI.Formatting, AGUI.Abstractions). USE FOR: which packages to install and how to wire them; constructing an AGUIChatClient against an endpoint and…

ag-ui-protocol/ag-ui · 223 tokens

agui-dotnet-shared-state

Share structured, evolving state between an AG-UI agent and its client with the AG-UI .NET SDK — the client seeds state on the request, the server reads it, mutates it, and streams the updated state back as snapshots or deltas alongside the chat. USE FOR: sending initial/working state from the client via…

ag-ui-protocol/ag-ui · 215 tokens

agui-dotnet-sdk-docs

Author, update, and validate the AG-UI .NET SDK documentation pages on the docs.ag-ui.com Mintlify site (under docs/). USE FOR: adding or editing a ".NET SDK" docs page (sdk/dotnet//.mdx), wiring it into the docs.json ".NET" nav group and global anchor, running the docs site locally with mintlify dev…

ag-ui-protocol/ag-ui · 155 tokens

agui-dotnet-multimodal

Send images and other binary/file content to an AG-UI agent with the AG-UI .NET SDK — attach pictures (or audio, PDFs, etc.) to a user message so a multimodal model can see them. USE FOR: building a user ChatMessage with mixed content parts (TextContent plus DataContent for inline bytes, or UriContent for a hosted…

ag-ui-protocol/ag-ui · 186 tokens

mgmt-review-comment-resolution

Resolve review comments on Azure management-plane .NET SDK PRs. Handles renaming types/properties, changing property types, and other API surface adjustments by updating TypeSpec client.tsp and regenerating.

Azure/azure-sdk-for-net · 46 tokens

mpg-migration

Handles Azure SDK for .NET management-plane migrations from AutoRest/Swagger to TypeSpec; use for MPG, mgmt migration, or Azure.ResourceManager. migration requests.

Azure/azure-sdk-for-net · 39 tokens