client/.github/skills/android-accessibility/SKILL.md
Expert checklist and prompts for auditing and fixing Android accessibility issues, especially in Jetpack Compose.
npx skillsauth add ahaodev/heji android-accessibilityInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.development
Apply Shadmin feature-development standards (backend Go/Gin/Ent + frontend React/TS). Use when adding/modifying features, CRUD modules, API routes/controllers/usecases/repositories, Ent schemas, or web pages/routes.
data-ai
Convert Android XML layouts to Jetpack Compose. Use when asked to migrate Views to Compose, convert XML to Composables, or modernize UI from View system to Compose.
development
Kotlin Coroutines review and remediation for Android. Use when asked to review concurrency usage, fix coroutine-related bugs, improve thread safety, or resolve lifecycle issues in Kotlin/Android code.
development
Debug and optimize Android/Gradle build performance. Use when builds are slow, investigating CI/CD performance, analyzing build scans, or identifying compilation bottlenecks.