← 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.
dpearson2699/swift-ios-skills · ★ 730 · AI & Automation · score 80
Install: claude install-skill dpearson2699/swift-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) - [Siri Integration](#siri-integration) - [Interactive Widget Intents](#interactive-widget-intents) - [Control Center Widgets (iOS 18+)](#control-center-widgets-ios-18) - [Spotlight and IndexedEntity (iOS 18+)](#spotlight-and-indexedentity-ios-18) - [iOS 26 Additions](#ios-26-additions) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Triage Workflow ### Step 1: Identify the integration surface Determine which system feature the intent targets: | 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:)` | iOS 18 | | Interactive snippets | `SnippetIntent` | iOS 26 | | Visual Intelligence | `IntentValueQuery` | iOS 26 | ### Step 2: Define the data model - Create `AppEntity` shadow models (do NOT conform core data models directly). - C