Hivemind Team Memory (Activeloop)
Gives the agent a disciplined way to search Activeloop Hivemind's org-wide session memory (index → summaries → raw JSONL) plus team skill sharing and semantic search controls.
UtilitiesIntermediate★ 1,588⑂ 103AI score 8/10Last updated: Aug 21, 2026
What it does
- Searches the org-wide shared memory stored in
~/.deeplake/memory/in a fixed order:index.md→summaries/→sessions/*.jsonl. - Forces the agent to check both built-in memory and Hivemind memory whenever recalling information.
- Documents org management via
auth-login.js: SSO login, whoami, org/workspace switching, member invite/remove. - Uses
hivemind skillifyto pull, push, promote and unpull skills mined from session logs across the team. - Toggles semantic memory search with
hivemind embeddings(install/enable/disable/status). - Safety rails: bash-only access to memory files, no subagents, give up on empty files after 2 tries.
Who it's for
- Teams already running the Activeloop Hivemind plugin.
- Orgs that want multi-user, multi-session work context in one recallable store.
- Admins distributing or revoking shared Claude/Codex skills.
Examples
- "Summarize last month's payment-module refactor discussion" → scan
index.md, then read only the matching summary. grep -r "rate limit" ~/.deeplake/memory/to dig up how a past incident was handled.hivemind skillify pull --user alice@corp.com --to globalto install only a teammate's authored skills globally.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/activeloopai/hivemind/HEAD/harnesses/codex/skills/deeplake-memory/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the harnesses/codex/skills/deeplake-memory folder from the GitHub repo activeloopai/hivemind into my ~/.claude/skills/activeloopai-hivemind-memory/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/activeloopai/hivemind.git && mkdir -p ~/.claude/skills && cp -r hivemind/harnesses/codex/skills/deeplake-memory ~/.claude/skills/hivemind-memory⚠ This is a third-party skill. Check the source repository before installing.
- Make sure Node.js is available:
node -v. - Clone the repo:
git clone https://github.com/activeloopai/hivemind.git - Copy the skill:
mkdir -p ~/.claude/skills && cp -r hivemind/harnesses/codex/skills/deeplake-memory ~/.claude/skills/hivemind-memory - Install the Hivemind plugin /
hivemindCLI so that~/.deeplake/gets created. - Log in:
node "<plugin-path>/bundle/commands/auth-login.js" login. - Verify with
... whoamiand... org listthat the right org/workspace is active. - Restart Claude Code and ask something like "check Hivemind memory for ...".
- Optional: run
hivemind embeddings installfor semantic search (~600MB download).
View source on GitHub ↗License: Apache-2.0