Skip to content
npm i -g hippo-memory · v1.15.0 · MIT

Know what to
forget.

A memory layer for AI agents, modeled on the hippocampus. Decay by default, strength through use, provenance on every memory.

$ npm install -g hippo-memory

Works with

  • Claude Code
  • Codex
  • Cursor
  • OpenClaw
  • OpenCode
  • Pi
  • any MCP client
hippo · ~/projects
$ npm install -g hippo-memory
$ hippo init --scan ~
✓ memory across every git repo under ~
$ hippo remember "deploy failed: forgot migrations" --error
▸ stored · half-life 14d [verified]
$ hippo recall "why did the deploy break"
â–¸ deploy failed: forgot migrations 0.91 [verified]
â–¸ run migrations before release 0.74 [observed]

an example session

The problem

Most AI memory saves everything and searches later.

That's storage with semantic search bolted on. It's why your agent kept hitting the same deploy bug last week. And the week before.

The system saw the failure four times. It had no way to know it should remember.

How it works

Memories decay. Retrieval makes them stronger.

The thing brains have been getting right for 500 million years. Hard lessons stick because you used them. Trivia fades because you didn't.

strengthtimerecallrecall

strength = decay over time, re-strengthened on every recall

7d half-life

Decay by default

Every memory fades on a 7-day half-life. Persistence is earned, not assumed.

+2d / recall

Retrieval strengthens

Use it or lose it. Each recall extends the half-life. Memories you reach for learn to survive.

2x half-life

Errors stick

Tag a failure once. It decays slower and resurfaces every time you walk back into that code.

3+ → 1

Sleep consolidates

On `hippo sleep`, three or more related episodes merge into one semantic pattern. The originals decay; the pattern survives.

Compare

Forget by default. Earn persistence through use.

The AI-memory category matured fast in 2026. Hippo's take - bio-decay, strengthen-on-use, outcome-weighted half-lives - is one stance among several. The matrix below is a feature snapshot, not a verdict.

Feature Hippo MemPalace Mem0 Basic Memory gbrain Zep Letta Cognee Memoria EverMind
Decay by default YesNoNoNoNoNoNoNoNoNo
Retrieval strengthening YesNoNoNoNoNoNoPartial (recall tuning)NoPartial (Skill Memory distills patterns)
Reward-proportional decay YesNoNoNoNoNoNoNoNoNo
Hybrid search (BM25 + embeddings) YesEmbeddings + spatialEmbeddings onlyNoYes (vec + rerank + graph)Yes (graph + vec)?Yes (GraphRAG)Yes (vector + full-text)Yes (mRAG, multi-modal)
Schema acceleration / knowledge graph Yes (schema)NoNoNoYes (typed KG, self-wiring)Yes (temporal KG)NoYes (auto-ontologies)No (typed claims)Yes (hierarchical: user/group/agent)
Conflict detection + resolution YesNoNoNoYes (eval-surfaced)Yes (auto-invalidate stale facts)NoNoYes (auto-detect + quarantine)Partial (temporal tracking)
Multi-agent shared memory YesNoNoNoYes (brain repo, team mounts)YesNo (single-agent state)YesYes (branch/merge across sessions)Yes (multi-agent coordination)
Transfer scoring YesNoNoNoNoNoNoNoNoNo
Outcome tracking YesNoNoNoNoNoNoNoNoPartial (Cases: agent trajectories)
Confidence tiers YesNoNoNoNo (typed facts)NoNoNoNoNo
Spatial organization NoYes (wings/halls/rooms)NoNoNoNoNoNoNoNo
Lossless compression NoYes (AAAK, 30x)NoNoNoNoNoNoNoNo
Cross-tool import (ChatGPT/Claude/Cursor) YesNoNoNoPartial (data sources)?NoPartial (28 data sources)No (Git ops)Partial (mRAG: PDFs/images/URLs)
Auto-hook install YesNoNoNoNoNoNoNoNoNo
MCP server YesYesNoNoYes (stdio + HTTP/OAuth)Partial (managed)Yes (via Letta Code)Yes (first-party Claude/LangGraph)Yes?
Zero runtime deps YesNo (ChromaDB)NoNoNo (PGLite or PG+pgvector)No (managed service)No (Python deps)No (Python deps)Yes (single Rust binary)No (managed + OSS)
LongMemEval (best published) 86.8% R@5 (F13+F9, oracle*)96.6% raw / 100% reranked R@5~49-85% R@5N/A97.6-97.9% R@5 (s_cleaned*)N/A (LoCoMo 80.3%)N/AN/A88.78% overall accuracy w/ reader**83.00% overall** (LoCoMo 93.05%, HaluMem 93.04%)
Git-friendly YesNoNoYesYesNoNoNoYes (Git is the model)?
Framework agnostic YesYesPartialYesYesYesYesYesYesYes
License MIT(open)Apache-2.0(open)MITApache-2.0 (community)Apache-2.0MIT (core)Apache-2.0Apache-2.0 (OSS) + cloud

* Split-mismatched: Hippo's 86.8% is on longmemeval_oracle (3 sessions per haystack); gbrain's 97.6% is on longmemeval_s_cleaned (~40 sessions per haystack). Different splits, different difficulty. Not directly comparable.

** Different metric: Memoria's 88.78% and EverMind's 83% are reported as overall accuracy with a reader LLM, not retrieval R@5. Higher denominator + LLM helps. Not directly comparable to retrieval-only R@5 numbers above.

Different tools answer different questions. Mem0 and Basic Memory implement "save everything, search later." MemPalace organizes spatially. gbrain, Zep, and Cognee extract typed entities into a knowledge graph. Letta lets the agent edit its own memory blocks. Memoria is Git-style version control over memory. EverMind is self-evolving Skill Memory. Hippo implements "forget by default, earn persistence through use." Complementary takes, not a single-axis ranking.

Source: the full comparison in the README

One command. Every repo gets memory.

Zero config. SQLite under the hood, zero runtime deps, works with every CLI agent you have.

$ npm install -g hippo-memory
$ hippo init --scan ~