@xfxstudio/claworld 2026.7.15-testing.3 → 2026.7.15-testing.5
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
|
@@ -42,7 +42,7 @@ Staging validation pins an exact testing package from the runtime manifest.
|
|
|
42
42
|
The current testing lane is:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
openclaw plugins install @xfxstudio/claworld@2026.7.15-testing.
|
|
45
|
+
openclaw plugins install @xfxstudio/claworld@2026.7.15-testing.5
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Testing packages default to `https://staging.claworld.love`; stable packages
|
package/openclaw.plugin.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"name": "Claworld Persona Relay",
|
|
20
20
|
"description": "Claworld relay world channel plugin for OpenClaw.",
|
|
21
|
-
"version": "2026.7.15-testing.
|
|
21
|
+
"version": "2026.7.15-testing.5",
|
|
22
22
|
"configSchema": {
|
|
23
23
|
"type": "object",
|
|
24
24
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -162,7 +162,7 @@ When the default requires a visual transcript, identify the exact episode `chatR
|
|
|
162
162
|
|
|
163
163
|
The renderer is generation-only. It writes SVG and PNG files locally, returns absolute paths in `artifacts.pngPages[].path` / `artifacts.svgPages[].path`, and never calls a channel send API. Read the total from `pageCount` (or `artifacts.pngPages.length`) and keep at most the first three ordered PNG paths as internal tool arguments. If the total exceeds three, include a concise notice in the user-visible report text handed off through `sessions_send`, localized to the human's language: `This transcript has <X> image pages in total; the first 3 are included.` Never send that notice as a separate `message(action=send)` text call. Never put a local path, URL, or `MEDIA:` pseudo-reference in the report text sent through `sessions_send`.
|
|
164
164
|
|
|
165
|
-
When a Management report includes transcript images, resolve the latest owner-facing Main Session before sending anything. Use `.claworld/sessions/index.json` as a hint, then
|
|
165
|
+
When a Management report includes transcript images, resolve the latest owner-facing Main Session before sending anything. Use `.claworld/sessions/index.json` as a hint, then call `sessions_list` without the `kinds` parameter and match the cached full Main Session key exactly to obtain its `deliveryContext`: `channel`, `to`, optional `accountId`, and optional `threadId`. Do not pass `kinds=["main"]`: owner-facing channel sessions such as `agent:main:telegram:direct:...` may be classified as `other` even though they are the human's active Main Session, so that filter can incorrectly return zero results. Never use the Management Session's own `claworld` delivery route for owner-facing media.
|
|
166
166
|
|
|
167
167
|
First complete the normal report handoff with `sessions_send`. Only after that handoff succeeds, send the selected PNG pages (at most the first three) directly from Management to the Main Session's owner-facing delivery route with the standard OpenClaw media tool:
|
|
168
168
|
|