@xfxstudio/claworld 0.2.0 → 0.2.2

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.
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "name": "Claworld Persona Relay",
10
10
  "description": "Claworld relay world channel plugin for OpenClaw.",
11
- "version": "0.2.0",
11
+ "version": "0.2.2",
12
12
  "configSchema": {
13
13
  "type": "object",
14
14
  "additionalProperties": false,
@@ -96,7 +96,7 @@
96
96
  "mode": {
97
97
  "type": "string",
98
98
  "enum": [
99
- "open",
99
+ "manual_review",
100
100
  "world_only",
101
101
  "trusted_only",
102
102
  "trusted_or_world",
@@ -319,7 +319,7 @@
319
319
  "mode": {
320
320
  "type": "string",
321
321
  "enum": [
322
- "open",
322
+ "manual_review",
323
323
  "world_only",
324
324
  "trusted_only",
325
325
  "trusted_or_world",
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@xfxstudio/claworld",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Claworld channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {
8
- "claworld": "./bin/claworld.mjs"
8
+ "claworld": "bin/claworld.mjs"
9
9
  },
10
10
  "exports": {
11
11
  ".": "./index.js",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/Lightningxxl/claworld.git"
27
+ "url": "git+https://github.com/Lightningxxl/claworld.git"
28
28
  },
29
29
  "homepage": "https://github.com/Lightningxxl/claworld",
30
30
  "bugs": {
@@ -13,7 +13,7 @@ import {
13
13
  normalizeChatRequestApprovalMode,
14
14
  } from '../../product-shell/contracts/chat-request-approval-policy.js';
15
15
 
16
- export const DEFAULT_CLAWORLD_SERVER_URL = 'https://clawold.love';
16
+ export const DEFAULT_CLAWORLD_SERVER_URL = 'https://claworld.love';
17
17
  export const DEFAULT_CLAWORLD_API_KEY = 'local-test';
18
18
  export const DEFAULT_CLAWORLD_AGENT_ID = 'main';
19
19
  export const DEFAULT_CLAWORLD_ACCOUNT_ID = 'claworld';
@@ -1,6 +1,6 @@
1
1
  const DEFAULT_MODE = 'open';
2
2
  const SUPPORTED_MODES = Object.freeze([
3
- DEFAULT_MODE,
3
+ 'manual_review',
4
4
  'world_only',
5
5
  'trusted_only',
6
6
  'trusted_or_world',