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 instructions/rorrorojas3/awesome-claude-copilot/csharpgit clone --depth 1 https://github.com/RorroRojas3/awesome-claude-copilotWrote 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/instructions/rorrorojas3/awesome-claude-copilot/csharp)<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>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.00822 | $0.00822 |
| Opus 5 | $0.00411 | $0.00411 |
| Sonnet 5 | $0.00164 | $0.00164 |
| Haiku 4.5 | $0.00082 | $0.00082 |
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.
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_camelCasefield 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 writenew List<T>(),new T[] { }, orArray.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
nameofinstead 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.
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.
- 2d ago First seen · 83 lines · 822 tokens per session scan A 5508da7ab1fc
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.
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.
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.
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.
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.
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.
avalonia-extensions AGENTS.md
Instructions for Devolutions/avalonia-extensions, covering ai assistant guidelines, ⚠️ required: session pre-flight check and quick reference.