C# Coding Standards & Best Practices

A set of coding rules for C# projects in the Guitar Alchemist codebase. It covers modern language features, data structures, pattern matching, and maintainable code organization.

In plain words
What is it for?
Use it when creating or reviewing C# classes, data-transfer objects, domain events, value objects, conditional logic, and other application code.
Why use it?
It gives contributors a shared way to write and review C# so similar code follows the same conventions.

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/guitaralchemist/ga/csharp-coding-standards
Any agent
npx skills add GuitarAlchemist/ga --skill csharp-coding-standards
Clone the repo
git clone --depth 1 https://github.com/GuitarAlchemist/ga

Made for: Claude Code, Codex.

Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,330 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.00036 $0.01330
Opus 5 $0.00018 $0.00665
Sonnet 5 $0.00007 $0.00266
Haiku 4.5 $0.00004 $0.00133

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

Security

Grade A, and why

C# Coding Standards & Best Practices 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.

.agent/skills/csharp-coding-standards/SKILL.md · 140 lines

How it starts

The opening of the file, as written. The whole thing — 140 lines — stays where its author put it; the contents beside it link to each section on GitHub.

C# Coding Standards & Best Practices

This skill outlines the mandatory coding standards and best practices for all C# development in the Guitar Alchemist repository. Adherence to these guidelines ensures codebase consistency, readability, and leverage of modern language features.

1. Modern C# Features (C# 12+)

We explicitly encourage the latest C# features where they improve clarity and conciseness.

1.1 Records & Immutability

  • Prefer record for Data Transfer Objects (DTOs), Domain Events, and Value Objects.
  • Use primary constructors for concise initialization.
  • Immutability by default: Use init accessors instead of set unless mutation is strictly required.
// DO:
public record ChordVoicing(string Name, int[] Frets, PitchClass Root);

// DON'T:
public class ChordVoicing
{
    public string Name { get; set; }
    // ...
}

1.2 Pattern Matching

  • Use pattern matching (is, switch expressions) over if-else chains and type casting.
  • Leverage list patterns and property patterns for expressive logic.
var description = voicing switch
{
    { Frets: [0, ..] } => "Open Chord",
    { Difficulty: > 0.8 } => "Advanced Voicing",
    _ => "Standard Voicing"
};

1.3 Collection Expressions

  • Use collection expressions ([]) for initialization.
  • IDE0300/IDE0301/IDE0305: Always fix these warnings by converting to collection expressions.
// DO:
int[] notes = [0, 4, 7];
List<string> scale = ["C", "D", "E"];
var copy = new List<int>([..original]);

// DON'T:
int[] notes = new int[] { 0, 4, 7 };
var list = new List<string> { "A", "B" }; // IDE0300 Warning

2. Architecture & Organization

2.1 Namespace Structure

Follow the standard structure: GA.<Layer>.<Module>.<Component>

  • Common: Shared logic, primitives, and utilities.
  • Domain: Pure business logic, entities, and aggregates.
  • Business: Application logic, services, and workflows.
  • Infrastructure: External concerns (Database, GPU, Filesystem).

Read the full file on GitHub · 140 lines

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 · 140 lines · 36 tokens per session scan A 71161753ddeb

Subscribe to this mod's changes

C# Coding Standards & Best Practices is a skill published in the GitHub repository GuitarAlchemist/ga (2 stars, last pushed 3d ago), licensed MIT. It adds 36 tokens to every session and 1,330 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