@yahaha-studio/focus-forwarder 0.0.1-alpha.12 → 0.0.1-alpha.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yahaha-studio/focus-forwarder",
3
- "version": "0.0.1-alpha.12",
3
+ "version": "0.0.1-alpha.13",
4
4
  "description": "Forward OpenClaw agent events to external WebSocket server for visualization",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -25,7 +25,7 @@ Before installing the plugin, save `mateId` to the `identity.json` file under th
25
25
  Then install and enable the plugin:
26
26
 
27
27
  ```bash
28
- openclaw plugins install @yahaha-studio/focus-forwarder@0.0.1-alpha.12
28
+ openclaw plugins install @yahaha-studio/focus-forwarder@0.0.1-alpha.13
29
29
  openclaw plugins enable focus-forwarder
30
30
  ```
31
31
 
package/src/config.ts CHANGED
@@ -3,7 +3,7 @@ import type { FocusForwarderConfig } from "./types.js";
3
3
  export function parse(value: unknown): FocusForwarderConfig {
4
4
  const config = (value ?? {}) as Partial<FocusForwarderConfig>;
5
5
  return {
6
- wsUrl: config.wsUrl ?? "ws://127.0.0.1:48870/ws/openclaw",
6
+ wsUrl: config.wsUrl ?? "ws://43.106.148.251:48870/ws/openclaw",
7
7
  enabled: config.enabled ?? true,
8
8
  };
9
9
  }