@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.
@@ -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
  async function createPlaceholder(api, table, sessionId, cwd, userName, orgName, workspaceId, pluginVersion) {
1516
1523
  const summaryPath = `/summaries/${userName}/${sessionId}.md`;
1517
1524
  const existing = await api.query(`SELECT path FROM "${table}" WHERE path = '${sqlStr(summaryPath)}' LIMIT 1`);