feat(deeplink): forward agent links via bridge

This commit is contained in:
Peter Steinberger
2025-12-13 01:18:48 +00:00
parent a56daa6c06
commit 378e5acd23
6 changed files with 177 additions and 65 deletions

View File

@@ -10,6 +10,9 @@ struct ClawdisNodeApp: App {
RootCanvas()
.environmentObject(self.appModel)
.environmentObject(self.appModel.voiceWake)
.onOpenURL { url in
Task { await self.appModel.handleDeepLink(url: url) }
}
.onChange(of: self.scenePhase) { _, newValue in
self.appModel.setScenePhase(newValue)
}