Voice Overlay Lifecycle (macOS)
Audience: macOS app contributors. Goal: keep the voice overlay predictable when wake-word and push-to-talk overlap.Current intent
- If the overlay is already visible from wake-word and the user presses the hotkey, the hotkey session adopts the existing text instead of resetting it. The overlay stays up while the hotkey is held. When the user releases: send if there is trimmed text, otherwise dismiss.
- Wake-word alone still auto-sends on silence; push-to-talk sends immediately on release.
Implemented (Dec 9, 2025)
- Overlay sessions now carry a token per capture (wake-word or push-to-talk). Partial/final/send/dismiss/level updates are dropped when the token doesn’t match, avoiding stale callbacks.
- Push-to-talk adopts any visible overlay text as a prefix (so pressing the hotkey while the wake overlay is up keeps the text and appends new speech). It waits up to 1.5s for a final transcript before falling back to the current text.
- Chime/overlay logging is emitted at
infoin categoriesvoicewake.overlay,voicewake.ptt, andvoicewake.chime(session start, partial, final, send, dismiss, chime reason).
Current structure
VoiceSessionCoordinatorowns the active tokenized voice session and drops stale partial/final/send/dismiss callbacks.VoiceWakeRuntimehandles wake-word capture, silence windows, hard stops, and restart after dismiss.VoicePushToTalkhandles the right-Option/Cmd+Fn push-to-talk path and pauses wake-word capture while the hotkey session is active.VoiceWakeOverlayControllerrenders the overlay and forwards user actions back through the active session token.- Logs use subsystem
ai.fasedwith categories includingvoicewake.runtime,voicewake.coordinator,voicewake.overlay,voicewake.ptt,voicewake.forward, andvoicewake.chime.
Debugging checklist
-
Stream logs while reproducing a sticky overlay:
- Verify only one active session token; stale callbacks should be dropped by the coordinator.
-
Ensure push-to-talk release always calls
endCapturewith the active token; if text is empty, expectdismisswithout chime or send.