Hivemind
Shared cloud memory for a team's agents: stores session traces and turns repeated patterns into skills
Install
/plugin marketplace add activeloopai/hivemind
/plugin install hivemind
/reload-plugins
/hivemind:loginThis is third-party code. Review the repository files before installing.
What it does
Hivemind records every agent session's prompts, tool calls and responses as structured traces in Deeplake. A background worker mines traces for repeated patterns and codifies them into SKILL.md files available to every agent in the workspace. Search over traces and skills is hybrid lexical and semantic, and a wiki page summarizing each session is generated at the end. It connects to Claude Code as a plugin, to Codex and Cursor through hooks, and to OpenClaw, Hermes and pi through extensions and MCP.
Who it is for. For engineering teams that want one agent's findings to become available to teammates' agents.
Good fit when
- A team of several people uses Claude Code, Codex or Cursor on shared work
- Past session solutions should be recalled in new sessions automatically
- You want skills distilled from real work rather than written by hand
Not a fit when
- Code and prompts must not go to an external cloud
- You work solo and the agent's local memory is enough
Example request
Search team memory for how we handled the last database migration with column renamesLimitations
Requires a Deeplake account and sign-in via browser or token. Session traces, including prompts and tool output, are stored in Deeplake's cloud or your own bucket with BYOC. The npm install needs Node.js 22. Claude Cowork support is alpha. Availability from Russia without a VPN is unverified.
How to disable. Run hivemind uninstall for all assistants or hivemind codex uninstall for one. Capture for a session is disabled with HIVEMIND_CAPTURE=false.
Security check
- Sends prompts, tool calls and responses from every session to an external cloud
- Installs hooks into every detected assistant
README in short
The README describes the loop of capturing traces, codifying skills and propagating them across a team's agents, and reports the authors' LoCoMo benchmark results. Install is a one-line script, npm, or a Claude Code plugin, with a table of supported agents and integration methods. A section covers tenant isolation, encryption and storage. Apache-2.0 licensed.
FAQ
Can data stay in my own storage?
Yes, BYOC supports your own GCS, Azure, S3 or on-prem bucket.
How to install without a browser, e.g. in CI?
Pass a token: HIVEMIND_TOKEN=<token> hivemind install or hivemind install --token <token>.
Related
Open-source personal AI assistant on your own machine: answers in Telegram, Slack, Discord and WhatsApp, extended with skills and plugins
A self-improving agent from Nous Research with a TUI, messaging gateway, cron jobs and skills it writes itself
An open source coding agent for the terminal and desktop with build and plan modes
Anthropic's coding agent for the terminal, IDE and GitHub: understands your codebase, runs tasks and handles git