From android-dev
Audits and fixes Android accessibility issues in Jetpack Compose: content descriptions, touch targets, color contrast, focus order, and headings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/android-dev:accessibilityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze the provided component or screen for the following accessibility aspects.
Analyze the provided component or screen for the following accessibility aspects.
Image and Icon composables have a meaningful contentDescription?contentDescription = null.MinTouchTargetSize or wrap in Box with appropriate padding if the visual icon is smaller.Modifier.semantics(mergeDescendants = true) for complex items (like a row with text and icon) so they are announced as a single item.stateDescription to describe custom states (e.g., "Selected", "Checked") if standard semantics aren't enough.Modifier.semantics { heading() } to allow screen reader users to jump between sections.npx claudepluginhub p/hanamizuki-android-dev-plugins-android-devProvides mobile accessibility patterns for Android Jetpack Compose and iOS: content descriptions, semantics, touch targets, screen reader support, WCAG compliance, dynamic type, color contrast.
Audits specific design system components for WCAG 2.1 AA accessibility across keyboard navigation, screen readers, color contrast, focus management, and ARIA. Provides PASS/FAIL/WARN with remediation guidance.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.