skills/apple-intelligence/app-intents/SKILL.md
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 skillsauth add taiberium/claude_code_setting app-intentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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)
| +-- In Visual Intelligence
| | --> IntentValueQuery + SemanticContentDescriptor (advanced-features.md)
| +-- As onscreen entities for Siri/ChatGPT
| --> .userActivity() + EntityIdentifier (advanced-features.md)
|
+-- Show rich results in Siri
| +-- Static display only
| | --> .result(view:) snippet (advanced-features.md)
| +-- Interactive buttons/controls
| --> SnippetIntent protocol (advanced-features.md)
|
+-- Present choices to the user
| --> requestChoice(between:) (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 |
| 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 |
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"
var 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
)
}
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() handles errors gracefully and returns meaningful dialog/Users/ravishankar/Downloads/docs/AppIntents-Updates.mdtools
Generates multi-step onboarding flows with persistence for iOS/macOS apps. Use when user wants to add onboarding, welcome screens, or first-launch experience.
tools
Generates an offline operation queue with persistence, automatic retry on connectivity, and conflict resolution. Use when user needs offline-first behavior, queued mutations, or pending operations that sync when back online.
development
Generates offer code distribution strategies and configuration guides for subscription and IAP promotions — including partner campaigns, influencer programs, and email re-engagement. Use when setting up offer codes for distribution.
tools
Generates a protocol-based networking layer with async/await, error handling, and swappable implementations. Use when user wants to add API client, networking, or HTTP layer.