Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
dadederk avatar

Ios Accessibility

  • 643 installs
  • 165 repo stars
  • Updated March 9, 2026
  • dadederk/ios-accessibility-agent-skill

ios-accessibility is an agent skill that provides expert iOS guidance on VoiceOver, Dynamic Type, accessibility labels, traits, and assistive-technology testing for developers building inclusive UIKit and SwiftUI applica

About

ios-accessibility is the dadederk agent skill for implementing Apple platform accessibility correctly the first time. It covers VoiceOver navigation, Dynamic Type scaling, accessibility labels/traits/hints/values, Switch Control, Voice Control, Full Keyboard Access, and inclusive design culture practices referenced in its trigger list. The skill supports both manual testing walkthroughs and automated accessibility auditing workflows while building UIKit or SwiftUI screens. Developers invoke it when App Store accessibility failures, audit warnings, or user reports reveal missing labels or broken rotor navigation. It bridges HIG requirements and code-level APIs so agents output production-ready accessible components rather than generic web a11y advice misapplied to iOS.

  • Expert guidance on VoiceOver, Dynamic Type, assistive technologies and inclusive design
  • Covers both UIKit and SwiftUI accessibility implementations
  • Shift-left approach integrating accessibility from prototypes through production
  • Recommends testing as you go with manual and automated methods
  • Presents solutions with confidence-ordered pros, cons and trade-offs

Ios Accessibility by the numbers

  • 643 all-time installs (skills.sh)
  • Ranked #520 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Data as of Jul 30, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dadederk/ios-accessibility-agent-skill --skill ios-accessibility

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs643
repo stars165
Last updatedMarch 9, 2026
Repositorydadederk/ios-accessibility-agent-skill

How do you implement VoiceOver accessibility in SwiftUI?

Get expert iOS-specific guidance on VoiceOver, Dynamic Type, accessibility labels, traits, and inclusive implementation patterns while building mobile apps.

Who is it for?

iOS developers shipping UIKit or SwiftUI features who need VoiceOver, Dynamic Type, and assistive-tech patterns beyond generic web accessibility guidance.

Skip if: Android Compose accessibility work, backend-only services, or teams skipping mobile assistive-technology requirements.

When should I use this skill?

User mentions iOS accessibility, VoiceOver, Dynamic Type, accessibility labels, traits, Switch Control, or inclusive iOS design.

What you get

Accessible iOS UI with VoiceOver labels, traits, Dynamic Type support, and documented manual or automated accessibility test steps.

  • Accessible view implementations
  • Accessibility audit checklist results
  • VoiceOver navigation documentation

Files

SKILL.mdMarkdownGitHub ↗

iOS Accessibility

Overview

This skill provides expert guidance on iOS accessibility, covering VoiceOver, Dynamic Type, assistive technologies, inclusive design practices, and both UIKit and SwiftUI implementations. Use this skill to help developers build apps that work for everyone.

The Approach

  • Shift-left — Accessibility is part of the process. It needs to be considered even in prototypes or MVPs.
  • User-centric — Accessibility is about people. Checklists help, but the goal is not checklist compliance. The goal is to offer a great experience for users with disabilities.
  • Progress over perfection — Anytime is a good time to start. Focus on iterative and incremental improvements as you go. It goes a long way.
  • Test as you go — Manual testing is part of development.

Agent Behavior Contract

1. Accessibility is non-deterministic. Propose potential solutions in order of confidence and present with clear pros, cons, and trade-offs. 2. Before proposing fixes, identify the platform (UIKit vs SwiftUI) and the assistive technology, accessibility feature, or design consideration in context. 3. Do not recommend accessibility fixes without considering the user experience impact. 4. Prefer manual testing guidance alongside code changes, together with any automated or semi-automated solutions. 5. Cross-reference multiple assistive technologies when relevant (VoiceOver, Voice Control, Switch Control, Full Keyboard Access).

Anti-Patterns to Avoid

  • Do not add trait names to labels — Say "Close", not "Close button" (VoiceOver adds "button" automatically, when using the button trait)
  • Do not use `.accessibilityHidden(true)` on interactive elements — Users won't be able to access them
  • Do not use fixed font sizes — Always use text styles for Dynamic Type support
  • Do not use hardcoded colors for text — Use semantic colors (.label, .secondaryLabel) for contrast and Dark Mode
  • Do not group UIKit elements without a clear combined label — If isAccessibilityElement = true, set accessibilityLabel (and value/traits as needed).
  • Do not group SwiftUI elements without a clear combined label — If .accessibilityElement(children: .ignore) is used, provide label/value/traits manually.
  • Do not add hints unless needed — It should be clear what a component expresses, and does, by its label/value/traits. Only configure for adding extra clarity or context.
  • Do not rely on `onTapGesture` alone — Prefer semantic controls like Button. If gesture handling is unavoidable, add button traits and clear labels.
  • Do not scale chrome controls with Dynamic Type — For navigation bars, toolbars, and tab bars, prefer Large Content Viewer (iOS 13+) using `.accessibilityShowsLargeContentViewer`) / `UILargeContentViewerItem`.

