maui-accessibility

maui-accessibility is a skill for Claude Code, Codex from dotnet/maui-labs. It costs 60 tokens per session (815 once invoked), scanned A, original, MIT.

A guide to making .NET MAUI app interfaces usable with screen readers and other assistive technology. .NET MAUI is Microsoft’s framework for building apps for multiple platforms from shared code.

In plain words
What is it for?
Use it to audit or improve accessibility in MAUI apps, including labels, hints, heading levels, keyboard or touch focus, and platform-specific behavior.
Why use it?
It helps prevent controls, headings, focus changes, and announcements from being confusing or unavailable to people with disabilities.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to audit or improve accessibility in MAUI apps, including labels, hints, heading levels, keyboard or touch focus, and platform-specific behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dotnet/maui-labs/maui-accessibility
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.

Any agent
npx skills add dotnet/maui-labs --skill maui-accessibility
Clone the repo
git clone --depth 1 https://github.com/dotnet/maui-labs

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 maui-accessibility

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/dotnet/maui-labs/maui-accessibility"><img src="https://agentmods.dev/badge/skills/dotnet/maui-labs/maui-accessibility.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 815 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.00060 $0.00815
Opus 5 $0.00030 $0.00407
Sonnet 5 $0.00012 $0.00163
Haiku 4.5 $0.00006 $0.00081

Measured 5d ago against content hash 82ad36da1e27, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

maui-accessibility 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 5d 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.

plugins/dotnet-maui/skills/maui-accessibility/SKILL.md · 104 lines

How it starts

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

MAUI Accessibility

Use this skill to make MAUI UI understandable and operable through assistive technologies. Accessibility metadata should be added while building UI, not as a final cosmetic pass.

Workflow

  1. Identify the user task and target controls.
  2. Add accessible names with SemanticProperties.Description.
  3. Add action guidance with SemanticProperties.Hint when the control's result is not obvious.
  4. Add SemanticProperties.HeadingLevel for page and section headings.
  5. Hide decorative or duplicate content from the accessibility tree.
  6. Use SemanticScreenReader.Announce for important dynamic changes.
  7. Move focus intentionally after navigation or validation when it helps the user.
  8. Keep AutomationId for testing, but do not treat it as the accessible label.
  9. Verify with platform screen readers when possible.

Common Patterns

Icon-only button

<ImageButton
    AutomationId="save-button"
    Source="save.png"
    SemanticProperties.Description="Save"
    SemanticProperties.Hint="Saves the current form" />

Heading

<Label
    Text="Account settings"
    SemanticProperties.HeadingLevel="Level1"
    Style="{StaticResource TitleStyle}" />

Decorative image

<Image
    Source="card_background.png"
    AutomationProperties.IsInAccessibleTree="False" />

Dynamic announcement

SemanticScreenReader.Announce("Profile saved");

Accessibility Checklist

  • Icon-only controls have descriptions and, when useful, hints.
  • Page and major section headings have heading levels.
  • Decorative images and duplicated labels are hidden from the accessibility tree.
  • Dynamic validation, save, and navigation outcomes are announced when important.
  • Touch targets are large enough and not crowded.
  • Color is not the only way information is conveyed.
  • AutomationId values exist for test automation but are not used as a substitute for accessible names.

Platform Notes

  • Android TalkBack, iOS VoiceOver, macOS VoiceOver, and Windows Narrator differ in how aggressively they read hints and grouped content; verify on the target platform for critical flows.
  • For validation errors, move semantic focus to the summary or first invalid field and announce the error.
  • For CollectionView rows, ensure the row exposes a meaningful label instead of reading every decorative child.

Read the full file on GitHub · 104 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. 5d ago Changed · -57 tokens per session 82ad36da1e27
  2. 9d ago First seen · 104 lines · 117 tokens per session scan A ee23c97a31d7

Subscribe to this mod's changes

maui-accessibility is a skill published in the GitHub repository dotnet/maui-labs (213 stars, last pushed today), licensed MIT. It adds 60 tokens to every session and 815 once invoked, about $0.0003 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

m3-expressive

Material 3 Expressive design patterns for Jetpack Compose - expressive theming, motion physics, shape morphing, typography emphasis, color emphasis, and all 28 expressive components.

TalissonVitorino/kmp-ios-skills · 41 tokens

liquid-glass

Apple Liquid Glass design patterns for SwiftUI iOS 26 - glass effects, morphing, containers, interactive glass, tinting, accessibility, and cross-platform glass design.

TalissonVitorino/kmp-ios-skills · 40 tokens

tipkit

In-app tips and feature discovery on iOS/macOS with Apple's TipKit — the Tip protocol (title/message/image/actions/options/id), display via TipView, popoverTip(:arrowEdge:action:), and UIKit TipUIView/TipUIPopoverViewController; eligibility with @Parameter + the #Rule macro and Event.donate(); Tips.configure…

TalissonVitorino/kmp-ios-skills · 228 tokens

m3-expressive

Material 3 Expressive design patterns for Jetpack Compose - expressive theming, motion physics, shape morphing, typography emphasis, color emphasis, and all 28 expressive components.

ahmed3elshaer/everything-claude-code-mobile · 41 tokens

liquid-glass

Apple Liquid Glass design patterns for SwiftUI iOS 26 - glass effects, morphing, containers, interactive glass, tinting, accessibility, and cross-platform glass design.

ahmed3elshaer/everything-claude-code-mobile · 40 tokens

accessibility-patterns

Mobile accessibility patterns for Android and iOS - content descriptions, touch targets, screen reader support, WCAG compliance, dynamic type, and color contrast.

ahmed3elshaer/everything-claude-code-mobile · 35 tokens