maf-doctor: Instructions file for GitHub Copilot

.github/copilot-instructions.md

maf-doctor copilot-instructions.md is an instructions file for GitHub Copilot from joslat/maf-doctor. It costs 1,604 tokens per session, scanned A, original, MIT.

A migration guide for MAF 1.3.0, a specific software version, with rules about changed APIs, removed features, credentials, sensitive data, and migration tracking.

In plain words
What is it for?
Use it when migrating or developing a MAF 1.3.0 project, checking provider state, authentication choices, obsolete APIs, security settings, and migration records.
Why use it?
It helps coding agents avoid breaking changes and patterns that no longer work after upgrading to MAF 1.3.0.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

This is joslat/maf-doctor's own configuration. It tells GitHub Copilot how to work on maf-doctor itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything maf-doctor configures →

Reuse

Borrowing it

Nothing to install: this file belongs to joslat/maf-doctor. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/joslat/maf-doctor/main/.github/copilot-instructions.md
Clone the repo
git clone --depth 1 https://github.com/joslat/maf-doctor

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for maf-doctor copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/joslat/maf-doctor/copilot-instructions.svg)](https://agentmods.dev/instructions/joslat/maf-doctor/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/joslat/maf-doctor/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/joslat/maf-doctor/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,604 This file is loaded in full into every session.
When invoked 1,604 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.01604 $0.01604
Opus 5 $0.00802 $0.00802
Sonnet 5 $0.00321 $0.00321
Haiku 4.5 $0.00160 $0.00160

Measured 7d ago against content hash d7498b29783b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

maf-doctor 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 7d 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.

MAF 1.3.0 Migration — Auto-Loaded Constraints

Auto-generated by maf-doctor init. Do not hand-edit. Regenerate: delete this file and re-run maf-doctor init. Authoritative version: read maf://constraints in Copilot Chat.

MAF 1.3.0 — Constraints & Breaking Changes Reference

Hard Constraints (Never Violate)

  • NEVER introduce patterns not present in MAF 1.3.0
  • NEVER store session-specific state in AIContextProvider or ChatHistoryProvider instance fields — always use ProviderSessionState<T>
  • NEVER add [StreamsMessage] or [YieldsMessage] attributes — removed in 1.3.0, causes CS0246
  • NEVER use DefaultAzureCredential in production code — prefer ManagedIdentityCredential
  • NEVER enable EnableSensitiveData = true in non-development environments
  • ALWAYS pin dotnet-inspect to exact v0.9.1. For ground-truth on what your project actually triggers, run cs0618-hunter (compiler-based) — it catches transitive obsoletions, overload-resolution surprises, and project-local [Obsolete] attributes that static inspection cannot see.
  • ALWAYS update src/docs/migration-plan.md tracking table after each task is completed and build-verified

Fan-out / Fan-in Rules (Silent Failure Risk)

Fan-out executor handlers MUST return ValueTask<T> where T is the message type.
A void or non-generic ValueTask return produces NO output message.
The fan-in barrier then starves silently — the workflow exits cleanly but incompletely.
This is NOT a build error. The only detection is runtime or maf-fan-out-validator skill.
AddFanInBarrierEdge argument order:
  CORRECT:   AddFanInBarrierEdge(IEnumerable<ExecutorBinding> sources, ExecutorBinding target)
  OBSOLETE:  AddFanInBarrierEdge(ExecutorBinding target, IEnumerable<ExecutorBinding> sources)
  The obsolete overload compiles and runs but triggers CS0618.

Key Breaking Changes

Area Old (broken) New (correct)
Executors ReflectingExecutor<T> sealed partial class : Executor + [MessageHandler]
Executors IMessageHandler<TIn,TOut> [MessageHandler] on handler methods
Executors [StreamsMessage], [YieldsMessage] Removed — delete these attributes
Source gen (missing package) Add Microsoft.Agents.AI.Workflows.Generators 1.3.0
Sessions AgentThread AgentSession via await agent.CreateSessionAsync()
Sessions GetNewThread() await agent.CreateSessionAsync(ct)
Sessions agent.SerializeSession(session) await agent.SerializeSessionAsync(session)
Response AgentResponse.Deserialize<T>() RunAsync<T>() + .Result
Streaming InProcessExecution.StreamAsync() RunStreamingAsync()
Events AgentRunUpdateEvent AgentResponseUpdateEvent
A2A DI AIAgentExtensions services.AddA2AServer(agent, new A2AServerRegistrationOptions { AgentCard = ... })
A2A endpoint app.MapA2A(...) app.MapA2AHttpJson(path) or app.MapA2AJsonRpc(path)
Agent options Instructions / Tools at top-level Must be inside ChatClientAgentOptions.ChatOptions
DevUI/Hosting Microsoft.Agents.AI.DevUI / .Hosting No 1.3.0 equivalent — guard with #if DEVUI_ENABLED
Fan-in AddFanInBarrierEdge(target, sources) AddFanInBarrierEdge(sources, target) — sources first
Fan-out async ValueTask HandleAsync(...) returning void async ValueTask<T> HandleAsync(...) returning the message

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. 7d ago First seen · 85 lines · 1,604 tokens per session scan A d7498b29783b

Subscribe to this mod's changes

maf-doctor copilot-instructions.md is an instructions file published in the GitHub repository joslat/maf-doctor (14 stars, last pushed 20d ago), licensed MIT. It adds 1,604 tokens to every session, about $0.0080 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.