@maudecode/openclaw-cowtail 0.9.0 → 0.9.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.
- package/openclaw.plugin.json +43 -0
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,10 +2,53 @@
|
|
|
2
2
|
"id": "cowtail",
|
|
3
3
|
"name": "Cowtail",
|
|
4
4
|
"description": "Cowtail mobile realtime channel for OpenClaw",
|
|
5
|
+
"kind": "channel",
|
|
5
6
|
"channels": ["cowtail"],
|
|
6
7
|
"channelEnvVars": {
|
|
7
8
|
"cowtail": ["OPENCLAW_COWTAIL_BRIDGE_TOKEN"]
|
|
8
9
|
},
|
|
10
|
+
"channelConfigs": {
|
|
11
|
+
"cowtail": {
|
|
12
|
+
"schema": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"additionalProperties": true,
|
|
15
|
+
"properties": {
|
|
16
|
+
"enabled": { "type": "boolean" },
|
|
17
|
+
"url": { "type": "string" },
|
|
18
|
+
"bridgeToken": {
|
|
19
|
+
"oneOf": [
|
|
20
|
+
{ "type": "string" },
|
|
21
|
+
{
|
|
22
|
+
"type": "object",
|
|
23
|
+
"additionalProperties": false,
|
|
24
|
+
"required": ["source", "provider", "id"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"source": { "enum": ["env", "file", "exec"] },
|
|
27
|
+
"provider": { "type": "string" },
|
|
28
|
+
"id": { "type": "string" }
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"agentId": { "type": "string" },
|
|
34
|
+
"connectTimeoutMs": { "type": "number" },
|
|
35
|
+
"reconnectMinDelayMs": { "type": "number" },
|
|
36
|
+
"reconnectMaxDelayMs": { "type": "number" }
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"uiHints": {
|
|
40
|
+
"url": {
|
|
41
|
+
"label": "Cowtail realtime URL",
|
|
42
|
+
"placeholder": "wss://cowtail.example.invalid/openclaw/realtime"
|
|
43
|
+
},
|
|
44
|
+
"bridgeToken": {
|
|
45
|
+
"label": "Bridge token",
|
|
46
|
+
"placeholder": "${OPENCLAW_COWTAIL_BRIDGE_TOKEN}",
|
|
47
|
+
"sensitive": true
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
9
52
|
"uiHints": {
|
|
10
53
|
"url": {
|
|
11
54
|
"label": "Cowtail realtime URL",
|