App Intents for Siri, Shortcuts, Spotlight, and Apple Intelligence integration including intent modes, interactive snippets, visual intelligence, and entity indexing. Use when implementing Siri integration, App Shortcuts, or Spotlight indexing.
npx skills add https://github.com/rshankras/claude-code-apple-skills --skill app-intents
Build intents that expose your app's functionality to Siri, Shortcuts, Spotlight, and Apple Intelligence. Covers the full App Intents framework from basic actions through advanced features like interactive snippets, intent modes, visual intelligence integration, and Spotlight entity indexing.
What do you need?
|
+-- Expose an action to Siri/Shortcuts
| +-- Simple action, no UI needed
| | --> Basic AppIntent (intents-basics.md)
| +-- Needs to show UI or ask user questions
| | --> Intent Modes + Interactive Snippets (advanced-features.md)
| +-- Needs a predictable voice phrase
| --> App Shortcuts (intents-basics.md)
|
+-- Make content searchable
| +-- In Spotlight
| | --> IndexedEntity + @Property (entities-spotlight.md)
| +-- Runnable from Spotlight on Mac
| | --> parameterSummary visibility gates (entities-spotlight.md)
| +-- In Visual Intelligence
| | --> IntentValueQuery + SemanticContentDescriptor (advanced-features.md)
| +-- As onscreen entities for Siri/ChatGPT
| --> annotation APIs + EntityIdentifier (advanced-features.md)
|
+-- Let Siri execute intents from natural language
| --> App Schemas: @AppIntent(schema:) / @AssistantIntent (advanced-features.md)
|
+-- Feed entities to Apple Intelligence (Use Model action)
| --> AttributedString params + entity JSON + Find actions (entities-spotlight.md)
|
+-- Hand entities to other apps as content/files
| --> Transferable / FileEntity (entities-spotlight.md)
|
+-- Show rich results in Siri
| +-- Static display only
| | --> .result(view:) snippet (advanced-features.md)
| +-- Interactive buttons/controls
| | --> SnippetIntent protocol (advanced-features.md)
| +-- Custom spoken dialog
| --> IntentDialog(full:supporting:) (advanced-features.md)
|
+-- Present choices to the user
| --> requestChoice(between:) (advanced-features.md)
|
+-- Teach Siri from in-app UI actions
| --> IntentDonationManager (advanced-features.md)
|
+-- Share intents via Swift Package
--> AppIntentsPackage protocol (advanced-features.md)
| Feature | Minimum OS | Framework |
|---------|-----------|-----------|
| AppIntent protocol | iOS 16 / macOS 13 | AppIntents |
| AppEntity protocol | iOS 16 / macOS 13 | AppIntents |
| AppShortcutsProvider | iOS 16 / macOS 13 | AppIntents |
| @Parameter macro | iOS 16 / macOS 13 | AppIntents |
| IndexedEntity protocol | iOS 18 / macOS 15 | AppIntents |
| @Property with indexingKey | iOS 18 / macOS 15 | AppIntents |
| Intent Modes (supportedModes) | iOS 26 / macOS 26 | AppIntents |
| requestChoice(between:) | iOS 26 / macOS 26 | AppIntents |
| @ComputedProperty | iOS 26 / macOS 26 | AppIntents |
| @DeferredProperty | iOS 26 / macOS 26 | AppIntents |
| SnippetIntent protocol | iOS 26 / macOS 26 | AppIntents |
| AppIntentsPackage protocol | iOS 26 / macOS 26 | AppIntents |
| Onscreen entities (.userActivity()) | iOS 26 / macOS 26 | AppIntents |
| @UnionValue | iOS 18 / macOS 15 | AppIntents |
| Assistant Schemas (@AssistantIntent) | iOS 18 | AppIntents |
| Transferable entities, FileEntity | iOS 18 / macOS 15 | AppIntents |
| UndoableIntent | iOS 26 / macOS 26 | AppIntents |
| App Schemas on @AppIntent(schema:) | iOS 27 / macOS 27 | AppIntents |
| IntentDonationManager, OwnershipProvidingEntity | iOS 27 / macOS 27 | AppIntents |
| AppIntentsTesting framework | Xcode 26 cycle (WWDC26) | AppIntentsTesting |
| Task | Type/API | Reference File |
|------|----------|----------------|
| Define an action | AppIntent protocol | intents-basics.md |
| Accept parameters | @Parameter macro | intents-basics.md |
| Create voice phrases | AppShortcutsProvider | intents-basics.md |
| Define a data entity | AppEntity protocol | entities-spotlight.md |
| Index in Spotlight | IndexedEntity protocol | entities-spotlight.md |
| Mark indexable fields | @Property(indexingKey:) | entities-spotlight.md |
| Run in background/foreground | supportedModes | advanced-features.md |
| Continue in foreground | continueInForeground() | advanced-features.md |
| Show result UI | .result(view:) | advanced-features.md |
| Interactive result UI | SnippetIntent protocol | advanced-features.md |
| Present choices | requestChoice(between:) | advanced-features.md |
| Visual intelligence search | IntentValueQuery | advanced-features.md |
| Onscreen entity association | .userActivity() modifier | advanced-features.md |
| Computed/deferred properties | @ComputedProperty, @DeferredProperty | advanced-features.md |
| Share via packages | AppIntentsPackage | advanced-features.md |
| Make intents Siri-executable | @AppIntent(schema:), @AssistantIntent | advanced-features.md |
| Update-intent "clear vs leave unchanged" | valueState (.set/.set(nil)/.unset) | advanced-features.md |
| Custom Siri dialog | IntentDialog(full:supporting:) | advanced-features.md |
| Donate in-app UI actions | IntentDonationManager | advanced-features.md |
| Shared-content confirmations | OwnershipProvidingEntity | advanced-features.md |
| Undo intent actions | UndoableIntent | advanced-features.md |
| Export entities as content/files | Transferable, FileEntity | entities-spotlight.md |
| Run from Spotlight on Mac | parameterSummary gates | entities-spotlight.md |
| Accept model-generated rich text | AttributedString parameters | entities-spotlight.md |
Read the user's code or requirements to determine:
Based on the need, read from this directory:
Apply patterns from the reference files. Check for common mistakes (see Top Mistakes below).
apple-intelligence/visual-intelligence/apple-intelligence/foundation-models/generators/deep-linking/ skillThese are the most frequent errors when implementing App Intents.
// ❌ Wrong -- no title or description
struct MyIntent: AppIntent {
func perform() async throws -> some IntentResult {
return .result()
}
}
// ✅ Correct -- static title is required
struct MyIntent: AppIntent {
static var title: LocalizedStringResource = "Do Something"
static var description: IntentDescription = "Performs the action"
func perform() async throws -> some IntentResult {
return .result()
}
}
// ❌ Wrong -- entities updated but Spotlight not notified
func saveRecipe(_ recipe: Recipe) {
database.save(recipe)
}
// ✅ Correct -- reindex after mutations
func saveRecipe(_ recipe: Recipe) async throws {
database.save(recipe)
try await CSSearchableIndex.default().indexAppEntities()
}
// ❌ Wrong -- forces app to foreground for a simple toggle
struct ToggleFavoriteIntent: AppIntent {
static var title: LocalizedStringResource = "Toggle Favorite"
static var openAppWhenRun = true // Unnecessary
func perform() async throws -> some IntentResult {
toggleFavorite()
return .result()
}
}
// ✅ Correct -- runs silently in background
struct ToggleFavoriteIntent: AppIntent {
static var title: LocalizedStringResource = "Toggle Favorite"
static let supportedModes: IntentModes = .background
func perform() async throws -> some IntentResult {
toggleFavorite()
return .result()
}
}
// ❌ Wrong -- entity has no way to be queried
struct NoteEntity: AppEntity {
var id: String
var title: String
// Missing: static var defaultQuery
}
// ✅ Correct -- provides a query so Siri can resolve entities
struct NoteEntity: AppEntity {
var id: String
var title: String
static var defaultQuery = NoteEntityQuery()
// ... typeDisplayRepresentation, displayRepresentation
}
// ❌ Wrong -- indexing thousands of items at once blocks the main thread
func indexAll() async throws {
let allItems = database.fetchAll() // 50,000 items
try await CSSearchableIndex.default().indexAppEntities()
}
// ✅ Correct -- batch index and run off main thread
func indexAll() async throws {
try await CSSearchableIndex.default().indexAppEntities(
of: RecipeEntity.self
)
}
How to decide *what* to expose and how it should behave — from Apple's design sessions.
Before shipping App Intents integration:
AppIntent has a static var title and static var descriptionAppEntity has typeDisplayRepresentation, displayRepresentation, and defaultQuery@Parameter properties have descriptive titlesEntityStringQuery or EntityPropertyQueryIndexedEntity types call CSSearchableIndex.default().indexAppEntities() after data changes@Property fields used in indexing have indexingKey set\(.applicationName)SnippetIntent (not plain AppIntent)perform() never mutates state — mutations live in the button intents (WWDC25 275)parameterSummary includes every required parameter without a default — the Spotlight-on-Mac visibility gate (WWDC25 260)AttributedString, not String (Use Model rich text, WWDC25 260)perform() handles errors gracefully and returns meaningful dialogRules throughout the reference files carry inline attributions to these sessions:
| Session | Covers |
|---------|--------|
| WWDC24 10133 — Bring your app to Siri | Assistant Schemas, 12 iOS 18 domains, semantic search |
| WWDC24 10210 — Bring your app's core features to users | Core doctrine: intents, entities, queries, reuse across surfaces |
| WWDC24 10134 — App Intents framework additions | IndexedEntity, Transferable, FileEntity, @UnionValue |
| WWDC24 10176 — Design App Intents for system experiences | Scope + parameter design rules, Open When Run |
| WWDC25 244 — Get to know App Intents | Protocol shapes, metadata extraction, ID contract, packaging |
| WWDC25 275 — Advances in App Intents | SnippetIntent, intent modes, undo, onscreen entities |
| WWDC25 260 — Develop for Shortcuts and Spotlight | Use Model action, Find actions, Mac Spotlight gates |
| WWDC26 240 — Build intelligent Siri experiences with App Schemas | Unified schema macros, testing ladder |
| WWDC26 343 — Advanced App Intents features for Siri | Dialogs, donations, ownership, annotation APIs |
| WWDC26 344 — Code-along: Make your app available to Siri | Canonical integration sequence, valueState |
~/Downloads/docs/AppIntents-Updates.md — read if present; skip silently if absent.Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take rshankras/app-intents from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.