@deeplake/hivemind 0.7.48 → 0.7.49
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 +1 -1
- package/codex/bundle/commands/auth-login.js +1 -1
- package/cursor/bundle/commands/auth-login.js +1 -1
- package/hermes/bundle/commands/auth-login.js +1 -1
- 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.49"
|
|
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.49",
|
|
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": "032c528d737ea200593cc7a16785e1954f9c66b2"
|
|
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.49",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Activeloop",
|
|
7
7
|
"url": "https://deeplake.ai"
|
package/bundle/cli.js
CHANGED
|
@@ -16715,7 +16715,7 @@ async function runAuthCommand(args) {
|
|
|
16715
16715
|
}
|
|
16716
16716
|
case "whoami": {
|
|
16717
16717
|
if (!creds) {
|
|
16718
|
-
console.log("Not logged in. Run:
|
|
16718
|
+
console.log("Not logged in. Run: hivemind login");
|
|
16719
16719
|
break;
|
|
16720
16720
|
}
|
|
16721
16721
|
console.log(`User org: ${creds.orgName ?? creds.orgId}`);
|
|
@@ -1451,7 +1451,7 @@ async function runAuthCommand(args) {
|
|
|
1451
1451
|
}
|
|
1452
1452
|
case "whoami": {
|
|
1453
1453
|
if (!creds) {
|
|
1454
|
-
console.log("Not logged in. Run:
|
|
1454
|
+
console.log("Not logged in. Run: hivemind login");
|
|
1455
1455
|
break;
|
|
1456
1456
|
}
|
|
1457
1457
|
console.log(`User org: ${creds.orgName ?? creds.orgId}`);
|
|
@@ -1451,7 +1451,7 @@ async function runAuthCommand(args) {
|
|
|
1451
1451
|
}
|
|
1452
1452
|
case "whoami": {
|
|
1453
1453
|
if (!creds) {
|
|
1454
|
-
console.log("Not logged in. Run:
|
|
1454
|
+
console.log("Not logged in. Run: hivemind login");
|
|
1455
1455
|
break;
|
|
1456
1456
|
}
|
|
1457
1457
|
console.log(`User org: ${creds.orgName ?? creds.orgId}`);
|
|
@@ -1451,7 +1451,7 @@ async function runAuthCommand(args) {
|
|
|
1451
1451
|
}
|
|
1452
1452
|
case "whoami": {
|
|
1453
1453
|
if (!creds) {
|
|
1454
|
-
console.log("Not logged in. Run:
|
|
1454
|
+
console.log("Not logged in. Run: hivemind login");
|
|
1455
1455
|
break;
|
|
1456
1456
|
}
|
|
1457
1457
|
console.log(`User org: ${creds.orgName ?? creds.orgId}`);
|
package/openclaw/dist/index.js
CHANGED
|
@@ -1793,7 +1793,7 @@ function extractLatestVersion(body) {
|
|
|
1793
1793
|
return typeof v === "string" && v.length > 0 ? v : null;
|
|
1794
1794
|
}
|
|
1795
1795
|
function getInstalledVersion() {
|
|
1796
|
-
return "0.7.
|
|
1796
|
+
return "0.7.49".length > 0 ? "0.7.49" : null;
|
|
1797
1797
|
}
|
|
1798
1798
|
function isNewer(latest, current) {
|
|
1799
1799
|
const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
|
package/openclaw/package.json
CHANGED