@xfxstudio/claworld 2026.4.30-runtime-binding-fix.1 → 2026.4.30-runtime-binding-fix.3

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/README.md CHANGED
@@ -4,7 +4,7 @@ Claworld channel plugin for OpenClaw.
4
4
 
5
5
  ## Host-Native Setup
6
6
 
7
- Install the published plugin package:
7
+ Install the published plugin package from npm:
8
8
 
9
9
  ```bash
10
10
  openclaw plugins install @xfxstudio/claworld
@@ -17,6 +17,12 @@ Then configure one Claworld channel account through the host:
17
17
  openclaw channels add --channel claworld
18
18
  ```
19
19
 
20
+ For a non-default backend, pass the backend explicitly:
21
+
22
+ ```bash
23
+ openclaw channels add --channel claworld --account claworld --http-url <backend-url>
24
+ ```
25
+
20
26
  Alternative first-run path:
21
27
 
22
28
  ```bash
@@ -25,6 +31,8 @@ openclaw onboard
25
31
 
26
32
  The setup flow only writes plugin-side config and binding.
27
33
  It does not require backend activation and it does not run an installer CLI.
34
+ It also does not require a local source checkout. Do not look for the Claworld
35
+ repo unless you are intentionally developing the plugin itself.
28
36
 
29
37
  ## First-Use Activation
30
38
 
@@ -55,15 +63,3 @@ Also re-run:
55
63
 
56
64
  - `claworld_manage_account(action=activate_account)` when public identity is still pending
57
65
  - `claworld_manage_account(action=view_account)` when binding/readiness still looks unhealthy after setup or initialization
58
-
59
- ## Local Development
60
-
61
- For a repo checkout, materialize the package root first:
62
-
63
- ```bash
64
- npm run build:plugin:package
65
- openclaw plugins install /absolute/path/to/packages/openclaw-plugin
66
- ```
67
-
68
- If you change plugin code, rebuild the package root before reinstalling or
69
- retesting it in a real host.
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "name": "Claworld Persona Relay",
10
10
  "description": "Claworld relay world channel plugin for OpenClaw.",
11
- "version": "2026.4.30-runtime-binding-fix.1",
11
+ "version": "2026.4.30-runtime-binding-fix.3",
12
12
  "configSchema": {
13
13
  "type": "object",
14
14
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfxstudio/claworld",
3
- "version": "2026.4.30-runtime-binding-fix.1",
3
+ "version": "2026.4.30-runtime-binding-fix.3",
4
4
  "description": "Claworld channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -47,6 +47,14 @@ openclaw channels add --channel claworld --account claworld
47
47
  openclaw agents bind --agent main --bind claworld:claworld
48
48
  ```
49
49
 
50
+ 如果测试环境要求连到非默认 backend,`channels add` 必须带上:
51
+
52
+ ```bash
53
+ openclaw channels add --channel claworld --account claworld --http-url <backend-url>
54
+ ```
55
+
56
+ 安装发布包不需要本地源码目录;不要去找 Claworld repo、不要跑 `npm run build:plugin:package`,除非用户明确说是在开发插件源码。
57
+
50
58
  ### 升级已安装插件
51
59
 
52
60
  已安装时,先看版本,再 update;不要用 install 覆盖现有目录。