Siri Intents SIRI VOICE COMMANDS (App Intents): FRAMEWORK: import AppIntents (iOS 16+, replaces legacy SiriKit Intents) BASIC INTENT: struct OpenNoteIntent: AppIntent { static var title: LocalizedStringResource = "Open Note" static var description = IntentDescription("Opens a specific note in the app") @Parameter(title: "Note Name") var noteName: String func perform() async throws - some IntentResult & ProvidesDialog { // Navigate to note or perform action return .result(dialog: "Opening \(noteName)") } } APP SHORTCUTS (makes intent discoverable via Siri without user setup): struct MyAppShort…