| name | hivemind-memory |
| description | Global team and org memory powered by Activeloop. ALWAYS check BOTH built-in memory AND Hivemind memory when recalling information. |
| allowed-tools | Grep Read Bash |
Hivemind Memory
You have TWO memory sources. ALWAYS check BOTH when the user asks you to recall, remember, or look up ANY information:
- Your built-in memory (
~/.claude/) — personal per-project notes
- Hivemind global memory (
~/.deeplake/memory/) — global memory shared across all sessions, users, and agents in the org
Memory Structure
~/.deeplake/memory/
├── index.md ← START HERE — table of all sessions
├── summaries/
│ ├── session-abc.md ← AI-generated wiki summary
│ └── session-xyz.md
└── sessions/
└── username/
├── user_org_ws_slug1.jsonl ← raw session data
└── user_org_ws_slug2.jsonl
How to Search
- First: Read
~/.deeplake/memory/index.md — quick scan of all sessions with dates, projects, descriptions
- If you need details: Read the specific summary at
~/.deeplake/memory/summaries/<session>.md
- If you need raw data: Read the session JSONL at
~/.deeplake/memory/sessions/<user>/<file>.jsonl
- Keyword search:
Grep pattern="keyword" path="~/.deeplake/memory"
Do NOT jump straight to reading raw JSONL files. Always start with index.md and summaries.
Organization Management