McpServerAspNetCore copilot-instructions.md

Project-specific coding instructions for an ASP.NET Core Model Context Protocol server, including C# style, formatting, nullable references, and architecture guidance. ASP.NET Core is Microsoft's framework for building web applications and services in C#.

In plain words
What is it for?
Use them when writing or reviewing C# code in the McpServerAspNetCore project, especially for formatting, error handling, architecture, and maintainability decisions.
Why use it?
They give a coding agent consistent rules for changing or reviewing this project and help avoid unwanted edits to protected configuration files.

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/marcominerva/mcpserveraspnetcore/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/marcominerva/McpServerAspNetCore

Made for: GitHub Copilot.

Per session 1,001 This file is loaded in full into every session.
When invoked 1,001 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.01001 $0.01001
Opus 5 $0.00500 $0.00500
Sonnet 5 $0.00200 $0.00200
Haiku 4.5 $0.00100 $0.00100

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

Security

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.

.github/copilot-instructions.md · 85 lines

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 is pattern matching instead of as and null checks
  • Use nameof instead of string literals when referring to member names.
  • Prefer ?. if applicable (e.g. scope?.Dispose()).
  • Use ObjectDisposedException.ThrowIf where applicable.
  • Use ArgumentNullException.ThrowIfNull to 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 null at entry points.
  • Always use is null or is not null instead of == null or != 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 Async suffix for asynchronous methods.
  • Return Task or ValueTask from asynchronous methods.
  • Use CancellationToken parameters 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 a SynchronizationContext (e.g., classic ASP.NET, WPF, WinForms); it is generally unnecessary in ASP.NET Core.

Read the full file on GitHub · 85 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 · 85 lines · 1,001 tokens per session scan A e3999a22116d

Subscribe to this mod's changes

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.