@deeplake/hivemind 0.7.69 → 0.7.70
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/codex/bundle/shell/deeplake-shell.js +4 -0
- package/cursor/bundle/shell/deeplake-shell.js +4 -0
- package/hermes/bundle/shell/deeplake-shell.js +4 -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
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.70"
|
|
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.
|
|
15
|
+
"version": "0.7.70",
|
|
16
16
|
"source": {
|
|
17
17
|
"source": "git-subdir",
|
|
18
18
|
"url": "https://github.com/activeloopai/hivemind.git",
|
|
19
19
|
"path": "claude-code",
|
|
20
|
-
"sha": "
|
|
20
|
+
"sha": "b90aadd1f9d2f959a2c9800a14a4b9131bdb75d8"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/activeloopai/hivemind"
|
|
23
23
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "0.7.70",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Activeloop",
|
|
7
7
|
"url": "https://deeplake.ai"
|
|
@@ -69313,6 +69313,10 @@ var DeeplakeFs = class _DeeplakeFs {
|
|
|
69313
69313
|
const rows = await client.query(sql);
|
|
69314
69314
|
for (const row of rows) {
|
|
69315
69315
|
const p22 = row["path"];
|
|
69316
|
+
const kind = classifyPath(p22);
|
|
69317
|
+
if (kind === "goal" && fs3.goalsTable || kind === "kpi" && fs3.kpisTable) {
|
|
69318
|
+
continue;
|
|
69319
|
+
}
|
|
69316
69320
|
fs3.files.set(p22, null);
|
|
69317
69321
|
fs3.meta.set(p22, {
|
|
69318
69322
|
size: Number(row["size_bytes"] ?? 0),
|
|
@@ -69313,6 +69313,10 @@ var DeeplakeFs = class _DeeplakeFs {
|
|
|
69313
69313
|
const rows = await client.query(sql);
|
|
69314
69314
|
for (const row of rows) {
|
|
69315
69315
|
const p22 = row["path"];
|
|
69316
|
+
const kind = classifyPath(p22);
|
|
69317
|
+
if (kind === "goal" && fs3.goalsTable || kind === "kpi" && fs3.kpisTable) {
|
|
69318
|
+
continue;
|
|
69319
|
+
}
|
|
69316
69320
|
fs3.files.set(p22, null);
|
|
69317
69321
|
fs3.meta.set(p22, {
|
|
69318
69322
|
size: Number(row["size_bytes"] ?? 0),
|
|
@@ -69313,6 +69313,10 @@ var DeeplakeFs = class _DeeplakeFs {
|
|
|
69313
69313
|
const rows = await client.query(sql);
|
|
69314
69314
|
for (const row of rows) {
|
|
69315
69315
|
const p22 = row["path"];
|
|
69316
|
+
const kind = classifyPath(p22);
|
|
69317
|
+
if (kind === "goal" && fs3.goalsTable || kind === "kpi" && fs3.kpisTable) {
|
|
69318
|
+
continue;
|
|
69319
|
+
}
|
|
69316
69320
|
fs3.files.set(p22, null);
|
|
69317
69321
|
fs3.meta.set(p22, {
|
|
69318
69322
|
size: Number(row["size_bytes"] ?? 0),
|
package/openclaw/dist/index.js
CHANGED
|
@@ -1799,7 +1799,7 @@ function extractLatestVersion(body) {
|
|
|
1799
1799
|
return typeof v === "string" && v.length > 0 ? v : null;
|
|
1800
1800
|
}
|
|
1801
1801
|
function getInstalledVersion() {
|
|
1802
|
-
return "0.7.
|
|
1802
|
+
return "0.7.70".length > 0 ? "0.7.70" : null;
|
|
1803
1803
|
}
|
|
1804
1804
|
function isNewer(latest, current) {
|
|
1805
1805
|
const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
|
package/openclaw/package.json
CHANGED