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 skills add dotnet/maui-labs --skill maui-networking-offline-datagit 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/skills/dotnet/maui-labs/maui-networking-offline-data)<a href="https://agentmods.dev/skills/dotnet/maui-labs/maui-networking-offline-data"><img src="https://agentmods.dev/badge/skills/dotnet/maui-labs/maui-networking-offline-data/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/dotnet/maui-labs/maui-networking-offline-data"><img src="https://agentmods.dev/badge/skills/dotnet/maui-labs/maui-networking-offline-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 45 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.1 | $0.00087 | $0.01787 |
| Opus 5 | $0.00044 | $0.00894 |
| Sonnet 5 | $0.00017 | $0.00357 |
| Haiku 4.5 | $0.00009 | $0.00179 |
Grade A, and why
maui-networking-offline-data 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.
How it starts
The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MAUI Networking and Offline Data
Use this skill when a MAUI feature calls backend APIs, works against local services during development, persists local data, or must behave well offline.
Workflow
- Inspect
MauiProgram.cs, existing API clients, model serialization, and data storage packages. - Register API clients through DI. Prefer typed clients or named clients over
constructing
HttpClientin pages. - Define request/response DTOs and serialization options once. Prefer
System.Text.Jsonsource generation for trimmed or NativeAOT-sensitive apps. - Decide the local development address by runtime platform and environment.
- Keep cleartext HTTP exceptions debug-only and platform-scoped.
- Define offline boundaries before schema/code: name the read-only cached reference data, the entities users can edit while offline, and the fields that remain server-authoritative.
- For SQLite/offline sync answers, show the storage initialization API before
the entity schema: explicitly name
SQLiteAsyncConnectionplusCreateTableAsync<T>for sqlite-net, or an EF CoreDbContextsetup. Do not only show POCO models, sqlite-net attributes, ordb.Table<T>()queries. - In every offline-sync design, include a security line: if cached data is
sensitive, regulated, or contains customer/business PII, encrypt the local
SQLite store, for example with SQLCipher/provider encryption, and keep the
database key in
SecureStoragerather than source code orPreferences. - In every offline-sync design, include a background performance line: drain
queued sync work in bounded batches/chunks off the UI thread, and marshal only
UI updates through
MainThreadwhen needed. - Store local data in SQLite or app data files behind a repository/service abstraction.
- Add cancellation, timeout, retry, and user-facing error states.
HttpClient DI Pattern
builder.Services.AddHttpClient<IProductsApi, ProductsApi>(client =>
{
client.BaseAddress = new Uri("https://api.contoso.dev/");
});
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.
- 7d ago Changed · -44 tokens per session 48f90488a69c
- 11d ago First seen · 177 lines · 131 tokens per session scan A a738003e7105
maui-networking-offline-data is a skill published in the GitHub repository dotnet/maui-labs (213 stars, last pushed yesterday), licensed MIT. It adds 87 tokens to every session and 1,787 once invoked, about $0.0004 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 skills, from other repositories
network-tracing
Instrument API requests with spans and distributed tracing. Use when tracking request latency, correlating client-backend traces, or debugging API issues.
cloudkit
Implement, review, or debug iCloud sync in iOS/macOS apps with CloudKit. Covers CKContainer + private/public/shared CKDatabase, CKRecord / CKRecord.Reference / CKAsset, CKQuery + CKQueryOperation, CKSubscription (query/database/recordZone) with silent push, CKSyncEngine (iOS 17+: state serialization…
offline-first
Offline-first architecture patterns - NetworkBoundResource, sync strategies, conflict resolution, cache invalidation, and connectivity monitoring.
offline-first
Offline-first architecture patterns - NetworkBoundResource, sync strategies, conflict resolution, cache invalidation, and connectivity monitoring.
pagination-patterns
Pagination patterns for mobile - Paging 3 for Android (PagingSource, RemoteMediator, LazyPagingItems), cursor-based and offset-based strategies.
cmp-firebase-connect
Wire a freshly scaffolded CMP/KMP app to its OWN real Firebase project — the #1 post-scaffold manual step. Use this when the user wants to connect their app to Firebase, or asks "connect my app to firebase", "set up google-services.json", "wire firebase", "create a firebase project for this app", "replace the…