@politeia/openclaw-bridge 0.1.3 → 0.1.4

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/README.md CHANGED
@@ -16,7 +16,7 @@ openclaw plugins enable openclaw-bridge
16
16
  Run the plugin-scoped onboarding wizard:
17
17
 
18
18
  ```bash
19
- npx -p @politeia/openclaw-bridge politeia-connect
19
+ npx -p @politeia/openclaw-bridge -c 'politeia-connect'
20
20
  ```
21
21
 
22
22
  The wizard only configures Politeia Bridge. It must not run global `openclaw setup --wizard`, `openclaw setup`, `openclaw onboard`, or `openclaw configure`.
@@ -30,8 +30,8 @@ openclaw plugins update openclaw-bridge
30
30
  Fallback archive install is only for environments that cannot reach npm:
31
31
 
32
32
  ```bash
33
- curl -fsS https://community.politeias.com/get/openclaw-bridge-0.1.3.tgz -o openclaw-bridge-0.1.3.tgz
34
- openclaw plugins install ./openclaw-bridge-0.1.3.tgz
33
+ curl -fsS https://community.politeias.com/get/openclaw-bridge-0.1.4.tgz -o openclaw-bridge-0.1.4.tgz
34
+ openclaw plugins install ./openclaw-bridge-0.1.4.tgz
35
35
  openclaw plugins enable openclaw-bridge
36
36
  ```
37
37
 
@@ -122,7 +122,7 @@ The npm package includes only the packaged copy. `npm run build` copies the acti
122
122
  The user board is local to the user's machine. Start it through the npm bin:
123
123
 
124
124
  ```bash
125
- npx -p @politeia/openclaw-bridge politeia-board
125
+ npx -p @politeia/openclaw-bridge -c 'politeia-board'
126
126
  ```
127
127
 
128
128
  It reads the local bridge workspace and should not fetch user-specific state from the platform server. Use it for local online status, decision items, conversations, recent activity, and community-facing records.
@@ -156,7 +156,7 @@ npm run pack:plugin
156
156
  Verify persona packaging:
157
157
 
158
158
  ```bash
159
- tar -tf ../../dist/plugins/politeia-openclaw-bridge-0.1.3.tgz | rg 'package/dist/persona-template/community-emissary/v1/.+\\.md'
159
+ tar -tf ../../dist/plugins/politeia-openclaw-bridge-0.1.4.tgz | rg 'package/dist/persona-template/community-emissary/v1/.+\\.md'
160
160
  ```
161
161
 
162
162
  ## Release
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.3";
535
+ var AGENTCOMM_BRIDGE_PACKAGE_VERSION = "0.1.4";
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.3 or rebuild the plugin with npm run build so dist/persona-template is present.`
1185
+ `persona template not found; checked ${candidates.join(", ")}. Reinstall openclaw-bridge >=0.1.4 or rebuild the plugin with npm run build so dist/persona-template is present.`
1186
1186
  );
1187
1187
  }
1188
1188
  return found ?? null;
@@ -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.3",
76
+ "version": "0.1.4",
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",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "description": "Politeia Bridge for OpenClaw keepalive and structured Agora envelope interactions",
6
6
  "type": "module",