App Intents Expert Skill
Expert guidance for the App Intents framework on iOS 26+. This skill covers building intents, entities, queries, App Shortcuts, interactive snippets, and integrating with Siri, Spotlight, Apple Intelligence, and Visual Intelligence.
When to use this skill
Use this skill when the developer is:
- Creating or modifying any
AppIntent, AppEntity, AppEnum, or EntityQuery
- Adding Siri, Shortcuts, Spotlight, or Apple Intelligence support to an app
- Building
AppShortcutsProvider or App Shortcuts
- Implementing interactive snippets with
SnippetIntent
- Indexing entities for Spotlight with
IndexedEntity
- Integrating with Visual Intelligence or image search
- Navigating with
TargetContentProvidingIntent and onAppIntentExecution
- Migrating from SiriKit (
INIntent) to App Intents
- Debugging App Intents build errors or runtime issues
Task-based routing
Based on what the developer needs, read the relevant reference files.
"I want to create my first App Intent"
- Read references/intent-fundamentals.md
- Then references/shortcuts-provider.md for discoverability
"I want my app's content searchable in Siri and Spotlight"
- Read references/entities-and-queries.md
- Then references/spotlight-indexing.md
- Then references/siri-integration.md
"I want to integrate with Apple Intelligence and the new Siri"
- Read references/apple-intelligence.md
- Then references/siri-integration.md
- Then references/intent-fundamentals.md if new to the framework
"I want to build interactive snippets"
- Read references/interactive-snippets.md
- Then references/intent-fundamentals.md if not familiar with intents
"I want to add Shortcuts and Siri phrases to my app"
- Read references/shortcuts-provider.md
- Then references/siri-integration.md
"I want to structure my app around App Intents"
- Read references/intent-driven-architecture.md
- Then references/entities-and-queries.md
- Then references/intent-fundamentals.md
"I want to support Visual Intelligence / image search"
- Read references/apple-intelligence.md — image search section
- Then references/entities-and-queries.md
"I'm migrating from SiriKit"
- Read references/migration-from-sirikit.md
- Then references/intent-fundamentals.md
"I need to test my App Intents"
- Read references/testing-intents.md
"I'm hitting build errors or runtime issues"
- Read references/common-pitfalls.md
Quick-reference checklists
Minimum viable App Intent
Minimum viable App Entity
Minimum viable App Shortcut
Making an entity Spotlight-searchable
Adding interactive snippets (iOS 26+)
Key decision tree
Which protocol should my intent conform to?
Is it a basic action?
→ AppIntent
Does it open your app to show content?
→ OpenIntent + TargetContentProvidingIntent
Does it render an interactive view?
→ SnippetIntent
Should it support undo?
→ UndoableIntent
Does it match an Apple Intelligence domain?
→ Use @AppIntent macro with the appropriate schema
Which entity type should I use?
Is the set of values fixed and known at compile time?
→ AppEnum
Is the set of values dynamic?
→ AppEntity
Do I need Spotlight indexing?
→ AppEntity + IndexedEntity
Do I need image search / Visual Intelligence?
→ AppEntity + Transferable + OpenIntent
Which query type should I use?
Can all entities fit in memory?
→ EnumerableEntityQuery
Do I need text-based search?
→ EntityStringQuery
Do I need filtering by properties?
→ EntityPropertyQuery
Do I only need lookup by ID?
→ EntityQuery (base protocol)
Should a property be @Property, @ComputedProperty, or @DeferredProperty?
Is the value stored on the entity struct?
→ @Property
Can the value be derived from another source (UserDefaults, model)?
→ @ComputedProperty (preferred — lower overhead)
Is the value expensive to compute (network call, heavy I/O)?
→ @DeferredProperty (async getter, only called when system requests it)
Framework architecture notes
- App Intents uses build-time metadata extraction. Your Swift source code is read at compile time to generate an App Intents representation stored inside your app bundle. This is why certain values (titles, display representations) must be compile-time constants.
- The system reads this metadata without running your app. After installation, intents, entities, and shortcuts are available immediately.
- Each target in your app is processed independently. When sharing App Intent types across targets, use
AppIntentsPackage to register each target.
- App Intents can now live in Swift Packages and static libraries (new in iOS 26).
- Register dependencies with
AppDependencyManager.shared.add { } as early as possible in your app's lifecycle (typically in the App.init()).
1---2name: app-intents-expert-skill3description: Expert App Intents guidance for building Siri, Shortcuts, Spotlight, Apple Intelligence, and interactive snippet integrations on iOS 26+. Use when implementing AppIntent, AppEntity, AppEnum, EntityQuery, AppShortcutsProvider, SnippetIntent, SiriTipView, IndexedEntity, or when making an app work with Siri, Shortcuts, Spotlight, Apple Intelligence, Visual Intelligence, Action Button, or Apple Pencil. Also use when asked about App Intents architecture, intent-driven development, or migrating from SiriKit.4license: MIT5---67# App Intents Expert Skill89Expert guidance for the App Intents framework on iOS 26+. This skill covers building intents, entities, queries, App Shortcuts, interactive snippets, and integrating with Siri, Spotlight, Apple Intelligence, and Visual Intelligence.1011## When to use this skill1213Use this skill when the developer is:14- Creating or modifying any `AppIntent`, `AppEntity`, `AppEnum`, or `EntityQuery`15- Adding Siri, Shortcuts, Spotlight, or Apple Intelligence support to an app16- Building `AppShortcutsProvider` or App Shortcuts17- Implementing interactive snippets with `SnippetIntent`18- Indexing entities for Spotlight with `IndexedEntity`19- Integrating with Visual Intelligence or image search20- Navigating with `TargetContentProvidingIntent` and `onAppIntentExecution`21- Migrating from SiriKit (`INIntent`) to App Intents22- Debugging App Intents build errors or runtime issues2324## Task-based routing2526Based on what the developer needs, read the relevant reference files.2728### "I want to create my first App Intent"291. Read [references/intent-fundamentals.md](references/intent-fundamentals.md)302. Then [references/shortcuts-provider.md](references/shortcuts-provider.md) for discoverability3132### "I want my app's content searchable in Siri and Spotlight"331. Read [references/entities-and-queries.md](references/entities-and-queries.md)342. Then [references/spotlight-indexing.md](references/spotlight-indexing.md)353. Then [references/siri-integration.md](references/siri-integration.md)3637### "I want to integrate with Apple Intelligence and the new Siri"381. Read [references/apple-intelligence.md](references/apple-intelligence.md)392. Then [references/siri-integration.md](references/siri-integration.md)403. Then [references/intent-fundamentals.md](references/intent-fundamentals.md) if new to the framework4142### "I want to build interactive snippets"431. Read [references/interactive-snippets.md](references/interactive-snippets.md)442. Then [references/intent-fundamentals.md](references/intent-fundamentals.md) if not familiar with intents4546### "I want to add Shortcuts and Siri phrases to my app"471. Read [references/shortcuts-provider.md](references/shortcuts-provider.md)482. Then [references/siri-integration.md](references/siri-integration.md)4950### "I want to structure my app around App Intents"511. Read [references/intent-driven-architecture.md](references/intent-driven-architecture.md)522. Then [references/entities-and-queries.md](references/entities-and-queries.md)533. Then [references/intent-fundamentals.md](references/intent-fundamentals.md)5455### "I want to support Visual Intelligence / image search"561. Read [references/apple-intelligence.md](references/apple-intelligence.md) — image search section572. Then [references/entities-and-queries.md](references/entities-and-queries.md)5859### "I'm migrating from SiriKit"601. Read [references/migration-from-sirikit.md](references/migration-from-sirikit.md)612. Then [references/intent-fundamentals.md](references/intent-fundamentals.md)6263### "I need to test my App Intents"641. Read [references/testing-intents.md](references/testing-intents.md)6566### "I'm hitting build errors or runtime issues"671. Read [references/common-pitfalls.md](references/common-pitfalls.md)6869## Quick-reference checklists7071### Minimum viable App Intent72- [ ] Create a struct conforming to `AppIntent`73- [ ] Add a `static let title: LocalizedStringResource`74- [ ] Implement `func perform() async throws -> some IntentResult`75- [ ] Add `@Parameter` for any inputs76- [ ] Add a `ParameterSummary` for all required parameters77- [ ] Set `supportedModes` if the intent should foreground the app7879### Minimum viable App Entity80- [ ] Create a struct conforming to `AppEntity`81- [ ] Add a persistent, unique `id` property82- [ ] Add `@Property` or `@ComputedProperty` for each exposed property83- [ ] Provide `typeDisplayRepresentation` and `displayRepresentation`84- [ ] Create an `EntityQuery` with `entities(for:)` method85- [ ] Set `static let defaultQuery` on the entity86- [ ] Register data dependencies with `AppDependencyManager`8788### Minimum viable App Shortcut89- [ ] Create an `AppShortcutsProvider` with `static var appShortcuts`90- [ ] Create `AppShortcut` instances with intent, phrases, shortTitle, systemImageName91- [ ] Every phrase must include `\(.applicationName)`92- [ ] At most one `@Parameter` per phrase93- [ ] Call `updateAppShortcutParameters()` when suggested entities change9495### Making an entity Spotlight-searchable96- [ ] Conform entity to `IndexedEntity`97- [ ] Add `indexingKey` parameter to `@Property` attributes98- [ ] Donate entities using the framework's indexing APIs99- [ ] Implement an `OpenIntent` so tapping results navigates to the entity100101### Adding interactive snippets (iOS 26+)102- [ ] Create a struct conforming to `SnippetIntent`103- [ ] Mark all view-driving variables as `@Parameter`104- [ ] Return `.result(view:)` from `perform()`105- [ ] Use `Button(intent:)` or `Toggle(intent:)` in the snippet view106- [ ] Return `ShowsSnippetIntent` from the parent intent107- [ ] Do NOT mutate app state in the snippet intent's perform method108109## Key decision tree110111### Which protocol should my intent conform to?112113```114Is it a basic action?115 → AppIntent116117Does it open your app to show content?118 → OpenIntent + TargetContentProvidingIntent119120Does it render an interactive view?121 → SnippetIntent122123Should it support undo?124 → UndoableIntent125126Does it match an Apple Intelligence domain?127 → Use @AppIntent macro with the appropriate schema128```129130### Which entity type should I use?131132```133Is the set of values fixed and known at compile time?134 → AppEnum135136Is the set of values dynamic?137 → AppEntity138139Do I need Spotlight indexing?140 → AppEntity + IndexedEntity141142Do I need image search / Visual Intelligence?143 → AppEntity + Transferable + OpenIntent144```145146### Which query type should I use?147148```149Can all entities fit in memory?150 → EnumerableEntityQuery151152Do I need text-based search?153 → EntityStringQuery154155Do I need filtering by properties?156 → EntityPropertyQuery157158Do I only need lookup by ID?159 → EntityQuery (base protocol)160```161162### Should a property be @Property, @ComputedProperty, or @DeferredProperty?163164```165Is the value stored on the entity struct?166 → @Property167168Can the value be derived from another source (UserDefaults, model)?169 → @ComputedProperty (preferred — lower overhead)170171Is the value expensive to compute (network call, heavy I/O)?172 → @DeferredProperty (async getter, only called when system requests it)173```174175## Framework architecture notes176177- App Intents uses **build-time metadata extraction**. Your Swift source code is read at compile time to generate an App Intents representation stored inside your app bundle. This is why certain values (titles, display representations) must be compile-time constants.178- The system reads this metadata **without running your app**. After installation, intents, entities, and shortcuts are available immediately.179- Each target in your app is processed independently. When sharing App Intent types across targets, use `AppIntentsPackage` to register each target.180- App Intents can now live in **Swift Packages and static libraries** (new in iOS 26).181- Register dependencies with `AppDependencyManager.shared.add { }` as early as possible in your app's lifecycle (typically in the `App.init()`).