@umimoney/clawdbot-relay-plugin 0.1.5 → 0.1.6
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/dist/clawdbot.plugin.json +34 -30
- package/package.json +1 -1
|
@@ -2,44 +2,48 @@
|
|
|
2
2
|
"$schema": "https://clawdbot.dev/schemas/plugin.json",
|
|
3
3
|
"id": "umi-relay",
|
|
4
4
|
"name": "UMI Relay",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.6",
|
|
6
6
|
"description": "Connect to UMI relay server for real-time chat visibility in UMI web UI",
|
|
7
7
|
"type": "channel",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"author": "UMI Labs",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"configSchema": {
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
12
|
+
"type": "object",
|
|
13
|
+
"additionalProperties": false,
|
|
14
|
+
"required": ["apiKey"],
|
|
15
|
+
"properties": {
|
|
16
|
+
"apiKey": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "UMI API key (starts with umi_)"
|
|
19
|
+
},
|
|
20
|
+
"relayUrl": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"default": "wss://ws.umi.app/ws/relay",
|
|
23
|
+
"description": "UMI relay server URL"
|
|
24
|
+
},
|
|
25
|
+
"agentVersion": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"default": "1.0.0",
|
|
28
|
+
"description": "Agent version string"
|
|
29
|
+
},
|
|
30
|
+
"capabilities": {
|
|
31
|
+
"type": "array",
|
|
32
|
+
"items": { "type": "string" },
|
|
33
|
+
"default": ["chat"],
|
|
34
|
+
"description": "Agent capabilities"
|
|
35
|
+
},
|
|
36
|
+
"autoReconnect": {
|
|
37
|
+
"type": "boolean",
|
|
38
|
+
"default": true,
|
|
39
|
+
"description": "Reconnect on disconnect"
|
|
40
|
+
}
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
+
"uiHints": {
|
|
44
|
+
"apiKey": { "label": "API Key", "sensitive": true, "env": "UMI_API_KEY" },
|
|
45
|
+
"relayUrl": { "label": "Relay URL", "placeholder": "wss://ws.umi.app/ws/relay" }
|
|
46
|
+
},
|
|
43
47
|
"channels": {
|
|
44
48
|
"umi": {
|
|
45
49
|
"name": "UMI",
|