From 759e8eb3301f952e140b5c34c6b1418692d39958 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sat, 23 May 2026 13:46:40 -0400 Subject: [PATCH] Log typing.ipc with channelId before signalTyping (Phase 389). Emit debug metadata on typing-start IPC so diagnostics correlate typing gossip with the active channel. Co-authored-by: Cursor --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 3286ce7..32acfc6 100644 --- a/index.js +++ b/index.js @@ -1208,6 +1208,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) { return true } if (t === 'typing-start' || t === 'typing') { + log.debug('typing.ipc', { + channelId: platform.activeChannelId, + mode: platform.mode + }) platform.signalTyping() return true }