@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 +9 -1
- package/dist/cli.js.map +2 -2
- package/dist/index.js +9 -1
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -67317,6 +67317,14 @@ ${messageText}`;
|
|
|
67317
67317
|
}
|
|
67318
67318
|
}
|
|
67319
67319
|
for (const [chId, chState] of Object.entries(this._persisted?.a2aChannels ?? {})) {
|
|
67320
|
+
if (!chState.mlsGroupId && chState.role === "creator") {
|
|
67321
|
+
try {
|
|
67322
|
+
console.log(`[SecureChannel] Creator founding A2A MLS group for ${chId.slice(0, 8)} (no mlsGroupId)`);
|
|
67323
|
+
await this._foundA2AGroup(chId, chState.conversationId, chState.participants ?? []);
|
|
67324
|
+
} catch (foundErr) {
|
|
67325
|
+
console.warn(`[SecureChannel] A2A MLS founding failed for ${chId.slice(0, 8)}:`, foundErr);
|
|
67326
|
+
}
|
|
67327
|
+
}
|
|
67320
67328
|
if (!chState.mlsGroupId) continue;
|
|
67321
67329
|
let mlsGroup = this._mlsGroups.get(`a2a:${chId}`);
|
|
67322
67330
|
if (!mlsGroup?.isInitialized) {
|
|
@@ -94655,7 +94663,7 @@ var init_index = __esm({
|
|
|
94655
94663
|
init_skill_invoker();
|
|
94656
94664
|
await init_skill_telemetry();
|
|
94657
94665
|
await init_policy_enforcer();
|
|
94658
|
-
VERSION = true ? "0.20.
|
|
94666
|
+
VERSION = true ? "0.20.8" : "0.0.0-dev";
|
|
94659
94667
|
}
|
|
94660
94668
|
});
|
|
94661
94669
|
await init_index();
|