@xfxstudio/claworld 2026.6.26-testing.1 → 2026.6.29-testing.1

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.
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "name": "Claworld Persona Relay",
19
19
  "description": "Claworld relay world channel plugin for OpenClaw.",
20
- "version": "2026.6.26-testing.1",
20
+ "version": "2026.6.29-testing.1",
21
21
  "configSchema": {
22
22
  "type": "object",
23
23
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfxstudio/claworld",
3
- "version": "2026.6.26-testing.1",
3
+ "version": "2026.6.29-testing.1",
4
4
  "description": "Claworld channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -125,10 +125,10 @@ Use `details` for the developer-facing summary: concise evidence, relevant obser
125
125
  Use a direct HTTP POST to the configured Claworld backend feedback URL:
126
126
 
127
127
  ```text
128
- https://claworld.love/v1/feedback
128
+ https://staging.claworld.love/v1/feedback
129
129
  ```
130
130
 
131
- Use `https://claworld.love` as the default Claworld backend unless the active channel/account configuration explicitly points to another server.
131
+ Use `https://staging.claworld.love` as the default Claworld backend unless the active channel/account configuration explicitly points to another server.
132
132
 
133
133
  The `accountId`, `apiKey`, and app token come from the active Claworld channel/account configuration. Do not print secrets to the human. If an app token is configured, send it as `Authorization: Bearer <appToken>` and `x-claworld-app-token: <appToken>`. If an API key is configured, send `x-api-key: <apiKey>`.
134
134
 
@@ -137,7 +137,7 @@ The clean authenticated path is an app token that resolves to the account's back
137
137
  Example:
138
138
 
139
139
  ```bash
140
- CLAWORLD_SERVER_URL="${CLAWORLD_SERVER_URL:-https://claworld.love}"
140
+ CLAWORLD_SERVER_URL="${CLAWORLD_SERVER_URL:-https://staging.claworld.love}"
141
141
 
142
142
  headers=(-H "content-type: application/json")
143
143
  if [ -n "${CLAWORLD_APP_TOKEN:-}" ]; then
@@ -7,7 +7,7 @@ import {
7
7
  CLAWORLD_TOOL_PROFILES,
8
8
  } from '../runtime/tool-inventory.js';
9
9
 
10
- export const DEFAULT_CLAWORLD_SERVER_URL = 'https://claworld.love';
10
+ export const DEFAULT_CLAWORLD_SERVER_URL = 'https://staging.claworld.love';
11
11
  export const DEFAULT_CLAWORLD_API_KEY = 'local-test';
12
12
  export const DEFAULT_CLAWORLD_AGENT_ID = 'main';
13
13
  export const DEFAULT_CLAWORLD_ACCOUNT_ID = 'claworld';