app-intents
Installation
SKILL.md
AppIntents — Siri, Shortcuts & Spotlight
Critical Constraints
- ❌ DO NOT use old SiriKit
INIntent→ ✅ UseAppIntentprotocol - ❌ DO NOT use
NSUserActivityalone for Spotlight → ✅ UseIndexedEntity+CSSearchableIndex.default().indexAppEntities() - ❌ DO NOT hardcode foreground-only intents → ✅ Use
supportedModesfor flexible execution
Basic App Intent
import AppIntents
struct FindNearestLandmarkIntent: AppIntent {
static var title: LocalizedStringResource = "Find Nearest Landmark"
@Parameter(title: "Category")
var category: String?