GitHub Copilot SDK C# Instructions

Coding guidance for building C# applications with the GitHub Copilot SDK, a software library for connecting C# programs to GitHub Copilot. It covers the required .NET version, command-line setup, asynchronous code, configuration, and cleanup.

In plain words
What is it for?
Starting and configuring a Copilot client, connecting to a local or existing Copilot service, setting its working environment, and managing its lifetime.
Why use it?
It provides the setup and usage rules needed to work with a technical-preview SDK that may change and depends on the Copilot command-line tool.

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/thangchung/agent-engineering-experiment/copilot-sdk-csharp
Clone the repo
git clone --depth 1 https://github.com/thangchung/agent-engineering-experiment

Made for: GitHub Copilot.

Per session 2,921 This file is loaded in full into every session.
When invoked 2,921 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.02921 $0.02921
Opus 5 $0.01460 $0.01460
Sonnet 5 $0.00584 $0.00584
Haiku 4.5 $0.00292 $0.00292

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

Security

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.

DotNetClaw/.github/instructions/copilot-sdk-csharp.instructions.md · 549 lines

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 flags
  • CliUrl - URL of existing CLI server (e.g., "localhost:8080"). When provided, client won't spawn a process
  • Port - 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 process
  • Environment - Environment variables for the CLI process
  • Logger - 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 ID
  • Model - Model name ("gpt-5", "claude-sonnet-4.5", etc.)
  • Tools - Custom tools exposed to the CLI
  • SystemMessage - System message customization
  • AvailableTools - Allowlist of tool names
  • ExcludedTools - Blocklist of tool names
  • Provider - Custom API provider configuration (BYOK)
  • Streaming - Enable streaming response chunks (default: false)

Read the full file on GitHub · 549 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 · 549 lines · 2,921 tokens per session scan A 2c1e888f8e92

Subscribe to this mod's changes

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.