General Guidance

Prefer native components: Whenever possible, use Apple's native components and customize them to your needs instead of building custom components from scratch.

Design system first: Whenever the project uses a design system of its own (colors, text styles, component catalog), propose changes in the design system itself so the improvement snowballs everywhere in the app using an improved component.

Platform parity: The same accessibility principles apply to both UIKit and SwiftUI, but APIs and implementation details differ.

Project Settings Intake (Evaluate Before Advising)

Before providing accessibility guidance, determine:

Project Capabilities

Project Conventions

  • Design system — Does the project define its own design system (colors, text styles, UI component catalogue)? Propose changes in the design system when appropriate, not only per-feature.
  • Semantic colors and text styles — Does the project use semantic colors (.label, .systemBackground) and text styles (.preferredFont(forTextStyle:) in UIKit, .font(.body) in SwiftUI) vs hardcoded values?
  • Existing accessibility patterns — Search for .accessibilityLabel, .accessibilityTraits, etc. to match project style.
  • Localization — Accessibility labels, values, and hints should be localized. Match the project's localization conventions.
  • UI construction — Interface Builder (XIB/Storyboard) or code-only?
  • Custom gestures — Identify if custom gestures need accessible alternatives.
  • Accessibility test coverage — Existing UI tests auditing for accessibility?

When Settings Are Unknown

If you can't determine the above, ask the developer to confirm before giving version-specific or framework-specific guidance.

Quick Decision Tree

When a developer needs accessibility guidance, follow this decision tree:

1. VoiceOver issues?

  • Core concepts: Read references/voiceover.md
  • UIKit implementation: Read references/voiceover-uikit.md
  • SwiftUI implementation: Read references/voiceover-swiftui.md

2. Dynamic Type, text scaling, or adaptive layout?

  • Core concepts: Read references/dynamic-type.md
  • UIKit implementation: Read references/dynamic-type-uikit.md
  • SwiftUI implementation: Read references/dynamic-type-swiftui.md

3. Other assistive technologies?

  • Voice Control: Read references/voice-control.md
  • Switch Control: Read references/switch-control.md
  • Full Keyboard Access: Read references/full-keyboard-access.md

4. Testing accessibility?

  • Manual testing: Read references/testing-manual.md
  • Automated testing: Read references/testing-automated.md

5. Cross-cutting concerns?

  • Contrast, targets, motion, haptics: Read references/good-practices.md
  • Culture and mindset: Read references/concepts-and-culture.md

6. Quick reference needed?

  • Common mistakes, patterns, checklists: Read references/playbook.md

7. Need definitions or sources?

  • Glossary: Read references/glossary.md
  • Sources and further reading: Read references/resources.md

Quick Playbook (Start Here)

1. Confirm framework (UIKit vs SwiftUI) and iOS target. 2. Identify assistive technology and user-experience issue. 3. Use the Decision Tree and jump into the relevant reference file. 4. Whenever it makes sense, provide 2-3 options with trade-offs and expected UX impact. 5. Always include testing guidance alongside any code changes.

For common mistakes, inspector warnings, code patterns, version-specific APIs, and checklists, use references/playbook.md.

Example Prompts and Expected Shape

Example prompt: “VoiceOver reads ‘button’ for my close button.” Expected response:

  • Confirm framework and iOS target if unknown.
  • Provide options when there are multiple viable approaches (for example, add an accessibility label vs a labeled button using icon-only style), with trade-offs.
  • Include a framework-appropriate snippet.
  • Add testing steps (VoiceOver, Voice Control...).

Example prompt: “Dynamic Type breaks my header layout in UIKit.” Expected response:

  • Confirm preferredContentSizeCategory handling and iOS target.
  • Suggest layout adaptation strategies (stack axis change vs constraints).
  • Include a UIKit snippet and testing steps at Large Accessibility Sizes.

Edge Cases and Gotchas

  • Mixed UIKit/SwiftUI screens: use correct API set per view layer.
  • Custom controls or gestures: always provide a VoiceOver/Voice Control alternative.
  • Unknown iOS target: ask before suggesting version-specific APIs.
  • No code context: ask for relevant view code or a screenshot of the Accessibility Inspector.
  • Localization: all labels, values, and hints (and any other string parameter like custom content, or accessibility announcements, etc.) must be localized.

Related skills

FAQ

Which assistive technologies does ios-accessibility cover?

ios-accessibility addresses VoiceOver, Dynamic Type, Switch Control, Voice Control, and Full Keyboard Access, plus accessibility labels, traits, hints, values, and inclusive design practices for iOS.

Does ios-accessibility support automated testing?

ios-accessibility includes guidance for automated accessibility testing and auditing alongside manual VoiceOver walkthroughs when developers validate UIKit or SwiftUI screens.

Design & UI/UXfrontendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.