maui-labs copilot-instructions.md

maui-labs copilot-instructions.md is an instructions file for GitHub Copilot from dotnet/maui-labs. It costs 5,158 tokens per session, scanned B, original, MIT.

A set of coding rules for the maui-labs .NET MAUI project, which builds apps for several operating systems. It explains where shared, user-interface, and platform-specific code belongs, plus conventions for tools and HTTP endpoints.

In plain words
What is it for?
Use it when asking an AI coding tool to change the maui-labs agent, add platform-specific behavior, or work with its tool and HTTP endpoint structure.
Why use it?
It gives coding agents the project context they need to place changes correctly across multiple platforms. This reduces inconsistent code and mistakes caused by treating every platform the same.

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/dotnet/maui-labs/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/dotnet/maui-labs

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 maui-labs copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dotnet/maui-labs/copilot-instructions.svg)](https://agentmods.dev/instructions/dotnet/maui-labs/copilot-instructions)
Your own site
<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>
Per session 5,158 This file is loaded in full into every session.
When invoked 5,158 The same file — it is already loaded in full.
Security scan B 1 finding. 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.05158 $0.05158
Opus 5 $0.02579 $0.02579
Sonnet 5 $0.01032 $0.01032
Haiku 4.5 $0.00516 $0.00516

Measured today against content hash 0e16613fefd4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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
.github/copilot-instructions.md · 403 lines

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.Abstractions targets net10.0 — all platform-agnostic code lives here (HTTP server, routing, DevFlowAgentService base class). No MAUI dependency.
  • Microsoft.Maui.DevFlow.Agent.Core targets net10.0 — MAUI UI backend (MauiDevFlowAgentService, VisualTreeWalker). Depends on Agent.Abstractions.
  • Microsoft.Maui.DevFlow.Agent targets net10.0-android, net10.0-ios, net10.0-maccatalyst, net10.0-macos, net10.0-windows10.0.19041.0 — platform-specific overrides.
  • Microsoft.Maui.DevFlow.Agent.Gtk targets net10.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:

  1. Add the virtual method in Agent.Abstractions/DevFlowAgentService.cs — this is the platform-agnostic base
  2. Override in Agent.Core/MauiDevFlowAgentService.cs for MAUI-specific behavior
  3. Override in Agent/DevFlowAgentService.cs with #if directives for platform-specific behavior
  4. Override in Agent.Gtk/GtkAgentService.cs for 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

Read the full file on GitHub · 403 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. today Changed · +1 lines · +81 tokens per session 0e16613fefd4
  2. 4d ago First seen · 402 lines · 5,077 tokens per session scan B 08241ffcb9bb

Subscribe to this mod's changes

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.