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/thangchung/agent-engineering-experiment/copilot-sdk-csharpgit clone --depth 1 https://github.com/thangchung/agent-engineering-experimentWhat 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.02921 | $0.02921 |
| Opus 5 | $0.01460 | $0.01460 |
| Sonnet 5 | $0.00584 | $0.00584 |
| Haiku 4.5 | $0.00292 | $0.00292 |
Grade A, and why
GitHub Copilot SDK C# Instructions 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 — 549 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Core Principles
- The SDK is in technical preview and may have breaking changes
- Requires .NET 10.0 or later
- Requires GitHub Copilot CLI installed and in PATH
- Uses async/await patterns throughout
- Implements IAsyncDisposable for resource cleanup
Installation
Always install via NuGet:
dotnet add package GitHub.Copilot.SDK
Client Initialization
Basic Client Setup
await using var client = new CopilotClient();
await client.StartAsync();
Client Configuration Options
When creating a CopilotClient, use CopilotClientOptions:
CliPath- Path to CLI executable (default: "copilot" from PATH)CliArgs- Extra arguments prepended before SDK-managed flagsCliUrl- URL of existing CLI server (e.g., "localhost:8080"). When provided, client won't spawn a processPort- Server port (default: 0 for random)UseStdio- Use stdio transport instead of TCP (default: true)LogLevel- Log level (default: "info")AutoStart- Auto-start server (default: true)AutoRestart- Auto-restart on crash (default: true)Cwd- Working directory for the CLI processEnvironment- Environment variables for the CLI processLogger- ILogger instance for SDK logging
Manual Server Control
For explicit control:
var client = new CopilotClient(new CopilotClientOptions { AutoStart = false });
await client.StartAsync();
// Use client...
await client.StopAsync();
Use ForceStopAsync() when StopAsync() takes too long.
Session Management
Creating Sessions
Use SessionConfig for configuration:
await using var session = await client.CreateSessionAsync(new SessionConfig
{
Model = "gpt-5",
Streaming = true,
Tools = [...],
SystemMessage = new SystemMessageConfig { ... },
AvailableTools = ["tool1", "tool2"],
ExcludedTools = ["tool3"],
Provider = new ProviderConfig { ... }
});
Session Config Options
SessionId- Custom session IDModel- Model name ("gpt-5", "claude-sonnet-4.5", etc.)Tools- Custom tools exposed to the CLISystemMessage- System message customizationAvailableTools- Allowlist of tool namesExcludedTools- Blocklist of tool namesProvider- Custom API provider configuration (BYOK)Streaming- Enable streaming response chunks (default: false)
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 · 549 lines · 2,921 tokens per session scan A 2c1e888f8e92
GitHub Copilot SDK C# Instructions is an instructions file published in the GitHub repository thangchung/agent-engineering-experiment (24 stars, last pushed 1mo ago), licensed MIT. It adds 2,921 tokens to every session, about $0.0146 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-30.
Other instructions, from other repositories
AgentEval maf-updates.instructions.md
Instructions for detecting and adapting to Microsoft Agent Framework (MAF) breaking changes.
foundry-local cs-debug-binding.instructions.md
Use when changing the C ABI (foundrylocalc.h) and validating C# tests, or when C# tests fail with stale-ABI symptoms (struct/layout mismatches, dispatch falling through unexpectedly).
dotnet-mcp copilot-instructions.md
Instructions for jongalloway/dotnet-mcp, covering github copilot instructions for .net mcp server, project overview, key technologies, architecture and code style and conventions.
e-commerce-agents CLAUDE.md
Instructions for nitin27may/e-commerce-agents, covering claude.md, what this is, working artifacts location, key commands and start everything from scratch (one command).
CrestApps.AgentSkills copilot-instructions.md
Instructions for CrestApps/CrestApps.AgentSkills, covering crestapps.agentskills development instructions, project overview, four source projects, build & test and build (treat warnings as errors, run analyzers).
awesome-claude-copilot csharp-mcp-server.instructions.md
Guidelines for building Model Context Protocol (MCP) servers with the C# SDK.