@agentvault/agentvault 0.20.7 → 0.20.8

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/cli.js CHANGED
@@ -67318,6 +67318,14 @@ ${messageText}`;
67318
67318
  }
67319
67319
  }
67320
67320
  for (const [chId, chState] of Object.entries(this._persisted?.a2aChannels ?? {})) {
67321
+ if (!chState.mlsGroupId && chState.role === "creator") {
67322
+ try {
67323
+ console.log(`[SecureChannel] Creator founding A2A MLS group for ${chId.slice(0, 8)} (no mlsGroupId)`);
67324
+ await this._foundA2AGroup(chId, chState.conversationId, chState.participants ?? []);
67325
+ } catch (foundErr) {
67326
+ console.warn(`[SecureChannel] A2A MLS founding failed for ${chId.slice(0, 8)}:`, foundErr);
67327
+ }
67328
+ }
67321
67329
  if (!chState.mlsGroupId) continue;
67322
67330
  let mlsGroup = this._mlsGroups.get(`a2a:${chId}`);
67323
67331
  if (!mlsGroup?.isInitialized) {
@@ -88763,7 +88771,7 @@ var init_index = __esm({
88763
88771
  init_skill_invoker();
88764
88772
  await init_skill_telemetry();
88765
88773
  await init_policy_enforcer();
88766
- VERSION = true ? "0.20.7" : "0.0.0-dev";
88774
+ VERSION = true ? "0.20.8" : "0.0.0-dev";
88767
88775
  }
88768
88776
  });
88769
88777