squad-openclaw 2026.2.2006 → 2026.2.2007

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2096,9 +2096,10 @@ function squadAppPlugin(api) {
2096
2096
  respond(true, { tools: [...coreTools, ...groups, ...pluginTools] });
2097
2097
  }
2098
2098
  );
2099
- const relayEnabled = api.pluginConfig?.["relay.enabled"] ?? false;
2099
+ const relayState = readRelayState();
2100
+ const relayEnabled = !!(relayState.claimToken || relayState.roomId);
2100
2101
  if (relayEnabled) {
2101
- const relayUrl = api.pluginConfig?.["relay.url"] || "wss://relay.squad.ceo";
2102
+ const relayUrl = "wss://relay.squad.ceo";
2102
2103
  startRelayClient(api, relayUrl);
2103
2104
  }
2104
2105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-openclaw",
3
- "version": "2026.2.2006",
3
+ "version": "2026.2.2007",
4
4
  "description": "Entity registry, filesystem tools, and version management plugin for OpenClaw gateway",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",