feat: external integration API (URL scheme + macOS distributed notifications)#457
Open
josepferrer wants to merge 2 commits into
Open
feat: external integration API (URL scheme + macOS distributed notifications)#457josepferrer wants to merge 2 commits into
josepferrer wants to merge 2 commits into
Conversation
…bility Tauri 2.11 introduced __tauri_command_name_ prefixed items alongside the existing __cmd__ prefix. Since Cargo.lock is gitignored, fresh clones resolve to Tauri 2.11+ and fail to compile. Adding both re-export variants ensures the build works with any Tauri 2.x version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…tifications) Add meetily:// URL scheme for external control and NSDistributedNotificationCenter broadcasting for external observability. Enables automation tools, scripts, and accessibility software to control and react to Meetily recording lifecycle. Inbound (URL scheme - 3 commands): - meetily://start-recording[?name=...] — start with optional meeting name - meetily://stop-recording — stop and save - meetily://toggle-recording — start if idle, stop if recording Outbound (macOS distributed notifications - 4 events): - com.meetily.ai.recording.started - com.meetily.ai.recording.stopped - com.meetily.ai.recording.error - com.meetily.ai.transcription.completed No new recording logic — all commands route to existing infrastructure. No UI changes. No breaking changes. macOS-only for distributed notifications, URL scheme works cross-platform via tauri-plugin-deep-link. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Collaborator
|
Thank you for contributing @josepferrer We are reviewing this internally and will let you know the updates. |
bobby-claw
pushed a commit
to NERV-es/meetily
that referenced
this pull request
Jun 1, 2026
…ackriya-Solutions#457 Zackriya-Solutions#430 Zackriya-Solutions#470 Zackriya-Solutions#420 Ported from upstream Zackriya-Solutions/meetily: - Zackriya-Solutions#475: Whisper vocabulary hints (meeting domain support) - Zackriya-Solutions#478: Export transcripts as TXT/VTT with file-save dialog - Zackriya-Solutions#457: Integration API via deep-link URL scheme + distributed notifications - Zackriya-Solutions#430: Apple Speech engine (cfg-gated behind 'apple-speech' feature) - Zackriya-Solutions#470: BlockNote v0.16 editor upgrade - Zackriya-Solutions#420: Monochrome tray icon (proper macOS template image) Apple Speech engine gated behind feature flag due to upstream Send/Sync issues with objc2 types — enable with: cargo build --features apple-speech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
meetily://URL scheme for external control viatauri-plugin-deep-link(start, stop, toggle recording)NSDistributedNotificationCenter) broadcasting 4 recording lifecycle eventsInbound API (URL Scheme)
meetily://start-recordingmeetily://start-recording?name=Team%20Standupmeetily://stop-recordingmeetily://toggle-recordingOutbound API (macOS Distributed Notifications)
com.meetily.ai.recording.started{ meeting_name }com.meetily.ai.recording.stopped{ meeting_name, folder_path }com.meetily.ai.recording.error{ error }com.meetily.ai.transcription.completed{ meeting_name, folder_path }Files changed
Cargo.toml— addedtauri-plugin-deep-linktauri.conf.json— deep-link plugin config + permissionInfo.plist—CFBundleURLTypesformeetily://schemepackage.json— added@tauri-apps/plugin-deep-linkdistributed_notifications.rs— macOSNSDistributedNotificationCenterviaobjcFFIlib.rs— deep-link plugin registration + URL handler routingrecording_commands.rs— distributed notification posts at all event emission sitestranscription/worker.rs—transcription-all-completeevent + notification at true completionTest plan
cargo checkpassespnpm run tauri:buildproduces working.appbundleopen "meetily://start-recording?name=Test"starts recordingopen "meetily://stop-recording"stops recordingopen "meetily://toggle-recording"toggles correctlyrecording.startedwith correct payloadrecording.stoppedwithmeeting_name+folder_pathstop-recordingwhen not recording is a silent no-opstart-recordingwhen already recording is a silent no-op🤖 Generated with Claude Code