@deeplake/hivemind 0.7.36 → 0.7.37

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.
@@ -6,14 +6,19 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
9
- "version": "0.7.36"
9
+ "version": "0.7.37"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "hivemind",
14
14
  "description": "Persistent shared memory powered by Deeplake — captures all session activity and provides cross-session, cross-agent memory search",
15
- "version": "0.7.36",
16
- "source": "./claude-code",
15
+ "version": "0.7.37",
16
+ "source": {
17
+ "source": "git-subdir",
18
+ "url": "https://github.com/activeloopai/hivemind.git",
19
+ "path": "claude-code",
20
+ "sha": "5f451351f845c391b9938499c232b96a149aedde"
21
+ },
17
22
  "homepage": "https://github.com/activeloopai/hivemind"
18
23
  }
19
24
  ]
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hivemind",
3
3
  "description": "Cloud-backed persistent memory powered by Deeplake — read, write, and share memory across Claude Code sessions and agents",
4
- "version": "0.7.36",
4
+ "version": "0.7.37",
5
5
  "author": {
6
6
  "name": "Activeloop",
7
7
  "url": "https://deeplake.ai"
@@ -1543,7 +1543,7 @@ function extractLatestVersion(body) {
1543
1543
  return typeof v === "string" && v.length > 0 ? v : null;
1544
1544
  }
1545
1545
  function getInstalledVersion() {
1546
- return "0.7.36".length > 0 ? "0.7.36" : null;
1546
+ return "0.7.37".length > 0 ? "0.7.37" : null;
1547
1547
  }
1548
1548
  function isNewer(latest, current) {
1549
1549
  const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
@@ -52,5 +52,5 @@
52
52
  }
53
53
  }
54
54
  },
55
- "version": "0.7.36"
55
+ "version": "0.7.37"
56
56
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hivemind",
3
- "version": "0.7.36",
3
+ "version": "0.7.37",
4
4
  "type": "module",
5
5
  "description": "Hivemind — cloud-backed persistent shared memory for AI agents, powered by DeepLake",
6
6
  "license": "Apache-2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeplake/hivemind",
3
- "version": "0.7.36",
3
+ "version": "0.7.37",
4
4
  "description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
5
5
  "type": "module",
6
6
  "repository": {
@@ -30,6 +30,7 @@
30
30
  "LICENSE"
31
31
  ],
32
32
  "scripts": {
33
+ "prebuild": "node scripts/sync-versions.mjs",
33
34
  "build": "tsc && node esbuild.config.mjs",
34
35
  "bundle": "node esbuild.config.mjs",
35
36
  "dev": "tsc --watch",
@@ -41,8 +42,8 @@
41
42
  "audit:openclaw": "node scripts/audit-openclaw-bundle.mjs",
42
43
  "pack:check": "node scripts/pack-check.mjs",
43
44
  "ci": "npm run typecheck && npm run dup && npm test",
44
- "prepare": "husky",
45
- "prepublishOnly": "npm run build"
45
+ "prepare": "husky && npm run build",
46
+ "prepack": "npm run build"
46
47
  },
47
48
  "lint-staged": {
48
49
  "*.ts": [