Core product

Memory Hive is the part users install first.

It solves the amnesia problem directly: private memory for each agent, shared memory for the team, and a curator path for durable truth.

Private silosShared hiveCurator workflowMarkdown-native
Memory HivePrivate silos + shared hive + curator loop.
Agent AOwn log, context, memory.
Agent BOwn log, context, memory.
Shared HiveCurated truth everyone can read.
CuratorPromotes durable lessons.
Install

Start with one command.

The installer creates the local hive, first agent silo, and boot contract. Users see the simple path first; advanced workflows stay behind the curtain.

curl -fsSL https://hive.neural-forge.io/install.sh | sh
HyperRecall

Fast recall, still auditable.

v1.1 adds memory-hive recall and memory-hive hyper. The hive stays file-backed; the local SQLite/FTS5 index returns compact cited bundles with expansion handles.

Source path and line span on every result.Stable HiveCodes for handoffs.Bundle cache invalidates when source files change.
Live hive benchmarkBefore broad context. After cited recall.
Beforefull hive context
209k tokens
Afterrecall bundle
386 tokens
542×smaller packet
8msbundle cache hit
20,652chunks indexed

Measured on Travis's live hive. Markdown remains truth; the index is a speed layer.

Architecture

Files that agents can read and humans can trust.

Private silo

Each agent writes its own log, context, and durable lessons. No other agent edits that space.

~/.memory-hive/hive/agents/hermes/log.md
~/.memory-hive/hive/agents/hermes/memory.md
~/.memory-hive/hive/agents/hermes/context.md

Shared hive

Reusable knowledge moves from raw learning to curated truth through an explicit promotion path.

~/.memory-hive/hive/index.md
~/.memory-hive/hive/knowledge/
~/.memory-hive/hive/learnings/raw/
~/.memory-hive/hive/learnings/distilled/
Daily use

Progressive disclosure keeps onboarding clean.

TierUser seesPurpose
Beginnerinstall, add, health checkGet agents remembering without learning internals.
Dailydigest, syncReview recent activity and keep local hive state fresh.
Curatorpromote, prune, rollbackMaintain shared truth when the team has enough history.