@deeplake/hivemind 0.6.48 → 0.7.9
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 +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +244 -20
- package/bundle/cli.js +1369 -112
- package/codex/bundle/capture.js +546 -96
- package/codex/bundle/commands/auth-login.js +290 -81
- package/codex/bundle/embeddings/embed-daemon.js +243 -0
- package/codex/bundle/pre-tool-use.js +666 -111
- package/codex/bundle/session-start-setup.js +231 -64
- package/codex/bundle/session-start.js +52 -13
- package/codex/bundle/shell/deeplake-shell.js +716 -119
- package/codex/bundle/skilify-worker.js +907 -0
- package/codex/bundle/stop.js +819 -79
- package/codex/bundle/wiki-worker.js +312 -11
- package/cursor/bundle/capture.js +1116 -64
- package/cursor/bundle/commands/auth-login.js +290 -81
- package/cursor/bundle/embeddings/embed-daemon.js +243 -0
- package/cursor/bundle/pre-tool-use.js +598 -77
- package/cursor/bundle/session-end.js +520 -2
- package/cursor/bundle/session-start.js +257 -65
- package/cursor/bundle/shell/deeplake-shell.js +716 -119
- package/cursor/bundle/skilify-worker.js +907 -0
- package/cursor/bundle/wiki-worker.js +571 -0
- package/hermes/bundle/capture.js +1119 -65
- package/hermes/bundle/commands/auth-login.js +290 -81
- package/hermes/bundle/embeddings/embed-daemon.js +243 -0
- package/hermes/bundle/pre-tool-use.js +597 -76
- package/hermes/bundle/session-end.js +522 -1
- package/hermes/bundle/session-start.js +260 -65
- package/hermes/bundle/shell/deeplake-shell.js +716 -119
- package/hermes/bundle/skilify-worker.js +907 -0
- package/hermes/bundle/wiki-worker.js +572 -0
- package/mcp/bundle/server.js +290 -75
- package/openclaw/dist/chunks/auth-creds-AEKS6D3P.js +14 -0
- package/openclaw/dist/chunks/chunk-SRCBBT4H.js +37 -0
- package/openclaw/dist/chunks/config-ZLH6JFJS.js +34 -0
- package/openclaw/dist/chunks/index-marker-store-PGT5CW6T.js +33 -0
- package/openclaw/dist/chunks/setup-config-C35UK4LP.js +114 -0
- package/openclaw/dist/index.js +929 -710
- package/openclaw/dist/skilify-worker.js +907 -0
- package/openclaw/openclaw.plugin.json +1 -1
- package/openclaw/package.json +1 -1
- package/openclaw/skills/SKILL.md +19 -0
- package/package.json +7 -1
- package/pi/extension-source/hivemind.ts +603 -22
package/openclaw/package.json
CHANGED
package/openclaw/skills/SKILL.md
CHANGED
|
@@ -45,6 +45,25 @@ Do NOT jump straight to reading raw JSONL files. Always start with `hivemind_ind
|
|
|
45
45
|
- `/hivemind_update` — shows how to install (ask the agent, or run `openclaw plugins update hivemind` in your terminal)
|
|
46
46
|
- `/hivemind_autoupdate [on|off]` — toggle the agent-facing update nudge (on by default: when a newer version is available, the agent is prompted to install it via `exec` if you ask to update)
|
|
47
47
|
|
|
48
|
+
## Skill Management (skilify)
|
|
49
|
+
|
|
50
|
+
Hivemind also mines reusable Claude skills from agent sessions and stores them in a per-org Deeplake table. Openclaw itself doesn't run sessions to mine, but you can pull skills others have already mined for the user. These run in the user's terminal (the openclaw plugin does not register them as `/hivemind_*` commands):
|
|
51
|
+
|
|
52
|
+
- `hivemind skilify` — show scope/team/install + per-project state
|
|
53
|
+
- `hivemind skilify pull` — sync skills for the current project from the org table
|
|
54
|
+
- `hivemind skilify pull --user <email>` — only that author's skills
|
|
55
|
+
- `hivemind skilify pull --users a,b,c` — multiple authors (CSV)
|
|
56
|
+
- `hivemind skilify pull --all-users` — explicit "no author filter"
|
|
57
|
+
- `hivemind skilify pull --to project|global` — install location (`<cwd>/.claude/skills/` vs `~/.claude/skills/`)
|
|
58
|
+
- `hivemind skilify pull --dry-run` — preview without touching disk
|
|
59
|
+
- `hivemind skilify pull --force` — overwrite local (creates `.bak`)
|
|
60
|
+
- `hivemind skilify pull <skill-name>` — pull only that one skill (combines with `--user`)
|
|
61
|
+
- `hivemind skilify scope <me|team|org>` — set sharing scope for new skills
|
|
62
|
+
- `hivemind skilify install <project|global>` — default install location
|
|
63
|
+
- `hivemind skilify team add|remove|list <name>` — manage team list
|
|
64
|
+
|
|
65
|
+
If the user asks to "pull skills from X", "share skills with the team", or similar, suggest the matching `hivemind skilify` command. Run `hivemind skilify --help` for the full reference.
|
|
66
|
+
|
|
48
67
|
## Limits
|
|
49
68
|
|
|
50
69
|
Do NOT delegate to subagents when reading Hivemind memory. If a tool call returns empty after 2 attempts, skip it and move on. Report what you found rather than exhaustively retrying.
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeplake/hivemind",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.9",
|
|
4
4
|
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/activeloopai/hivemind.git"
|
|
9
|
+
},
|
|
6
10
|
"publishConfig": {
|
|
7
11
|
"access": "public"
|
|
8
12
|
},
|
|
@@ -35,6 +39,7 @@
|
|
|
35
39
|
"typecheck": "tsc --noEmit",
|
|
36
40
|
"dup": "jscpd src",
|
|
37
41
|
"audit:openclaw": "node scripts/audit-openclaw-bundle.mjs",
|
|
42
|
+
"pack:check": "node scripts/pack-check.mjs",
|
|
38
43
|
"ci": "npm run typecheck && npm run dup && npm test",
|
|
39
44
|
"prepare": "husky",
|
|
40
45
|
"prepublishOnly": "npm run build"
|
|
@@ -46,6 +51,7 @@
|
|
|
46
51
|
"*.md": []
|
|
47
52
|
},
|
|
48
53
|
"dependencies": {
|
|
54
|
+
"@huggingface/transformers": "^3.0.0",
|
|
49
55
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
50
56
|
"deeplake": "^0.3.30",
|
|
51
57
|
"js-yaml": "^4.1.1",
|