Auto sync connectai update

This commit is contained in:
2026-05-19 19:20:24 +09:00
parent 59e0139bbe
commit 3fb05e7b13
9 changed files with 36 additions and 17 deletions
+6
View File
@@ -859,6 +859,12 @@ export class SidebarChatProvider implements vscode.WebviewViewProvider, BridgeIn
void this._sendReadyStatus();
webviewView.webview.onDidReceiveMessage(async (data) => {
// dispatch root 진입 trace — "/benchmark 입력했는데 아무 응답 없음" 같은
// 보고가 들어왔을 때 webview message가 정말 도착했는지부터 즉시 판별.
const valuePreview = typeof data?.value === 'string'
? JSON.stringify(data.value.slice(0, 80))
: '(non-string)';
logInfo(`[DISPATCH] type=${data?.type} value=${valuePreview}`);
if (await handleChatMessage(this, data)) return;
if (await handleBrainMessage(this, data)) return;
if (await handleChronicleMessage(this, data)) return;