@deeplake/hivemind 0.7.31 → 0.7.32
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/bundle/cli.js +427 -233
- package/codex/bundle/capture.js +550 -122
- package/codex/bundle/embeddings/embed-daemon.js +55 -4
- package/codex/bundle/pre-tool-use.js +447 -90
- package/codex/bundle/shell/deeplake-shell.js +431 -74
- package/codex/bundle/stop.js +437 -80
- package/codex/bundle/wiki-worker.js +429 -72
- package/cursor/bundle/capture.js +625 -197
- package/cursor/bundle/embeddings/embed-daemon.js +55 -4
- package/cursor/bundle/pre-tool-use.js +432 -75
- package/cursor/bundle/session-start.js +8 -1
- package/cursor/bundle/shell/deeplake-shell.js +431 -74
- package/cursor/bundle/wiki-worker.js +429 -72
- package/hermes/bundle/capture.js +626 -198
- package/hermes/bundle/embeddings/embed-daemon.js +55 -4
- package/hermes/bundle/pre-tool-use.js +431 -74
- package/hermes/bundle/session-start.js +8 -1
- package/hermes/bundle/shell/deeplake-shell.js +431 -74
- package/hermes/bundle/wiki-worker.js +429 -72
- 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
|
@@ -1511,7 +1511,14 @@ Organization management \u2014 each argument is SEPARATE (do NOT quote subcomman
|
|
|
1511
1511
|
- hivemind remove <user-id> \u2014 remove member
|
|
1512
1512
|
|
|
1513
1513
|
SKILLS (skillify) \u2014 mine + share reusable skills across the org:
|
|
1514
|
-
${renderSkillifyCommands()}
|
|
1514
|
+
${renderSkillifyCommands()}
|
|
1515
|
+
|
|
1516
|
+
Embeddings (semantic memory search) \u2014 opt-in, persisted in ~/.deeplake/config.json:
|
|
1517
|
+
- hivemind embeddings install \u2014 download deps (~600MB), symlink agents, set enabled:true
|
|
1518
|
+
- hivemind embeddings enable \u2014 flip enabled:true (run install first if deps missing)
|
|
1519
|
+
- hivemind embeddings disable \u2014 flip enabled:false + SIGTERM daemon (deps stay on disk)
|
|
1520
|
+
- hivemind embeddings uninstall [--prune] \u2014 remove agent symlinks + disable; --prune wipes deps too
|
|
1521
|
+
- hivemind embeddings status \u2014 show config + deps + per-agent link state`;
|
|
1515
1522
|
function resolveSessionId(input) {
|
|
1516
1523
|
return input.session_id ?? input.conversation_id ?? `cursor-${Date.now()}`;
|
|
1517
1524
|
}
|