import AppIntents @available(iOS 18.0, *) struct OpenTimerIntent: AppIntent { static var title: LocalizedStringResource = "Open Time Clock" static var description = IntentDescription("Open the beenvoice time clock.") static var openAppWhenRun: Bool = true @MainActor func perform() async throws -> some IntentResult { guard let url = URL(string: "beenvoice://timer") else { return .result() } BeenVoiceIntentHelpers.openDeepLink(url) return .result() } }