accessibility-generator
Generate accessibility infrastructure for VoiceOver, Dynamic Type, and accessibility features. Use when improving app accessibility, adding accessibility labels and hints, or auditing compliance.
npx skills add rshankras/claude-code-apple-skills --skill accessibility-generator --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Accessibility Generator Generate accessibility infrastructure for VoiceOver, Dynamic Type, and accessibility features. ## When This Skill Activates - User wants to improve app accessibility - User mentions VoiceOver, Dynamic Type, or accessibility - User needs to add accessibility labels and hints - User wants to audit accessibility compliance ## Pre-Generation Checks ```bash # Check existing accessibility usage grep -r "accessibilityLabel\|accessibilityHint\|AccessibilityFocused" --include="*.swift" | head -5 ``` ## Key Features ### Accessibility Labels ```swift Image(systemName: "heart.fill") .accessibilityLabel("Favorite") .accessibilityHint("Double tap to remove from favorites") ``` ### Dynamic Type Support ```swift Text("Title") .font(.title) // Scales automatically .dynamicTypeSize(...DynamicTypeSize.accessibility3) // Limit max size ``` ### Reduce Motion ```swift @Environment(\.accessibilityReduceMotion) private var reduceMotion withAnimation(reduceMotion ? nil : .spring()) { // Animation } ``` ### VoiceOver Groups ```swift VStack { Text("Item Name") Text("$9.99") } .accessibilityElement(children: .combine) ``` ## Visual Accessibility: Numbers and APIs (WWDC20) | Setting |
- When This Skill Activates
- Pre-Generation Checks
- Key Features
- Accessibility Labels
- Dynamic Type Support
- Reduce Motion
- VoiceOver Groups
- Visual Accessibility: Numbers and APIs (WWDC20)
- Deep Patterns (accessibility-patterns.md)
- Inclusive Design Principles (WWDC25)
- Generated Files
- Audit Checklist
- References
Check existing accessibility usage grep -r "accessibilityLabel\|accessibilityHint\|AccessibilityFocused" --include="*.swift" | head -5
What does the accessibility-generator skill do?
Generate accessibility infrastructure for VoiceOver, Dynamic Type, and accessibility features. Use when improving app accessibility, adding accessibility labels and hints, or auditing compliance.
How do I install it?
Run `npx skills add rshankras/claude-code-apple-skills --skill accessibility-generator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From rshankras/claude-code-apple-skills, a repository with 589 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
