@agentvault/agentvault 0.23.10 → 0.23.11
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/channel.d.ts +2 -0
- package/dist/channel.d.ts.map +1 -1
- package/dist/cli.js +14 -5
- package/dist/cli.js.map +2 -2
- package/dist/index.js +14 -5
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -64792,7 +64792,7 @@ var init_channel = __esm({
|
|
|
64792
64792
|
*/
|
|
64793
64793
|
sendActivitySpan(spanData) {
|
|
64794
64794
|
if (!this._ws || this._ws.readyState !== WebSocket.OPEN) return;
|
|
64795
|
-
const pluginVersion = true ? "0.23.
|
|
64795
|
+
const pluginVersion = true ? "0.23.11" : "0.0.0-dev";
|
|
64796
64796
|
const agentName = this.config.agentName ?? "Agent";
|
|
64797
64797
|
const resource = {
|
|
64798
64798
|
"service.name": "agentvault-agent",
|
|
@@ -64826,7 +64826,16 @@ var init_channel = __esm({
|
|
|
64826
64826
|
this._ws.send(
|
|
64827
64827
|
JSON.stringify({
|
|
64828
64828
|
event: "worker_heartbeat",
|
|
64829
|
-
data: {
|
|
64829
|
+
data: {
|
|
64830
|
+
worker_capable: h2.workerCapable,
|
|
64831
|
+
armed_rooms: h2.armedRooms,
|
|
64832
|
+
// #20: OPTIONAL on the way in so an older bridge against a newer
|
|
64833
|
+
// plugin still emits a shape the backend can read. `=== true` means
|
|
64834
|
+
// absent/malformed becomes false — the fail-closed direction, and it
|
|
64835
|
+
// never emits `undefined` (which would drop the key entirely).
|
|
64836
|
+
host_trusted: h2.hostTrusted === true,
|
|
64837
|
+
gates_effective: h2.gatesEffective === true
|
|
64838
|
+
}
|
|
64830
64839
|
})
|
|
64831
64840
|
);
|
|
64832
64841
|
}
|
|
@@ -66522,7 +66531,7 @@ var init_channel = __esm({
|
|
|
66522
66531
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66523
66532
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66524
66533
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66525
|
-
pluginVersion: true ? "0.23.
|
|
66534
|
+
pluginVersion: true ? "0.23.11" : "0.0.0-dev"
|
|
66526
66535
|
});
|
|
66527
66536
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66528
66537
|
}
|
|
@@ -66840,7 +66849,7 @@ var init_channel = __esm({
|
|
|
66840
66849
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66841
66850
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66842
66851
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66843
|
-
pluginVersion: true ? "0.23.
|
|
66852
|
+
pluginVersion: true ? "0.23.11" : "0.0.0-dev"
|
|
66844
66853
|
});
|
|
66845
66854
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66846
66855
|
}
|
|
@@ -97055,7 +97064,7 @@ var init_index = __esm({
|
|
|
97055
97064
|
init_skill_invoker();
|
|
97056
97065
|
await init_skill_telemetry();
|
|
97057
97066
|
await init_policy_enforcer();
|
|
97058
|
-
VERSION = true ? "0.23.
|
|
97067
|
+
VERSION = true ? "0.23.11" : "0.0.0-dev";
|
|
97059
97068
|
}
|
|
97060
97069
|
});
|
|
97061
97070
|
await init_index();
|