app-store
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Assistive Access implementation for cognitive accessibility including simplified scenes, navigation icons, runtime detection, and design principles. Use when optimizing apps for Assistive Access mode.
$ npx -y skills add rshankras/claude-code-apple-skills --skill assistive-access --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/assistive-accessContext preview
The summary Claude sees to decide when to auto-load this skill.
Assistive Access implementation for cognitive accessibility including simplified scenes, navigation icons, runtime detection, and design principles. Use when optimizing apps for Assistive Access mode.
name: assistive-access description: Assistive Access implementation for cognitive accessibility including simplified scenes, navigation icons, runtime detection, and design principles. Use when optimizing apps for Assistive Access mode. allowed-tools: [Read, Glob, Grep] last_verified: 2026-07-16 review_by: 2027-06-22 os_version: iOS 27 / macOS 27
Guide for implementing Assistive Access support in iOS and iPadOS apps. Assistive Access (iOS 17+/iPadOS 17+) provides a streamlined system experience for people with cognitive disabilities, presenting simplified interfaces with large controls and reduced complexity.
button always shown along the bottom (back returns to the Assistive Access Home Screen). The reduced frame keeps apps built for specific device sizes rendering correctly.
designed for cognitive accessibility — AAC apps and similar tools. The app looks identical to normal, just full-screen; requires layout that adapts to arbitrary sizes.
iPadOS 26): a tailored experience where native controls automatically render in the large, prominent Assistive Access style and follow the user's grid-or-rows layout setting. Recommended when unsure (WWDC25 238).
The Assistive Access mode itself shipped with iOS 17; the `AssistiveAccess` scene type, `UISupportsAssistiveAccess` key, and `.assistiveAccess` preview trait are iOS 26 APIs.
Add these keys to your app's `Info.plist` so the system lists your app as an "Optimized App" in Assistive Access configuration:
<key>UISupportsAssistiveAccess</key> <true/>
For AAC (Augmentative and Alternative Communication) apps or similar tools that need full-screen presentation:
<key>UISupportsAssistiveAccess</key> <true/> <key>UISupportsFullScreenInAssistiveAccess</key> <true/>
Add an `AssistiveAccess` scene alongside your standard `WindowGroup`:
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
AssistiveAccess {
AssistiveAccessContentView()
}
}
}The system automatically uses the `AssistiveAccess` scene when the device is in Assistive Access mode and falls back to `WindowGroup` otherwise.
Use `UIHostingSceneDelegate` with a static `rootScene` property that returns an `AssistiveAccess` scene:
class AssistiveAccessSceneDelegate: UIHostingSceneDelegate {
static var rootScene: some Scene {
AssistiveAccess {
AssistiveAccessContentView()
}
}
}Register the scene configuration in your app delegate with the `.windowAssistiveAccessApplication` role:
func application(
_ application: UIApplication,
configurationForConnecting connectingSceneSession: UISceneSession,
options: UIScene.ConnectionOptions
) -> UISceneConfiguration {
let config = UISceneConfiguration(
name: "Assistive Access",
sessionRole: .windowAssistiveAccessApplication
)
config.delegateClass = AssistiveAccessSceneDelegate.self
return config
}Detect whether Assistive Access mode is active at runtime to conditionally adjust behavior:
struct AdaptiveView: View {
@Environment(\.accessibilityAssistiveAccessEnabled) var assistiveAccessEnabled
var body: some View {
if assistiveAccessEnabled {
SimplifiedView()
} else {
FullFeatureView()
}
}
}Use this to hide advanced features, reduce information density, or switch to larger controls even within a shared view hierarchy.
Assistive Access uses large grid-based navigation, and icons paired with text reduce cognitive load. Give **every navigation title** an icon, not just the root (WWDC25 238):
// Paired with the navigation title of each screen
DrawView()
.navigationTitle("Draw")
.assistiveAccessNavigationIcon(systemImage: "hand.draw.fill")
// Using a custom image from the asset catalog
GalleryView()
.navigationTitle("Gallery")
.assistiveAccessNavigationIcon(Image("custom-icon"))These six principles guide what to build in your Assistive Access scene.
Identify the one or two most essential features and present only those. Remove secondary workflows, settings screens, and advanced options.
// ✅ Good: Only the core action
struct AssistiveAccessContentView: View {
var body: some View {
VStack(spacing: 24) {
MessageListView()
ComposeButton()
}
}
}
// ❌ Bad: Exposing the full app with all tabs
struct AssistiveAccessContentView: View {
var body: some View {
TabView {
MessagesTab()
ContactsTab()
SettingsTab()
ProfileTab()
}
}
}Use large buttons with ample spacing. Native SwiftUI controls automatically adopt Assistive Access styling, so prefer standard `Button`, `Toggle`, and `Picker` over custom controls.
// ✅ Good: Large, standard controls with generous spacing VStack(s
A collection of Claude Code skills for iOS, macOS, watchOS, visionOS, and Apple platform development. These skills help you plan and build apps, maintain code quality, ensure HIG compliance, and guide you from idea to App Store.
Repo: rshankras/claude-code-apple-skills
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Privacy-preserving ad measurement with AdAttributionKit (SKAdNetwork's successor) — install and re-engagement attribution, conversion-value strategy under…
Generate compelling App Store descriptions that convert browsers into users. Use when writing initial descriptions, improving existing copy, or drafting…
Apple Search Ads campaign strategy for indie developers — paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about…
Take a one-time in-app purchase from MISSING_METADATA to READY_TO_SUBMIT in App Store Connect — set its price schedule and localized display name/description…
Optimize app title, subtitle, and keywords for maximum App Store discoverability. Use when launching a new app, improving search rankings, entering new…