v0.1.0 — first public release
First public release of mem0ry4ai — persistent, local-first memory for coding agents (built for Claude Code).
Highlights
- Markdown + git as the source of truth — auditable, diffable, supersede-never-delete; the SQLite FTS5 index is derived and disposable.
- Deterministic Claude Code hooks: inject relevant memories at SessionStart (scoped per project; capped multi-project index from a monorepo root), capture transcript pointers at SessionEnd/PreCompact.
- Trust-gated capture: the in-context agent writes directly; optional offline extraction with a local LLM (Ollama) goes through a human review queue — small models are noisy and over-confident (we measured ~1.0 confidence on everything).
- First-class
todoandstatustypes — they answer "where was I?" when you return to a project after weeks, pinned first in injection and UI. - Web UI (standalone
php -Slauncher, auto-started by the session hook): system dashboard with health checks and live updates, per-project pages, ranked FTS5 search, bulk operations, supersede-chain navigation, a "What Claude sees" injection preview, and the review queue. Bilingual (EN default / RO). - Zero heavy dependencies: Python stdlib + PHP 8 + git. No Docker, no vector database, no API keys.
Install
git clone https://github.com/cremenescu/mem0ry4ai.git && cd mem0ry4ai
./mem.py list # CLI works immediately
./server_web.sh # web UI -> http://127.0.0.1:8841/
python3 hooks/install.py --target user # Claude Code integrationSee the README for the full story, including why this exists and what we learned surveying the existing memory-tool landscape.