android-accessibility-pro

android-accessibility-pro is a skill for Claude Code, Codex from kelvinkosbab/AppBootstrapAI. It costs 92 tokens per session (1,100 once invoked), scanned A, original, MIT.

A review guide for making Android apps usable with accessibility tools, including TalkBack, Android’s screen reader, and external keyboards, switches, and braille displays. It covers both interface semantics and visual settings such as text size, contrast, and motion.

In plain words
What is it for?
Use it to audit Jetpack Compose or Android View screens for screen-reader behavior, keyboard and switch access, braille labels, text scaling, contrast, color use, and reduced motion.
Why use it?
It finds accessibility problems that may not be visible in ordinary code review or on a standard screen. It checks whether assistive technologies receive useful names, roles, states, and actions.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/kelvinkosbab/appbootstrapai/android-accessibility-pro
Any agent
npx skills add kelvinkosbab/AppBootstrapAI --skill android-accessibility-pro
Clone the repo
git clone --depth 1 https://github.com/kelvinkosbab/AppBootstrapAI

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 android-accessibility-pro

README.md
[![agentmods](https://agentmods.dev/badge/skills/kelvinkosbab/appbootstrapai/android-accessibility-pro.svg)](https://agentmods.dev/skills/kelvinkosbab/appbootstrapai/android-accessibility-pro)
Your own site
<a href="https://agentmods.dev/skills/kelvinkosbab/appbootstrapai/android-accessibility-pro"><img src="https://agentmods.dev/badge/skills/kelvinkosbab/appbootstrapai/android-accessibility-pro.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,100 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00092 $0.01100
Opus 5 $0.00046 $0.00550
Sonnet 5 $0.00018 $0.00220
Haiku 4.5 $0.00009 $0.00110

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

Security

Grade A, and why

android-accessibility-pro 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.

.claude/skills/android-accessibility-pro/SKILL.md · 74 lines

How it starts

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

Review Android app accessibility for correctness and completeness. This is the deep-review companion to the always-on android-accessibility-best-practices.md rule — the rule steers while writing; this skill audits whole screens. The Android sibling of swift-accessibility-pro. Report only genuine problems; don't nitpick.

Applies to Jetpack Compose (primary) with View-interop notes. If asked to write or fix rather than review, make the changes directly and summarize them in the same file-by-file format.

Review process:

  1. Audit the TalkBack semantics tree using references/semantics.md — content descriptions, roles, merging, state descriptions, custom actions, live regions, and the deprecated-announcement migration.
  2. Audit Bluetooth assistive input using references/input-access.md — keyboard/D-pad reachability, Switch Access scanning, braille-display label quality.
  3. Audit visual accessibility using references/visual.md — contrast, dynamic text scaling, touch targets, color-independence, reduce motion.

If doing a partial review, load only the relevant reference files.

Core Instructions

  • Audit the semantics tree, not the code style. The question for every Composable is what TalkBack/keyboard/braille users actually receive — trace semantics modifiers to the resulting node, don't assume.
  • The input methods share one tree. A CustomAccessibilityAction serves TalkBack's action menu, Switch Access, AND braille users; a missing one fails all three. Report tree problems once, noting every affected input method.
  • Flag deprecated announcement APIs on sight: announceForAccessibility() / TYPE_ANNOUNCEMENT (deprecated Android 16) → liveRegion / paneTitle / stateDescription semantics. AI-generated code still emits the old calls.
  • Localization is part of accessibility. Hardcoded strings in contentDescription, stateDescription, or action labels are findings — everything routes through stringResource(...).
  • Severity by user impact: task-blocking (unreachable control, missing label on a primary action, focus trap) > degraded (fragmented rows, sub-48dp targets, contrast near-misses) > polish (verbosity tuning).
  • Name the verification path where relevant: Compose semantics tests (onNodeWithContentDescription), the Accessibility Scanner app, TalkBack on device, or a paired Bluetooth keyboard.
  • Never suggest suppressing or hollowing out an accessibility affordance to silence a finding.

Read the full file on GitHub · 74 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. 5d ago First seen · 74 lines · 92 tokens per session scan A 421317d9a4cb

Subscribe to this mod's changes

android-accessibility-pro is a skill published in the GitHub repository kelvinkosbab/AppBootstrapAI (5 stars, last pushed 14d ago), licensed MIT. It adds 92 tokens to every session and 1,100 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

kmp-glassmorphism-ui

Implements a production-grade Glassmorphism design system for Kotlin Multiplatform (KMP) Compose Multiplatform projects. Use when the user asks for glass UI, frosted glass effects, glassmorphism theme, translucent/transparent UI components, liquid/blob animated backgrounds, or premium modern dark-mode design in a…

Aks-4125/kmp-glassmorphism-skill · 81 tokens

flutter-cherry-pick

How to land a formal cherry-pick of a merged PR for the flutter/flutter repo stable or beta channel. Only use for flutter/flutter landed pull requests. Only use when the cherry pick request is into "stable", "beta" or a branch that has the format with flutter- . -candidate.0.

flutter/flutter · 72 tokens

updating-android-sdk

Upgrades Flutter's Android SDK dependency to a new Android API version (or preview/canary release) in packages.txt, verifies CIPD tag uniqueness, and packages/uploads the binaries using createcipdpackages.sh across macOS, Linux, and Windows. Use whenever a user wants to pick up a new version of Android or upload…

flutter/flutter · 80 tokens

analyze-github-flake

Expertise in analyzing flake github issues in the flutter/flutter repository. Use when a user wants to analyze the flakiness of a specific link to a flutter github issue.

flutter/flutter · 42 tokens

upgrade-browser

Upgrade browser versions (Chrome or Firefox) in the Flutter Web Engine and/or Framework tests. Use when asked to roll or upgrade Chrome or Firefox to a newer version.

flutter/flutter · 36 tokens

run-devicelab-with-led

Run DeviceLab tests for Flutter PRs using LUCI's led CLI tool. Use when asked to run, launch, try, or deflake a post-submit or devicelab test against a PR using led.

flutter/flutter · 55 tokens