diff --git a/apps/web/lib/agent-runner.ts b/apps/web/lib/agent-runner.ts index b8dbd769824..7a2a0ffec97 100644 --- a/apps/web/lib/agent-runner.ts +++ b/apps/web/lib/agent-runner.ts @@ -386,7 +386,7 @@ export function buildConnectParams( ) : DEFAULT_GATEWAY_CLIENT_CAPS; const clientMode = options?.clientMode ?? "backend"; - const clientId = "gateway-client"; + const clientId = process.env.OPENCLAW_GATEWAY_CLIENT_ID || "gateway-client"; const role = "operator"; const scopes = ["operator.read", "operator.write", "operator.admin"]; diff --git a/package.json b/package.json index 46468e532b4..50898f82e65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "denchclaw", - "version": "2.3.18", + "version": "2.3.19", "description": "Fully Managed OpenClaw Framework for managing your CRM, Sales Automation and Outreach agents. The only local productivity tool you need.", "keywords": [], "homepage": "https://github.com/DenchHQ/DenchClaw#readme",