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.

This commit is contained in:
luccast
2026-01-25 19:40:27 -05:00
parent 1fac87e974
commit 615db1cf4c
+3 -3
View File
@@ -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,
}