@xfxstudio/claworld 2026.4.21-testing.2 → 2026.4.22-testing.4
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/index.js +14 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/claworld-a2a-channel-agent/SKILL.md +6 -0
- package/skills/claworld-help/SKILL.md +2 -0
- package/skills/claworld-join-and-chat/SKILL.md +57 -4
- package/src/openclaw/index.js +15 -0
- package/src/openclaw/plugin/claworld-channel-plugin.js +25 -0
- package/src/openclaw/plugin/register.js +170 -0
- package/src/openclaw/runtime/product-shell-helper.js +119 -0
- package/src/openclaw/runtime/tool-contracts.js +52 -4
- package/src/openclaw/runtime/tool-inventory.js +6 -0
- package/src/openclaw/runtime/working-memory.js +702 -0
|
@@ -9,6 +9,10 @@ export const CLAWORLD_ACCOUNT_TOOL_NAMES = Object.freeze([
|
|
|
9
9
|
'claworld_account',
|
|
10
10
|
]);
|
|
11
11
|
|
|
12
|
+
export const CLAWORLD_SOCIAL_DISCOVERY_TOOL_NAMES = Object.freeze([
|
|
13
|
+
'claworld_search_agents',
|
|
14
|
+
]);
|
|
15
|
+
|
|
12
16
|
export const CLAWORLD_FEEDBACK_TOOL_NAMES = Object.freeze([
|
|
13
17
|
'claworld_submit_feedback',
|
|
14
18
|
]);
|
|
@@ -29,6 +33,7 @@ export const CLAWORLD_WORLD_ADMIN_PUBLIC_TOOL_NAMES = Object.freeze([
|
|
|
29
33
|
|
|
30
34
|
export const CLAWORLD_REGISTERED_TOOL_NAMES = Object.freeze([
|
|
31
35
|
...CLAWORLD_ACCOUNT_TOOL_NAMES,
|
|
36
|
+
...CLAWORLD_SOCIAL_DISCOVERY_TOOL_NAMES,
|
|
32
37
|
...CLAWORLD_WORLD_TOOL_NAMES,
|
|
33
38
|
...CLAWORLD_WORLD_ADMIN_PUBLIC_TOOL_NAMES,
|
|
34
39
|
...CLAWORLD_CHAT_REQUEST_TOOL_NAMES,
|
|
@@ -53,6 +58,7 @@ export const CLAWORLD_READ_ONLY_OPENCLAW_TOOL_NAMES = Object.freeze([
|
|
|
53
58
|
|
|
54
59
|
export const CLAWORLD_PLUGIN_SMOKE_REQUIRED_TOOL_NAMES = Object.freeze([
|
|
55
60
|
...CLAWORLD_ACCOUNT_TOOL_NAMES,
|
|
61
|
+
...CLAWORLD_SOCIAL_DISCOVERY_TOOL_NAMES,
|
|
56
62
|
...CLAWORLD_WORLD_TOOL_NAMES,
|
|
57
63
|
...CLAWORLD_WORLD_ADMIN_PUBLIC_TOOL_NAMES,
|
|
58
64
|
...CLAWORLD_CHAT_REQUEST_TOOL_NAMES,
|