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/handler-patternsgit clone --depth 1 https://github.com/dotnet/mauiWhat 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.00464 | $0.00464 |
| Opus 5 | $0.00232 | $0.00232 |
| Sonnet 5 | $0.00093 | $0.00093 |
| Haiku 4.5 | $0.00046 | $0.00046 |
Grade A, and why
maui handler-patterns.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 yesterday.
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 — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Handler Mapper and Property Patterns
Property Update Flow
- Property updates MUST go through
Handler.UpdateValue(nameof(Property))— never call mapper methods directly - Direct calls bypass user-registered
AppendToMapping/PrependToMappingcustomizations - Map dependencies before dependents — if property B reads property A, A's mapper must run first
CommandMapperentries return void and use the(handler, view, args)signature
Lifecycle Management
- ConnectHandler: Register listeners, subscribe to events, capture native defaults BEFORE applying cross-platform properties
- DisconnectHandler: Unsubscribe all events, dispose platform resources, null out references
- Call
base.ConnectHandler/base.DisconnectHandler— base class performs platform hookup/teardown (NOT mapper initialization, which happens inSetVirtualView)
Null Safety in Callbacks
- Null-check
VirtualViewbefore access in every mapper method and platform callback — it is null during disconnect - Validate
MauiContextbefore use — throwInvalidOperationExceptionwith descriptive message if null - After async operations, verify the handler is still connected before applying results
Native Defaults Preservation
- Capture native default values (colors, fonts, styles) in
ConnectHandlerBEFORE any cross-platform property is applied - Clearing a cross-platform property (setting to null/default) must restore the captured native default, not a hardcoded fallback
- On Windows, preserve WinUI XAML style-applied values; on Android, cache theme-inherited drawables; on iOS, capture UIAppearance defaults
Mapper Extensibility
- When extending existing mappers, ensure the base mapper chain is called — do not silently replace
- Static mapper methods should be
public staticto enable platform-specific overrides - Use
nameof()for property keys — avoid magic strings
Fire-and-Forget Async
- Use
.FireAndForget(handler)for async operations in mapper methods — never use bareasync void - The
FireAndForgetoverload accepting a handler logs exceptions through the handler's service provider
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.
- yesterday First seen · 37 lines · 464 tokens per session scan A cb2d7da041a3
maui handler-patterns.instructions.md is an instructions file published in the GitHub repository dotnet/maui (23,317 stars, last pushed yesterday), licensed MIT. It adds 464 tokens to every session, about $0.0023 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
azure-sdk-for-net AGENTS.md
Instructions for Azure/azure-sdk-for-net, covering azure sdk for .net - ai agent guidelines, repository overview, purpose and scope, repository structure and agent interaction guidelines.
azure-sdk-for-net copilot-instructions.md
Instructions for Azure/azure-sdk-for-net, covering project overview, prerequisites, folder structure, azure generator and azure management generator.
BlazorBindings.Maui AGENTS.md
Instructions for Dreamescaper/BlazorBindings.Maui, covering mobile guidelines, platform, razor and component conventions and blazor bindings generation.
happy AGENTS.md
Instructions for slopus/happy, covering agent workflow and sync to main.
ULogViewer AGENTS.md
Instructions for carina-studio/ULogViewer, covering agents.md, coding style, naming, formatting & structure and fields & properties.
maui-labs AGENTS.md
Instructions for dotnet/maui-labs, covering agent instructions, repository overview, products, technology stack and building.