awesome-claude-copilot csharp.instructions.md

awesome-claude-copilot csharp.instructions.md is an instructions file for GitHub Copilot from RorroRojas3/awesome-claude-copilot. It costs 822 tokens per session, scanned A, original, MIT.

Guidelines for building C# applications, covering language version, naming, modern syntax, comments, error handling, and maintainability.

In plain words
What is it for?
Use them when writing or reviewing general C# code, including classes, services, interfaces, fields, variables, exceptions, and public API documentation.
Why use it?
They make C# code more consistent and reduce avoidable review issues caused by unclear naming, comments, or handling of edge cases.

Instructions file for GitHub Copilot

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 instructions/rorrorojas3/awesome-claude-copilot/csharp
Clone the repo
git clone --depth 1 https://github.com/RorroRojas3/awesome-claude-copilot

Made for: GitHub Copilot.

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 awesome-claude-copilot csharp.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rorrorojas3/awesome-claude-copilot/csharp.svg)](https://agentmods.dev/instructions/rorrorojas3/awesome-claude-copilot/csharp)
Your own site
<a href="https://agentmods.dev/instructions/rorrorojas3/awesome-claude-copilot/csharp"><img src="https://agentmods.dev/badge/instructions/rorrorojas3/awesome-claude-copilot/csharp.svg" alt="Measured on agentmods" height="20"></a>
Per session 822 This file is loaded in full into every session.
When invoked 822 The same file — it is already loaded in full.
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.00822 $0.00822
Opus 5 $0.00411 $0.00411
Sonnet 5 $0.00164 $0.00164
Haiku 4.5 $0.00082 $0.00082

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

Security

Grade A, and why

awesome-claude-copilot csharp.instructions.md 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.

.github/instructions/csharp.instructions.md · 83 lines

How it starts

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

C# Development

Instructions

  • Always use the latest version C#, currently C# 14 features.
  • Make only high confidence suggestions when reviewing code changes.
  • Write maintainable code; handle edge cases with clear exception handling.
  • Comment only what code cannot say: why-decisions, constraints, non-obvious invariants. Never restate what the code does or narrate a change.
  • Web/API-specific standards (auth, validation, versioning, performance, deployment) live in aspnet-rest-apis.instructions.md.

Naming Conventions

  • Follow PascalCase for component names, method names, and public members.
  • Prefix private fields with an underscore and use _camelCase (e.g., _userService, _cache).
  • Use camelCase for local variables and parameters.
  • Prefix interface names with "I" (e.g., IUserService).

Modern C# Constructs

  • Prefer primary constructors for classes (services, controllers, handlers). Capture every injected dependency into a private readonly _camelCase field at the top of the class, and reference the field — not the primary-constructor parameter — in method bodies:

    public class UserService(IUserRepository repository, ILogger<UserService> logger) : IUserService
    {
        private readonly IUserRepository _repository = repository;
        private readonly ILogger<UserService> _logger = logger;
    }
    
  • Prefer collection expressions wherever the target type is clear: [] for empty collections, [1, 2, 3] for literals, and spreads like [.. items, extra]. Do not write new List<T>(), new T[] { }, or Array.Empty<T>() when a collection expression works:

    private readonly List<string> _names = [];
    string[] merged = [.. first, .. second];
    

Formatting

  • Apply code-formatting style defined in .editorconfig.
  • Prefer file-scoped namespace declarations and single-line using directives.
  • Insert a newline before the opening curly brace of any code block (e.g., after if, for, while, foreach, using, try, etc.).
  • Ensure that the final return statement of a method is on its own line.
  • Use pattern matching and switch expressions wherever possible.
  • Use nameof instead of string literals when referring to member names.
  • Ensure that XML doc comments are created for any public APIs. When applicable, include <example> and <code> documentation in the comments.

Read the full file on GitHub · 83 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 · 83 lines · 822 tokens per session scan A 5508da7ab1fc

Subscribe to this mod's changes

awesome-claude-copilot csharp.instructions.md is an instructions file published in the GitHub repository RorroRojas3/awesome-claude-copilot (0 stars, last pushed 7d ago), licensed MIT. It adds 822 tokens to every session, about $0.0041 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-01.

Related

Other instructions, from other repositories

maui public-api.instructions.md

Instructions for dotnet/maui, covering public api surface design, api addition rules, publicapi.unshipped.txt, obsolescence and removal and visibility decisions.

dotnet/maui · 554 tokens

maui performance-hotpaths.instructions.md

Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.

dotnet/maui · 441 tokens

Agents-for-net code-review.instructions.md

Instructions for microsoft/Agents-for-net, covering code review rules (microsoft 365 agents sdk for .net), what not to comment on, review lenses and severity.

microsoft/Agents-for-net · 901 tokens

Kucoin.Net copilot-instructions.md

Instructions for JKorf/Kucoin.Net, covering copilot instructions for kucoin.net, use kucoin.net, not raw http, client setup, result handling and api structure.

JKorf/Kucoin.Net · 849 tokens

bitfinex-net

Use Bitfinex.Net when generating C#/.NET code that interacts with Bitfinex, including Spot, margin, derivatives symbols, funding, REST endpoints, WebSocket subscriptions, account management, market data, or order placement. Triggers on Bitfinex integration requests in C#, .NET, dotnet, F#, or VB.NET context.

JKorf/Bitfinex.Net · 1,639 tokens

avalonia-extensions AGENTS.md

Instructions for Devolutions/avalonia-extensions, covering ai assistant guidelines, ⚠️ required: session pre-flight check and quick reference.

Devolutions/avalonia-extensions · 637 tokens