← ClaudeAtlas

app-intentslisted

Implement App Intents for Siri, Shortcuts, Spotlight, widgets, Control Center, and Apple Intelligence on iOS. Covers AppIntent actions, AppEntity and EntityQuery models, AppShortcutsProvider phrases, IndexedEntity Spotlight indexing, WidgetConfigurationIntent, SnippetIntent, and assistant schemas. Use when exposing app actions or entities to system surfaces.
thiennc-tesoglobal/ios-skills · ★ 3 · AI & Automation · score 66
Install: claude install-skill thiennc-tesoglobal/ios-skills
# App Intents (iOS 26+) Implement, review, and extend App Intents to expose app functionality to Siri, Shortcuts, Spotlight, widgets, Control Center, and Apple Intelligence. ## Contents - [Triage Workflow](#triage-workflow) - [AppIntent Protocol](#appintent-protocol) - [`@Parameter`](#parameter) - [AppEntity](#appentity) - [EntityQuery (4 Variants)](#entityquery-4-variants) - [AppEnum](#appenum) - [AppShortcutsProvider](#appshortcutsprovider) - [System Surface Integration](#system-surface-integration) - [iOS 26 Additions](#ios-26-additions) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Triage Workflow ### Step 1: Choose the action, boundary, and surface Start from 1-3 valuable actions people want outside the app, not from its screen hierarchy. Record one design row per action: user goal; inline result or app destination; shared domain operation; parameters and entity query; confirmation/authentication; target surface and protocol. Use one explicit runtime route for app handoff instead of scattering navigation side effects through intents. Then choose the system feature and protocol that fit that action: | Surface | Protocol | Since | |---|---|---| | Siri / Shortcuts | `AppIntent` | iOS 16 | | Configurable widget | `WidgetConfigurationIntent` | iOS 17 | | Control Center | `ControlConfigurationIntent` | iOS 18 | | Spotlight search | `IndexedEntity` | iOS 18 | | Apple Intelligence | `@AppIntent(schema:)` | iO