Hippo v0.21.0: Biologically-Inspired Memory for AI Agents with Multi-Tool Support

Hippo is a biologically-inspired memory system for AI agents that addresses the problem of agents forgetting everything between sessions. Unlike solutions that just save everything, Hippo implements decay, retrieval strengthening, and consolidation mechanics similar to human memory.
Core Features
Works with: Claude Code, Codex, Cursor, OpenClaw, OpenCode, Pi, and any CLI agent. Imports from: ChatGPT, Claude (CLAUDE.md), Cursor (.cursorrules), and any markdown. Storage uses SQLite backbone with markdown/YAML mirrors that are git-trackable and human-readable. Zero runtime dependencies, requiring only Node.js 22.5+. Optional embeddings via @xenova/transformers.
Setup and Usage
Install with npm install -g hippo-memory. For single project setup: hippo init. For all projects at once: hippo init --scan ~ which finds every git repo under your home directory, creates a .hippo/ store in each, and seeds it with lessons from commit history.
After setup, hippo sleep runs automatically at session end via agent hooks and performs five operations:
- Learns from today's git commits
- Imports new entries from Claude Code MEMORY.md files
- Consolidates memories (decay, merge, prune)
- Deduplicates near-identical memories (keeps the stronger copy)
- Shares high-value lessons to the global store so they surface in every project
Manual usage includes: hippo remember "FRED cache silently dropped the tips_10y series" --tag error and hippo recall "data pipeline issues" --budget 2000.
What's New in v0.21.0
hippo setup — one command for every tool. Detects Claude Code, OpenCode, OpenClaw, Codex, Cursor, and Pi on your machine and installs all available SessionEnd + SessionStart hooks in one pass. Idempotent and safe to re-run.
OpenCode hooks: SessionEnd + SessionStart install into ~/.config/opencode/opencode.json (OpenCode added Claude-Code-compatible hooks in Jan 2026). You now see consolidation output — new SessionStart hook prints the previous session's hippo sleep output between banners on next startup.
Recent Updates
v0.20.3 added visible confirmation on session-end sleep. The installed SessionEnd hook now echoes [hippo] consolidating memory... before running and [hippo] sleep complete or [hippo] sleep failed after. Existing installs need reinstall (hippo hook uninstall claude-code && hippo hook install claude-code) to pick up the new command.
v0.20.2 changed Claude Code hook to use SessionEnd instead of Stop. Earlier versions ran hippo sleep after every assistant turn; now it runs once at session exit. Re-running hippo hook install claude-code migrates existing Stop entries automatically. Hook installation and initialization no longer create accidental CLAUDE.md files — they only patch agent-instruction files that already exist.
📖 Read the full source: HN LLM Tools
👀 See Also

Karpathy Coding Skill Rewritten for Free Plan, Unlocks Claude Coding Discipline Without Pro
A Reddit user rewrote Karpathy's coding discipline guidelines for Claude's free plan, removing terminal and subagent dependencies. The system prompt auto-triggers on coding requests and enforces verification-first thinking.

Claude Code v2.1.139 Adds /goal Command for Async Long-Running Tasks
Claude Code v2.1.139 introduces the /goal command, enabling fire-and-forget sessions that run until a completion condition is met, plus a new agents view to monitor active sessions.

Developer shares 10+ MCP servers for AI agent settlement, reputation, and micropayments
A developer built BlindOracle on Claude Code with 100+ agents and created 10+ MCP servers for settlement, reputation, and micropayments. The architecture includes private commit-reveal forecasts, on-chain scoring, per-request micropayments, and verifiable agent attestation.

Clash of Agents: An MMA Arena for Testing Autonomous AI Agent Behavior
Clash of Agents is an experiment where autonomous AI agents compete in an MMA fighting arena with turn-based combat, post-fight analysis, and social interactions. Agents register, choose fighting disciplines, train stats, and fight with 21 real MMA moves and a combo system.