Show HN: Hippo, biologically inspired memory for AI agents
TL;DR Highlight
Hippo is an open-source memory layer that allows you to share memories across sessions between various AI agent tools such as Claude Code, Cursor, and Codex. It implements the brain's mechanisms of memory decay, retrieval strengthening, and consolidation in code.
Who Should Read
Developers who are frustrated by constantly having to re-explain context when switching between AI coding agents like Claude Code, Cursor, and Codex. Or teams who want to solve the problem of AI agents repeating the same mistakes.
Core Mechanics
- AI agents forget everything when a session ends, and existing solutions are simply 'file cabinets' that store everything and search it later. Hippo started from the idea of making it work like a brain.
- The key features are three: decay (forgetting over time), retrieval strengthening (making frequently used memories clearer), and consolidation (solidifying important memories into long-term memory).
- It can be used with various CLI agents such as Claude Code, Cursor, Codex, and OpenClaw, and also has an import function to load memories from ChatGPT's CLAUDE.md or Cursor's .cursorrules file.
- It uses SQLite as a backbone for storage and also mirrors it in human-readable Markdown/YAML files. It can be tracked with Git and exported simply by copying the folder without vendor lock-in.
- It has zero runtime dependencies and only requires Node.js 22.5 or higher. You can optionally attach @xenova/transformers if you want to use embedding-based similarity search.
- Installation is done with `npm install -g hippo-memory` followed by `hippo init` for initialization. Memories are stored using the `hippo remember '...'` command.
- Memories are tagged and have a confidence level, which structurally solves the problem of rule files becoming messy like a 400-line CLAUDE.md. Old information is automatically decayed.
- The author directly responded that v0.10.0 incorporates a lot of community feedback.
Evidence
- There was skepticism about whether decay-based forgetting is actually effective. One comment pointed out that 'exponential decay cannot capture sharp changes like PR merges. Biological learning makes sense when observing similar patterns repeatedly, but I don't know if that's a good analogy for learning code base commits.'
- There was also a sharp observation that 'knowing what to forget' is an AGI-complete problem. Judging what will be important in the future requires a model of future models and your current state, but current agents cannot even properly model their own capabilities.
- There was also an introduction to a project that approached the same problem from the opposite direction. ccrider (github.com/neilberkman/ccrider) indexes Claude Code and Codex session transcripts with SQLite FTS5 instead of having a separate memory layer, making them searchable via an MCP server.
- Several opinions were raised that 'active time' of the agent should be used instead of clock time as the basis for decay time. The problem is that memories disappear regardless of actual usage frequency if based on clock time for agents that run intermittently.
- The idea of location-based memory triggering was also suggested. If the file path or project path the agent is working on is used as a memory trigger, the relevant context is automatically activated and recalled more naturally. This is explained as being similar to how physical location strongly triggers procedural memory in sports or GUIs.
- It was pointed out that there is a similar paper with a similar name and technique, HippoRAG (arxiv.org/abs/2405.14831), which is not mentioned in the README. The community was curious whether this was intentional or overlooked.
How to Apply
- If you are a developer who switches between Claude Code and Cursor or uses multiple AI coding tools interchangeably, install it with `npm install -g hippo-memory && hippo init`, and then save important settings or error solutions you find in each tool with `hippo remember '...'`. This will maintain context when you switch tools.
- If your team is experiencing the same deployment bugs or configuration mistakes being repeated by AI agents, get into the habit of saving error memories in Hippo whenever an error occurs. The decay mechanism ensures that old and resolved issues fade naturally, while recurring issues are reinforced and more readily recalled in the agent's context.
- If you already have context built up in ChatGPT or Claude, you can import your ChatGPT conversations or CLAUDE.md and .cursorrules files into Hippo at once to manage them in a neutral format. Afterwards, you can commit the Markdown files to a Git repository to share them with your team.
- If you need embedding-based semantic search, install `@xenova/transformers` and use it. It finds past memories that are semantically similar rather than just keyword matching, making it more effective as the amount of memory increases.
Code Example
# Installation and initialization
npm install -g hippo-memory
hippo init
# Memory storage
hippo remember "FRED cache silently drops the t flag — always pass --no-cache explicitly"
# Import from ChatGPT or Claude, etc.
hippo import --from claude ./CLAUDE.md
hippo import --from cursor ./.cursorrules
# Memory search (requires @xenova/transformers for embedding)
hippo recall "cache related deployment issue"Terminology
Related Papers
Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
마케팅 웹사이트를 자동 생성하는 프로덕션 AI 에이전트를 Claude Opus 4.8에서 GPT-5.6 Sol로 전환한 실전 경험담으로, 단순 모델 교체가 아니라 eval 하네스, 툴 스키마, 캐싱, 추론 리플레이까지 손봐야 했던 과정을 구체적인 수치와 함께 정리했다.
What xAI's Grok build CLI sends to xAI: A wire-level analysis
xAI의 공식 코딩 CLI 도구 Grok Build가 사용자 동의 없이 전체 Git 저장소와 .env 시크릿 파일을 xAI 서버로 업로드한다는 사실이 네트워크 트래픽 분석으로 밝혀졌다.
Remember When It Matters: Proactive Memory Agent for Long-Horizon Agents
LLM 에이전트가 긴 작업 중 중요한 정보를 잊어버리는 문제를 별도의 메모리 에이전트가 '적절한 타이밍에' 끼어들어 해결하는 방법
WebSwarm: Recursive Multi-Agent Orchestration for Deep-and-Wide Web Search
복잡한 웹 검색을 재귀적으로 분해하고 각 노드에 적합한 검색 모드를 동적으로 할당하는 멀티에이전트 프레임워크
Show HN: Reverse-engineering web apps into agent tools
로그인된 웹 앱의 API 호출을 브라우저에서 감시해 자동으로 MCP 도구로 변환하는 에이전트를 만들었다. 소스 코드나 공식 API 문서 없이도 Jira, Spotify 같은 서비스에 AI 어시스턴트를 붙일 수 있다.
Show HN: FableCut – A browser video editor AI agents can drive (zero deps)
타임라인 전체를 JSON 파일 하나로 표현하고 MCP/REST로 AI 에이전트가 직접 편집할 수 있는 브라우저 비디오 에디터로, Claude 같은 AI가 프롬프트 하나로 영상을 자동 컷편집하고 결과를 실시간으로 UI에 반영해준다.
Related Resources
- Hippo Memory GitHub repository
- HippoRAG paper (related technique with similar name)
- ccrider - Session transcript search tool (MCP based)
- MH-FLOCKE - Robot memory based on Izhikevich spiking neurons
- claude-code-toolkit (skills based memory access)
- IEEE - Paper 1 on agent memory and behavior simulation
- IEEE - Paper 2 on agent memory and behavior simulation
- IEEE - Paper 3 on agent memory and behavior simulation