Borrowing it
Nothing to install: this file belongs to darylmcd/Roslyn-Backed-MCP. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/darylmcd/Roslyn-Backed-MCP/main/.github/copilot-instructions.mdgit clone --depth 1 https://github.com/darylmcd/Roslyn-Backed-MCPWrote 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/darylmcd/roslyn-backed-mcp/copilot-instructions)<a href="https://agentmods.dev/instructions/darylmcd/roslyn-backed-mcp/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/darylmcd/roslyn-backed-mcp/copilot-instructions.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.1 | $0.01365 | $0.01365 |
| Opus 5 | $0.00682 | $0.00682 |
| Sonnet 5 | $0.00273 | $0.00273 |
| Haiku 4.5 | $0.00136 | $0.00136 |
Grade A, and why
Roslyn-Backed-MCP 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 8d 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 — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Instructions
Implementation quality and safety rules for this repository.
For session bootstrap and workflow, follow AGENTS.md first.
Code Style (C#)
- Namespaces: file-scoped (
namespace Foo;), not block-scoped — enforced as warning in.editorconfig - var: use
varonly when type is apparent; use explicit types elsewhere - Braces: omit only for single-line; use braces when multiline
- Expression bodies: prefer for single-line properties and accessors
- Usings: System namespaces first; no blank line between using groups; remove unused usings before merge
- Nullability: enable nullable reference types; use
??and null-conditional operators; no unchecked!except in tests - Async: all async methods suffixed
Async; noasync voidexcept event handlers
Layering Rules
RoslynMcp.Host.Stdiomay depend onRoslynMcp.CoreandRoslynMcp.RoslynRoslynMcp.Roslynmay depend onRoslynMcp.CoreRoslynMcp.Corehas no intra-project dependencies — DTOs and contracts only- Do NOT let raw Roslyn types (
SyntaxNode,ISymbol, etc.) cross theRoslynMcp.Coreboundary - Do NOT put transport-specific logic in
RoslynMcp.Roslyn stdoutis reserved for MCP protocol traffic — usestderrfor all operational logging
Roslyn MCP (AI sessions in this repo)
- Enable the
roslynMCP server (roslynmcpvia stdio; see repo.mcp.json). - Read-side tools are the default for every session — including bootstrap
self-edit on this repo — and are 5–30× faster than
Grep/Bash: dotnet build/Bash: dotnet test. Specifically: prefercompile_checkoverdotnet build,test_related_files+test_run --filteroverdotnet test,find_references/symbol_searchoverGrep,document_symbolsover eyeballing. Seeai_docs/bootstrap-read-tool-primer.mdfor the full pattern→tool table. - Write-side on peer repos: prefer Roslyn MCP refactoring tools over ad hoc multi-file text edits when a tool covers the operation (rename, extract/move type, code fixes, bulk type replace, etc.) — preview first, then apply.
- Write-side on THIS repo: depends on session shape.
- Worktree session (default for backlog-sweep subagents; running against the
installed global
roslynmcptool):*_applyis safe — use it when a Roslyn MCP refactor tool covers the operation. Load the worktree's ownRoslynMcp.slnx;workspace_reloadafter apply if a downstream call needs fresh state. - Main-checkout self-edit (running
dotnet run --project src/RoslynMcp.Host.Stdioagainst the checkout you're editing):*_applyis restricted because the binary servicing the call is the binary being edited; useEdit/Write.*_previewand all read-side tools remain fully supported.
- Worktree session (default for backlog-sweep subagents; running against the
installed global
- Canonical three-part policy:
ai_docs/runtime.md(Roslyn MCP client policy).
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.
- 8d ago First seen · 93 lines · 1,365 tokens per session scan A a691baf7ff04
Roslyn-Backed-MCP copilot-instructions.md is an instructions file published in the GitHub repository darylmcd/Roslyn-Backed-MCP (1 stars, last pushed today), licensed MIT. It adds 1,365 tokens to every session, about $0.0068 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
graftcode graftcode-dotnet.instructions.md
Instructions for grft-dev/graftcode, covering graftcode — .net backend services, when this applies (always), authoritative docs (source of truth), golden rules and service = .net class library.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.