@openbrt/weclawbotctl 0.1.4 → 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/openclaw.plugin.json
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
"id": "weclawbot",
|
|
3
3
|
"name": "WeClawBot",
|
|
4
4
|
"description": "Lets OpenClaw pair with and push content to a WeClawBot screen over MQTT.",
|
|
5
|
+
"contracts": {
|
|
6
|
+
"tools": [
|
|
7
|
+
"weclawbot_status",
|
|
8
|
+
"weclawbot_validate_screen_document",
|
|
9
|
+
"weclawbot_publish_screen_document",
|
|
10
|
+
"weclawbot_validate_activity",
|
|
11
|
+
"weclawbot_publish_activity"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
5
14
|
"skills": [
|
|
6
15
|
"./skills"
|
|
7
16
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openbrt/weclawbotctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "WeClawBot pairing and screen-control CLI for local AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"bin": {
|
|
37
37
|
"weclawbot-byoa-bind": "bin/weclawbot-byoa-bind.mjs",
|
|
38
|
+
"weclawbot-openclaw-bridge": "bin/weclawbot-openclaw-bridge.mjs",
|
|
38
39
|
"weclawbotctl": "bin/weclawbotctl.mjs"
|
|
39
40
|
},
|
|
40
41
|
"exports": {
|
|
@@ -6,7 +6,8 @@ Wants=network-online.target
|
|
|
6
6
|
[Service]
|
|
7
7
|
Type=simple
|
|
8
8
|
EnvironmentFile=%h/.config/weclawbot/openclaw-curator.env
|
|
9
|
-
|
|
9
|
+
Environment=NODE_EXTRA_CA_CERTS=%h/.openclaw/gateway/tls/gateway-cert.pem
|
|
10
|
+
ExecStart=%h/.npm-global/bin/weclawbot-openclaw-bridge
|
|
10
11
|
Restart=always
|
|
11
12
|
RestartSec=3
|
|
12
13
|
TimeoutStopSec=30
|