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/marcominerva/mcpserveraspnetcore/copilot-instructionsgit clone --depth 1 https://github.com/marcominerva/McpServerAspNetCoreWhat 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.01001 | $0.01001 |
| Opus 5 | $0.00500 | $0.00500 |
| Sonnet 5 | $0.00200 | $0.00200 |
| Haiku 4.5 | $0.00100 | $0.00100 |
Grade A, and why
McpServerAspNetCore copilot-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 — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
General
- Make only high confidence suggestions when reviewing code changes.
- Always use the latest version C#, currently C# 14 features.
- Write code that is clean, maintainable, and easy to understand.
- Only add comments rarely to explain why a non-intuitive solution was used. The code should be self-explanatory otherwise.
- Don't add the UTF-8 BOM to files unless they have non-ASCII characters.
- Never change global.json unless explicitly asked to.
- Never change package.json or package-lock.json files unless explicitly asked to.
- Never change NuGet.config files unless explicitly asked to.
Code Style
Formatting
- Apply code-formatting style defined in
.editorconfig. - Use primary constructors where applicable.
- 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.
- Prefer using collection expressions when possible
- Use
ispattern matching instead ofasand null checks - Use
nameofinstead of string literals when referring to member names. - Prefer
?.if applicable (e.g.scope?.Dispose()). - Use
ObjectDisposedException.ThrowIfwhere applicable. - Use
ArgumentNullException.ThrowIfNullto validate input parameters. - If you add new code files, ensure they are listed in the csproj file (if other files in that folder are listed there) so they build.
Nullable Reference Types
- Declare variables non-nullable, and check for
nullat entry points. - Always use
is nulloris not nullinstead of== nullor!= null. - Trust the C# null annotations and don't add null checks when the type system says a value cannot be null.
Architecture and Design Patterns
Asynchronous Programming
- Provide both synchronous and asynchronous versions of methods where appropriate.
- Use the
Asyncsuffix for asynchronous methods. - Return
TaskorValueTaskfrom asynchronous methods. - Use
CancellationTokenparameters to support cancellation. - Avoid async void methods except for event handlers.
- Use
ConfigureAwait(false)only in library code that may be consumed by apps with aSynchronizationContext(e.g., classic ASP.NET, WPF, WinForms); it is generally unnecessary in ASP.NET Core.
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 · 85 lines · 1,001 tokens per session scan A e3999a22116d
McpServerAspNetCore copilot-instructions.md is an instructions file published in the GitHub repository marcominerva/McpServerAspNetCore (5 stars, last pushed 1mo ago), licensed MIT. It adds 1,001 tokens to every session, about $0.0050 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.
Other instructions, from other repositories
python-sdk AGENTS.md
AGENTS.md instructions for modelcontextprotocol/python-sdk, covering development guidelines, note for ai agents, branching model, package management and code quality.
mcp-for-beginners AGENTS.md
Instructions for microsoft/mcp-for-beginners, covering agents.md, project overview, key technologies, architecture and setup commands.
bifrost AGENTS.md
AGENTS.md instructions for maximhq/bifrost, covering agents.md — bifrost ai gateway, what is bifrost?, repository layout, go workspace and build, test & dev commands.
azure-sdk-for-net copilot-instructions.md
Copilot instructions for Azure/azure-sdk-for-net, covering project overview, prerequisites, folder structure, azure generator and azure management generator.
fast-agent AGENTS.md
AGENTS.md instructions for evalstate/fast-agent, covering fast-agent contributor notes and architectural orientation.
studio AGENTS.md
AGENTS.md instructions for decocms/studio, covering repository guidelines, documentation philosophy, commands, development and start full dev environment (migrations + client + server).