Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

UtilitiesIntermediate1,588103AI 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.mdsummaries/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 skillify to 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

  1. "Summarize last month's payment-module refactor discussion" → scan index.md, then read only the matching summary.
  2. grep -r "rate limit" ~/.deeplake/memory/ to dig up how a past incident was handled.
  3. hivemind skillify pull --user alice@corp.com --to global to 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Make sure Node.js is available: node -v.
  2. Clone the repo: git clone https://github.com/activeloopai/hivemind.git
  3. Copy the skill: mkdir -p ~/.claude/skills && cp -r hivemind/harnesses/codex/skills/deeplake-memory ~/.claude/skills/hivemind-memory
  4. Install the Hivemind plugin / hivemind CLI so that ~/.deeplake/ gets created.
  5. Log in: node "<plugin-path>/bundle/commands/auth-login.js" login.
  6. Verify with ... whoami and ... org list that the right org/workspace is active.
  7. Restart Claude Code and ask something like "check Hivemind memory for ...".
  8. Optional: run hivemind embeddings install for semantic search (~600MB download).
View source on GitHubLicense: Apache-2.0