Skip to content

v0.0.2

Choose a tag to compare

@oscardvs oscardvs released this 21 Jun 19:16

First public release of Anamnesis, a cross-machine, file-first memory layer for Claude Code.

What's in it

  • Local-first store: markdown is the source of truth, indexed by SQLite FTS5 (WAL mode).
  • MCP server (FastMCP): memory_search / memory_list / memory_status / memory_write / memory_sync.
  • Cross-machine sync: git over your private Tailscale mesh; the index is rebuilt locally and never synced.
  • Session hooks: SessionStart inject + background sync, SessionEnd and PreCompact capture.
  • One-command setup: anamnesis init wires up the MCP server, hooks, the store, and a first sync.
  • Git-like dashboard (Next.js): browse, full-text search, edit with write-back, and per-machine history.

Install

uv tool install anamnesis-memory && anamnesis init

The PyPI distribution is anamnesis-memory; the import package and CLI command are both anamnesis.

Pre-alpha: APIs and setup may still change.