@agentvault/claude-bridge 0.6.4 → 0.6.5

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -133327,7 +133327,7 @@ function wireBridge(channel, session, target, opts = {}) {
133327
133327
  }
133328
133328
  channel.on("error", (err) => {
133329
133329
  const msg = err instanceof Error ? err.message : String(err);
133330
- log(`channel error (auto-reconnecting): ${msg}`);
133330
+ log(`channel error (non-fatal, not a reconnect trigger): ${msg}`);
133331
133331
  });
133332
133332
  const hush = new RoomHushState();
133333
133333
  channel.on("room_hushed", (e7) => {
@@ -133469,7 +133469,7 @@ async function main() {
133469
133469
  "[bridge] warning: passing the invite token on the command line is visible to other local users via 'ps'. Prefer: AV_INVITE_TOKEN=\u2026 npx @agentvault/claude-bridge"
133470
133470
  );
133471
133471
  }
133472
- console.error(`[bridge] version: ${true ? "0.6.4" : "dev"}`);
133472
+ console.error(`[bridge] version: ${true ? "0.6.5" : "dev"}`);
133473
133473
  console.error(`[bridge] data dir: ${cfg.dataDir} (${cfg.dataDirSource})`);
133474
133474
  console.error(`[bridge] workspace: ${cfg.workspaceDir} \xB7 permissions: ${cfg.permissionMode} \xB7 enclave dir fenced`);
133475
133475
  if (cfg.armRoom) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentvault/claude-bridge",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "type": "module",
5
5
  "description": "AgentVault Claude Bridge — daemon for bridging a Claude agent into secure E2E-encrypted AgentVault 1:1 direct messages and rooms.",
6
6
  "main": "dist/index.js",