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/dotnet/maui-labs/copilot-instructionsgit clone --depth 1 https://github.com/dotnet/maui-labsWrote 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/dotnet/maui-labs/copilot-instructions)<a href="https://agentmods.dev/instructions/dotnet/maui-labs/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/dotnet/maui-labs/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 | $0.05158 | $0.05158 |
| Opus 5 | $0.02579 | $0.02579 |
| Sonnet 5 | $0.01032 | $0.01032 |
| Haiku 4.5 | $0.00516 | $0.00516 |
Grade B, and why
maui-labs copilot-instructions.md scanned grade B with 1 finding 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 today.
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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
# native-deps: 'sudo apt-get install ...' # CUSTOMIZE: if Linux-only with native libs How it starts
The opening of the file, as written. The whole thing — 403 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Instructions for maui-labs
These instructions guide GitHub Copilot and other AI code generation tools when working with the maui-labs repository.
Platform-Specific Code
DevFlow targets multiple platforms via multi-targeting. The pattern:
Microsoft.Maui.DevFlow.Agent.Abstractionstargetsnet10.0— all platform-agnostic code lives here (HTTP server, routing,DevFlowAgentServicebase class). No MAUI dependency.Microsoft.Maui.DevFlow.Agent.Coretargetsnet10.0— MAUI UI backend (MauiDevFlowAgentService,VisualTreeWalker). Depends onAgent.Abstractions.Microsoft.Maui.DevFlow.Agenttargetsnet10.0-android,net10.0-ios,net10.0-maccatalyst,net10.0-macos,net10.0-windows10.0.19041.0— platform-specific overrides.Microsoft.Maui.DevFlow.Agent.Gtktargetsnet10.0— Linux/GTK-specific code.
Use #if directives for platform code in multi-targeting projects:
#if IOS || MACCATALYST
// iOS and Mac Catalyst share UIKit
return uiWindow.Screen.Scale;
#elif ANDROID
return activity.Resources?.DisplayMetrics?.Density ?? 1.0;
#elif WINDOWS
return xamlRoot.RasterizationScale;
#elif MACOS
return nsWindow.BackingScaleFactor;
#endif
Important: Both .ios.cs and .maccatalyst.cs files compile for Mac Catalyst. Use #if IOS || MACCATALYST when code applies to both.
Agent Architecture (Abstractions/Core/Platform Pattern)
When adding new features to the DevFlow agent:
- Add the virtual method in
Agent.Abstractions/DevFlowAgentService.cs— this is the platform-agnostic base - Override in
Agent.Core/MauiDevFlowAgentService.csfor MAUI-specific behavior - Override in
Agent/DevFlowAgentService.cswith#ifdirectives for platform-specific behavior - Override in
Agent.Gtk/GtkAgentService.csfor Linux/GTK if needed
Example:
// In Agent.Abstractions/DevFlowAgentService.cs
protected virtual Task<byte[]?> CaptureFullScreenAsync() => Task.FromResult<byte[]?>(null);
// In Agent/DevFlowAgentService.cs
#if IOS || MACCATALYST
protected override Task<byte[]?> CaptureFullScreenAsync()
=> DispatchAsync(() => CaptureAllWindowsComposited());
#elif MACOS
protected override async Task<byte[]?> CaptureFullScreenAsync() { /* AppKit capture */ }
#endif
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.
- today Changed · +1 lines · +81 tokens per session 0e16613fefd4
- 4d ago First seen · 402 lines · 5,077 tokens per session scan B 08241ffcb9bb
maui-labs copilot-instructions.md is an instructions file published in the GitHub repository dotnet/maui-labs (212 stars, last pushed today), licensed MIT. It adds 5,158 tokens to every session, about $0.0258 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
react-native-restart AGENTS.md
Instructions for avishayil/react-native-restart: This project keeps its agent/AI onboarding guidance in a single canonical file.
tv-maniac GEMINI.md
Gemini CLI instructions for thomaskioko/tv-maniac, covering tv maniac agent rules, project overview, architecture & tech stack, core mandates & conventions and 1. modularization & dependencies.
AppClaw CLAUDE.md
Claude Code instructions for appclawhq/AppClaw, covering claude.md, what is appclaw?, build & run commands, architecture and entry point & cli modes (src/index.ts).
expo-targets AGENTS.md
AGENTS.md instructions for csark0812/expo-targets, covering agents, product posture, sealed zones, docs ssot and safe commands.
OpenNutriTracker CLAUDE.md
Claude Code instructions for simonoppowa/OpenNutriTracker: Canonical agent instructions for this repository live in AGENTS.md.
nc-native AGENTS.md
AGENTS.md instructions for Obiente/nc-native, covering nextcloud native agent and contributor guide, 1. mission and current phase, 2. sources of truth, documentation synchronization and 3. what "native" means.