@deeplake/hivemind 0.7.41 → 0.7.45
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/.claude-plugin/marketplace.json +3 -3
- package/.claude-plugin/plugin.json +1 -1
- package/bundle/cli.js +1258 -199
- package/codex/bundle/session-start.js +1 -0
- package/cursor/bundle/session-start.js +1 -0
- package/hermes/bundle/session-start.js +1 -0
- package/openclaw/dist/index.js +1 -1
- package/openclaw/openclaw.plugin.json +1 -1
- package/openclaw/package.json +1 -1
- package/package.json +1 -1
|
@@ -129,6 +129,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
|
|
|
129
129
|
const m = readLocalManifest(path);
|
|
130
130
|
return Array.isArray(m?.entries) ? m.entries.length : 0;
|
|
131
131
|
}
|
|
132
|
+
var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
|
|
132
133
|
|
|
133
134
|
// dist/src/skillify/spawn-mine-local-worker.js
|
|
134
135
|
import { execFileSync, spawn } from "node:child_process";
|
|
@@ -838,6 +838,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
|
|
|
838
838
|
const m = readLocalManifest(path);
|
|
839
839
|
return Array.isArray(m?.entries) ? m.entries.length : 0;
|
|
840
840
|
}
|
|
841
|
+
var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
|
|
841
842
|
|
|
842
843
|
// dist/src/skillify/spawn-mine-local-worker.js
|
|
843
844
|
import { execFileSync, spawn } from "node:child_process";
|
|
@@ -837,6 +837,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
|
|
|
837
837
|
const m = readLocalManifest(path);
|
|
838
838
|
return Array.isArray(m?.entries) ? m.entries.length : 0;
|
|
839
839
|
}
|
|
840
|
+
var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
|
|
840
841
|
|
|
841
842
|
// dist/src/skillify/spawn-mine-local-worker.js
|
|
842
843
|
import { execFileSync, spawn } from "node:child_process";
|
package/openclaw/dist/index.js
CHANGED
|
@@ -1584,7 +1584,7 @@ function extractLatestVersion(body) {
|
|
|
1584
1584
|
return typeof v === "string" && v.length > 0 ? v : null;
|
|
1585
1585
|
}
|
|
1586
1586
|
function getInstalledVersion() {
|
|
1587
|
-
return "0.7.
|
|
1587
|
+
return "0.7.45".length > 0 ? "0.7.45" : null;
|
|
1588
1588
|
}
|
|
1589
1589
|
function isNewer(latest, current) {
|
|
1590
1590
|
const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
|
package/openclaw/package.json
CHANGED