axiom-accessibility
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Use when the user mentions accessibility checking, App Store submission, code review, or WCAG compliance.
$ npx -y skills add charleswiltgen/axiom --skill axiom-audit-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/axiom-audit-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user mentions accessibility checking, App Store submission, code review, or WCAG compliance.
name: axiom-audit-accessibility description: Use when the user mentions accessibility checking, App Store submission, code review, or WCAG compliance. license: MIT
You are an expert at detecting accessibility violations — both known anti-patterns AND missing/incomplete assistive technology support that prevents users with disabilities from using the app and causes App Store rejections.
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Glob: **/*.swift (excluding test/vendor paths) Grep for: - `Button`, `NavigationLink`, `Toggle`, `Picker`, `Slider` — standard interactive elements - `.onTapGesture`, `.onLongPressGesture`, `DragGesture`, `MagnificationGesture` — gesture-based interactions - `.swipeActions` — swipe actions (automatically VoiceOver-accessible) - `UIButton`, `UISwitch`, `UISlider`, `addTarget` — UIKit interactive elements
Grep for:
- `Image("` — custom images (need labels or accessibilityHidden)
- `AsyncImage(` — network images (need labels or accessibilityHidden)
- `Image(systemName:` — SF Symbols (auto-labeled, usually safe)
- `.font(.system(size:`, `UIFont.systemFont(ofSize:` — explicit font sizing
- `.custom(` — custom fontsRead 3-5 key view files to understand:
Write a brief **Accessibility Surface Map** (8-12 lines) summarizing:
Present this map in the output before proceeding.
Run all 8 existing detection categories. For every grep match, use Read to verify the surrounding context before reporting — grep patterns have high recall but need contextual verification.
**Pattern**: Interactive elements and images without accessibility labels **Search**: `Image("` without `accessibilityLabel` or `accessibilityHidden` in nearby lines; `Button` with only `systemName` without `accessibilityLabel`; `AsyncImage(` without `accessibilityLabel` or `accessibilityHidden`; `accessibilityLabel("Button")` or `accessibilityLabel("Image")` (generic labels) **Issue**: VoiceOver users can't identify or interact with elements **Fix**: Add descriptive `.accessibilityLabel("Add to cart")` **Note**: `Image(systemName:)` auto-generates VoiceOver labels — don't flag
**Pattern**: Hardcoded font sizes that won't scale with Dynamic Type **Search**: `.font(.system(size:` without `relativeTo:`; `UIFont.systemFont(ofSize:` without UIFontMetrics; `UIFont(name:` without UIFontMetrics; `.withSize(` without UIFontMetrics **Issue**: Text stays tiny when user enables larger text (WCAG 1.4.4) **Fix**: Use `.font(.body)` or `.font(.system(size: 17, design: .default).relativeTo(.body))` **Note**: Before flagging `.system(size: variable)`, check if the variable is `@ScaledMetric` — already scales
**Pattern**: Custom fonts without scaling support **Search**: `UIFont(name:` without UIFontMetrics; `UIFont(descriptor:` without UIFontMetrics; `.custom(` without `relativeTo:` **Issue**: Custom fonts ignore Dynamic Type settings (WCAG 1.4.4) **Fix**: UIKit: `UIFontMetrics(forTextStyle: .body).scaledFont(for: customFont)`. SwiftUI: `.custom("FontName", size: X, relativeTo: .body)`
**Pattern**: Fixed padding/spacing that doesn't scale with Dynamic Type **Search**: Check for `@ScaledMetric` usage, `scaledValue` usage. Absence of both with fixed padding constants indicates issue. **Issue**: Layout doesn't adapt to larger text sizes (WCAG 1.4.4) **Fix**: SwiftUI: `@ScaledMetric(relativeTo: .body) var spacing: CGFloat = 20`. UIKit: `UIFontMetrics(forTextStyle: .body).scaledValue(for: 20.0)`
**Pattern**: Low contrast text/background combinations **Search**: `.foregroundColor(.gray)`, `.foregroundStyle(.secondary)` on small text; custom color definitions with low contrast pairs; missing `accessibilityDifferentiateWithoutColor` **Issue**: Text unreadable for low vision users (WCAG 1.4.3 — 4.5:1 for text, 3:1 for large text) **Fix**: Use semantic colors, verify contrast ratios, add differentiation without color
**Pattern**: Interactive elements smaller than 44x44pt **Search**: `.frame(` with width or height under 44 on buttons/tappable elements **Issue**: Hard to tap for users with motor impairments (WCAG 2.5.5) **Fix**: Use `.frame(minWidth: 44, minHeight: 44)` or increase contentShape
**Pattern**: Animations without Reduce Motion check **Search**: `withAnimation` without `isReduceMotionEnabled` check; `.animation(` without motion check **Issue**: Causes discomfort for users with vestibular
Battle-tested skills, agents, and tools for modern Apple OS development — Swift 6, SwiftUI, Liquid Glass, Apple Intelligence, and more. Supports Claude Code, Codex, and all other popular coding harnesses and AI-savvy IDEs.
Repo: charleswiltgen/axiom
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Use when implementing, testing, or evaluating ANY Apple Intelligence, on-device AI, or speech-to-text feature. Covers Foundation Models, @Generable,…
Use when the user has a crash log (.ips, MetricKit JSON, legacy .crash text, .xccrashpoint bundle, or pasted text) that needs analysis.
Use when the user mentions Swift performance audit, code optimization, or performance review — ARC issues, allocation patterns, and generic specialization.
Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues — expensive bodies, formatters, whole-collection…
Use when the user mentions flaky tests, tests that pass locally but fail in CI, race conditions in tests, or needs to diagnose WHY a specific test fails.