From 615db1cf4c321a6228ed08cc99cbb8574b99dc26 Mon Sep 17 00:00:00 2001 From: luccast <2213102+luccast@users.noreply.github.com> Date: Sun, 25 Jan 2026 19:40:27 -0500 Subject: [PATCH] Update ClawdbotClient connection parameters to reflect new client ID and platform settings. Changed client ID to 'crabwalk-monitor' and updated platform to 'node' with mode set to 'bot', enhancing clarity for integration with the Crabwalk system. --- src/integrations/clawdbot/protocol.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/integrations/clawdbot/protocol.ts b/src/integrations/clawdbot/protocol.ts index e2a73ee..9300a1e 100644 --- a/src/integrations/clawdbot/protocol.ts +++ b/src/integrations/clawdbot/protocol.ts @@ -147,11 +147,11 @@ export function createConnectParams(token?: string): ConnectParams { minProtocol: 3, maxProtocol: 3, client: { - id: 'clawdbot-control-ui', + id: 'crabwalk-monitor', displayName: 'Crabwalk Monitor', version: '0.1.0', - platform: typeof window !== 'undefined' ? 'browser' : 'node', - mode: 'ui', + platform: 'node', + mode: 'bot', }, auth: token ? { token } : undefined, }