Agent skill · AI & Agents

hivemind-memory

Global team and org memory powered by Activeloop. ALWAYS check BOTH built-in memory AND Hivemind memory when recalling information.

Activeloop9,216★ · +4/wk · 1 repos on radarProfile →
codexclaude-codecan modify filesApache-2.0
Install
npx skills add activeloopai/hivemind --skill deeplake-memory --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: Bash
Path: harnesses/codex/skills/deeplake-memory/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,530
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hivemind Memory You have persistent memory at `~/.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 1. **First**: Read `~/.deeplake/memory/index.md` — quick scan of all sessions with dates, projects, descriptions 2. **If you need details**: Read the specific summary at `~/.deeplake/memory/summaries/<session>.md` 3. **If you need raw data**: Read the session JSONL at `~/.deeplake/memory/sessions/<user>/<file>.jsonl` 4. **Keyword search**: `grep -r "keyword" ~/.deeplake/memory/` Do NOT jump straight to reading raw JSONL files. Always start with index.md and summaries. ## Organization Management Each argument is separate — do NOT quote subcommands together. The auth command is at `$PLUGIN_ROOT/bundle/commands/auth-login.js` (or check the session context for the resolved path): - `node "<path>/auth-login.js" login` — SSO login - `node "<path>/au

What's inside
Steps it walks through
  1. Memory Structure
  2. How to Search
  3. Organization Management
  4. Skill Management (skillify)
  5. Embeddings (semantic memory search)
  6. Important: Bash Only
  7. Limits
  8. Getting Started
  9. Configuration
More from hivemind
All skills →
About this skill
What does the hivemind-memory skill do?

Global team and org memory powered by Activeloop. ALWAYS check BOTH built-in memory AND Hivemind memory when recalling information.

How do I install it?

Run `npx skills add activeloopai/hivemind --skill deeplake-memory --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From activeloopai/hivemind, a repository with 1,530 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going