@deeplake/hivemind 0.7.76 → 0.7.78
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 +1077 -230
- package/codex/bundle/graph-on-stop.js +3148 -0
- package/codex/bundle/graph-pull-worker.js +40 -1
- package/codex/bundle/pre-tool-use.js +1237 -21
- package/codex/bundle/shell/deeplake-shell.js +725 -20
- package/codex/skills/hivemind-graph/SKILL.md +94 -0
- package/cursor/bundle/graph-on-stop.js +3148 -0
- package/cursor/bundle/graph-pull-worker.js +40 -1
- package/cursor/bundle/pre-tool-use.js +1232 -8
- package/cursor/bundle/session-start.js +214 -7
- package/cursor/bundle/shell/deeplake-shell.js +725 -20
- package/hermes/bundle/graph-on-stop.js +3148 -0
- package/hermes/bundle/graph-pull-worker.js +40 -1
- package/hermes/bundle/pre-tool-use.js +1225 -8
- package/hermes/bundle/session-start.js +213 -8
- package/hermes/bundle/shell/deeplake-shell.js +725 -20
- package/openclaw/dist/index.js +1 -1
- package/openclaw/openclaw.plugin.json +1 -1
- package/openclaw/package.json +1 -1
- package/package.json +2 -1
- package/scripts/ensure-tree-sitter.mjs +6 -1
package/openclaw/dist/index.js
CHANGED
|
@@ -1828,7 +1828,7 @@ function extractLatestVersion(body) {
|
|
|
1828
1828
|
return typeof v === "string" && v.length > 0 ? v : null;
|
|
1829
1829
|
}
|
|
1830
1830
|
function getInstalledVersion() {
|
|
1831
|
-
return "0.7.
|
|
1831
|
+
return "0.7.78".length > 0 ? "0.7.78" : null;
|
|
1832
1832
|
}
|
|
1833
1833
|
function isNewer(latest, current) {
|
|
1834
1834
|
const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
|
package/openclaw/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeplake/hivemind",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.78",
|
|
4
4
|
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"deeplake": "^0.3.30",
|
|
62
62
|
"js-yaml": "^4.1.1",
|
|
63
63
|
"just-bash": "^2.14.0",
|
|
64
|
+
"tree-sitter-python": "^0.21.0",
|
|
64
65
|
"yargs-parser": "^22.0.0",
|
|
65
66
|
"zod": "^4.3.6"
|
|
66
67
|
},
|
|
@@ -17,7 +17,7 @@ import { createRequire } from 'node:module';
|
|
|
17
17
|
|
|
18
18
|
const ROOT = process.cwd();
|
|
19
19
|
const require = createRequire(`${ROOT}/`);
|
|
20
|
-
const PKGS = ['tree-sitter', 'tree-sitter-typescript'];
|
|
20
|
+
const PKGS = ['tree-sitter', 'tree-sitter-typescript', 'tree-sitter-python'];
|
|
21
21
|
|
|
22
22
|
function bindingsLoad() {
|
|
23
23
|
try {
|
|
@@ -26,6 +26,11 @@ function bindingsLoad() {
|
|
|
26
26
|
const parser = new Parser();
|
|
27
27
|
parser.setLanguage(TS);
|
|
28
28
|
parser.parse('const x = 1;');
|
|
29
|
+
// B6: also verify the Python grammar loads on this platform / Node ABI.
|
|
30
|
+
const Py = require('tree-sitter-python');
|
|
31
|
+
const pyParser = new Parser();
|
|
32
|
+
pyParser.setLanguage(Py);
|
|
33
|
+
pyParser.parse('x = 1\n');
|
|
29
34
|
return true;
|
|
30
35
|
} catch {
|
|
31
36
|
return false;
|