BlazorBindings.Maui: Skill for Claude Code

.agents/skills/blazorbindings-maui-third-party/SKILL.md

blazorbindings-maui-third-party is a skill for Claude Code, Codex from Dreamescaper/BlazorBindings.Maui. It costs 85 tokens per session (725 once invoked), scanned A, original, MIT.

A development guide for connecting third-party .NET MAUI control libraries to BlazorBindings.Maui, which lets Razor components use native mobile interface controls. It covers wrappers, attached properties, and bridges for controls such as popups and bottom sheets.

In plain words
What is it for?
Use it when integrating a .NET MAUI control library into a BlazorBindings.Maui app, registering the package, generating Razor wrappers, or connecting APIs that require native elements.
Why use it?
It explains how to expose vendor controls to Razor without losing their native MAUI behavior. This reduces guesswork when adding, updating, or troubleshooting a control package.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is Dreamescaper/BlazorBindings.Maui's own configuration. It tells Claude Code and Codex how to work on BlazorBindings.Maui itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything BlazorBindings.Maui configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Dreamescaper/BlazorBindings.Maui. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Dreamescaper/BlazorBindings.Maui/main/.agents/skills/blazorbindings-maui-third-party/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Dreamescaper/BlazorBindings.Maui

Made for: Claude Code, Codex.

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 blazorbindings-maui-third-party

README.md
[![agentmods](https://agentmods.dev/badge/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party/github.svg)](https://agentmods.dev/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party)
Your own site
<a href="https://agentmods.dev/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party"><img src="https://agentmods.dev/badge/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party/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.

agentmods 80×15 button for blazorbindings-maui-third-party

Your own site · 80×15
<a href="https://agentmods.dev/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party"><img src="https://agentmods.dev/badge/skills/dreamescaper/blazorbindings.maui/blazorbindings-maui-third-party.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00085 $0.00725
Opus 5 $0.00043 $0.00362
Sonnet 5 $0.00017 $0.00145
Haiku 4.5 $0.00009 $0.00072

Measured 12d ago against content hash 0cb172094c32, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

blazorbindings-maui-third-party 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 12d 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.

.agents/skills/blazorbindings-maui-third-party/SKILL.md · 39 lines

How it starts

The opening of the file, as written. The whole thing — 39 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BlazorBindings.Maui Third-Party Controls

Make the smallest integration that preserves the library's native MAUI behavior while exposing a Razor-friendly surface.

Choose the integration path

  1. Generate a wrapper for a control, behavior, or other BindableObject that participates in Razor rendering. Read component generation.
  2. Additionally register an attached-property handler when Razor must pass a vendor attached property to a generated element. Read attached properties only for this case.
  3. Use the native-element bridge when the vendor API must receive a constructed native element and invoke an imperative presentation API, as with popups or bottom sheets. Read native element bridges only for this case.

Prefer normal generated components and BlazorBindings.Maui.INavigation APIs. Do not obtain a native element merely to set properties that the generated wrapper can expose.

Workflow

  • Inspect the app's target frameworks, package versions, _Imports.razor, MauiProgram, and existing Properties/Elements.cs and Elements/ output before editing.
  • Add the vendor NuGet package and perform its documented MAUI startup registration in MauiProgram. Keep vendor licensing or platform setup explicit; wrapper generation does not replace it.
  • Install or update BlazorBindings.Maui.ComponentGenerator, preferably at a version compatible with the app's BlazorBindings.Maui package.
  • Declare generation attributes in Properties/Elements.cs. Generate individual types by default; use assembly-wide generation only when the requested breadth and naming-collision risk are understood.
  • Run generation against the intended app project, inspect the generated namespaces and parameters, then import only the namespaces the Razor files need.
  • Keep all Elements/**/*.generated.cs files generated and never hand-edit them. Put custom code in separate non-generated files.
  • Build at least one relevant target framework. Treat generator warnings, duplicate component names, invalid Razor parameters, and native-type cast failures as integration defects rather than suppressing them broadly.
  • Re-run generation whenever the vendor package, generation attributes, or BlazorBindings.Maui version changes.

Read the full file on GitHub · 39 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 39 lines · 85 tokens per session scan A 0cb172094c32

Subscribe to this mod's changes

blazorbindings-maui-third-party is a skill published in the GitHub repository Dreamescaper/BlazorBindings.Maui (319 stars, last pushed 8d ago), licensed MIT. It adds 85 tokens to every session and 725 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.

Related

Other skills, from other repositories

mapsui

Use when embedding interactive 2D maps in .NET desktop (WinForms/WPF) or mobile (MAUI) applications — tile layers, vector features, map controls. Mapsui: cross-platform .NET map component library.

znlgis/opengis-skills · 49 tokens

xamarin-maui-framework-migration

Baseline migration skill for moving Xamarin.Forms solutions or copied modules to .NET MAUI using a create-new-project workflow.

syncfusion/xamarin-maui-migration-skills · 31 tokens

xamarin-maui-platform-specific-migration

Companion migration skill for Android, iOS, and Windows platform-specific tasks when moving Xamarin.Forms code to .NET MAUI.

syncfusion/xamarin-maui-migration-skills · 35 tokens

xamarin-maui-renderer-handler-migration

Companion migration skill for converting Xamarin.Forms custom renderers and effects to .NET MAUI handlers.

syncfusion/xamarin-maui-migration-skills · 30 tokens

maui

Build, review, or migrate .NET MAUI applications across Android, iOS, macOS, and Windows with correct cross-platform UI, platform integration, and native packaging assumptions. USE FOR: working on cross-platform mobile or desktop UI in .NET MAUI; integrating device capabilities, navigation, or platform-specific code…

managedcode/dotnet-skills · 121 tokens

uno-platform

Build cross-platform .NET applications with Uno Platform targeting WebAssembly, iOS, Android, macOS, Linux, and Windows from a single XAML/C# codebase. USE FOR: building cross-platform apps from a single C# and XAML codebase; targeting WebAssembly, iOS, Android, macOS, Linux, and Windows simultaneously; migrating WPF…

managedcode/dotnet-skills · 129 tokens