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/performance-hotpathsgit 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.00441 | $0.00441 |
| Opus 5 | $0.00220 | $0.00220 |
| Sonnet 5 | $0.00088 | $0.00088 |
| Haiku 4.5 | $0.00044 | $0.00044 |
Grade A, and why
maui performance-hotpaths.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 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.
What it actually says
Performance-Critical Path Rules
Scope rationale: globs target the actual hot paths — layout measure/arrange, platform scroll/touch callbacks, CollectionView/CarouselView (Items + Items2) recycling, and ScrollView. The full handler tree is intentionally NOT included; most handlers (Button, DatePicker, CheckBox, …) are not hot paths and don't need these constraints. If you're working on a handler that IS allocation-sensitive (image decoding, animation tick, etc.), apply these rules anyway.
Hot Paths in MAUI
Measure/arrange cycles, scrolling callbacks, binding propagation, and property change notifications are called at high frequency. All rules below apply to code on these paths.
Allocation Avoidance
- No LINQ methods (
.Where,.Select,.FirstOrDefault,.ToList) — use indexedforloops - No closures or lambdas that capture variables — these allocate a compiler-generated class per invocation
- No string concatenation or interpolation — use
StringBuilderor pre-allocated strings if logging is required - Prefer
Count+ indexer overIEnumerableiteration to avoid enumerator allocation
Caching and Invalidation
- Cache results of expensive computations called multiple times per layout pass
- Invalidate caches when inputs change — stale caches cause incorrect layout
- Skip redundant work: if a property's new value equals the old value, do not trigger layout invalidation or re-render
Collection Iteration
- When the source implements
IListorIReadOnlyList, usefor (int i = 0; i < list.Count; i++)instead offoreach ObservableCollectionchange handlers should process only the affected range, not re-enumerate the entire collection
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.
- 2d ago First seen · 35 lines · 441 tokens per session scan A 5ea9380b4959
maui performance-hotpaths.instructions.md is an instructions file published in the GitHub repository dotnet/maui (23,317 stars, last pushed 2d ago), licensed MIT. It adds 441 tokens to every session, about $0.0022 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
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
Copilot 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.
vscode disposable.instructions.md
Guidelines for writing code using IDisposable.
maui-labs devflow-architecture.instructions.md
Instructions for dotnet/maui-labs, covering devflow architecture, communication model, package dependency graph, the abstractions / backend split and key extension points.
bitfinex-net
Use Bitfinex.Net when generating C#/.NET code that interacts with Bitfinex, including Spot, margin, derivatives symbols, funding, REST endpoints, WebSocket subscriptions, account management, market data, or order placement. Triggers on Bitfinex integration requests in C#, .NET, dotnet, F#, or VB.NET context.