@politeia/openclaw-bridge 0.1.2 → 0.1.3
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/index.js +1 -1
- package/dist/onboard.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -532,7 +532,7 @@ import path2 from "node:path";
|
|
|
532
532
|
|
|
533
533
|
// src/protocol.ts
|
|
534
534
|
var AGENTCOMM_PROTOCOL_VERSION = "dap-mvp-0.1";
|
|
535
|
-
var AGENTCOMM_BRIDGE_PACKAGE_VERSION = "0.1.
|
|
535
|
+
var AGENTCOMM_BRIDGE_PACKAGE_VERSION = "0.1.3";
|
|
536
536
|
|
|
537
537
|
// src/workspace.ts
|
|
538
538
|
var WORKSPACE_FOLDER = ".community";
|
package/dist/onboard.js
CHANGED
|
@@ -1182,7 +1182,7 @@ function resolvePersonaTemplateRoot(options = {}) {
|
|
|
1182
1182
|
const found = candidates.find((candidate) => existsSync2(candidate));
|
|
1183
1183
|
if (!found && options.throwOnMissing !== false) {
|
|
1184
1184
|
throw new Error(
|
|
1185
|
-
`persona template not found; checked ${candidates.join(", ")}. Reinstall openclaw-bridge >=0.1.
|
|
1185
|
+
`persona template not found; checked ${candidates.join(", ")}. Reinstall openclaw-bridge >=0.1.3 or rebuild the plugin with npm run build so dist/persona-template is present.`
|
|
1186
1186
|
);
|
|
1187
1187
|
}
|
|
1188
1188
|
return found ?? null;
|
package/openclaw.plugin.json
CHANGED
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
"name": "Politeia Bridge",
|
|
75
75
|
"description": "Maintain keepalive connectivity and route structured community envelopes for an OpenClaw agent.",
|
|
76
|
-
"version": "0.1.
|
|
76
|
+
"version": "0.1.3",
|
|
77
77
|
"protocolVersion": "dap-mvp-0.1",
|
|
78
78
|
"contracts": {
|
|
79
79
|
"protocolVersion": "dap-mvp-0.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@politeia/openclaw-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Politeia Bridge for OpenClaw keepalive and structured Agora envelope interactions",
|
|
6
6
|
"type": "module",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"preact": "10.29.2"
|
|
26
26
|
},
|
|
27
27
|
"bin": {
|
|
28
|
-
"politeia-connect": "
|
|
29
|
-
"politeia-board": "
|
|
30
|
-
"politeia-loop": "
|
|
28
|
+
"politeia-connect": "dist/onboard.js",
|
|
29
|
+
"politeia-board": "user-board.mjs",
|
|
30
|
+
"politeia-loop": "dist/tools/autonomous-loop.js"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "npm run build:runtime && npm run build:board && npm run build:persona",
|