recall-echo 0.4.0

Persistent three-layer memory system for AI coding agents
recall-echo-0.4.0 is not a library.

recall-echo

License: MIT Version Crates.io

Persistent three-layer memory system for AI coding agents. Gives Claude Code (and similar tools) long-term recall across sessions.

The Problem

Claude Code's built-in memory (MEMORY.md) is a single flat file. It works for small notes, but breaks down as conversations accumulate — no session continuity, no archival history, no lifecycle management. You lose context every time a session ends or compaction kicks in.

How It Works

recall-echo adds a structured memory protocol via Claude Code's auto-loaded rules system (~/.claude/rules/). No patches, no forks — just a rules file that teaches the agent how to manage its own memory.

                         ┌──────────────────────────┐
                         │      Claude Code agent    │
                         │    (reads / writes all    │
                         │     layers via protocol)  │
                         └────┬─────────┬───────┬───┘
                              │         │       │
                    read+write│   write │       │ search
                              │         │       │ on demand
                              ▼         ▼       ▼
┌─────────────────┐  ┌──────────────┐  ┌─────────────────────┐
│   Layer 1       │  │   Layer 2    │  │      Layer 3        │
│   MEMORY.md     │  │ EPHEMERAL.md │  │   Archive Logs      │
│                 │  │              │  │                     │
│ Curated facts,  │  │ Session      │  │ archive-log-001.md  │
│ preferences,    │  │ summary,     │  │ archive-log-002.md  │
│ stable patterns │  │ staging area │  │ ...                 │
│                 │  │              │  │                     │
│ Always in       │  │ Written at   │  │ YAML frontmatter    │
│ context         │  │ session end, │  │ + content body      │
│ (auto-loaded)   │  │ promoted     │  │                     │
└─────────────────┘  │ automatically│  │ Created by CLI:     │
                     └──────────────┘  │ recall-echo         │
                                       │   promote/checkpoint│
                                       │                     │
                                       │ Indexed in          │
                                       │ ARCHIVE.md          │
                                       └─────────────────────┘

Session Lifecycle

 Session Start          During Session           On Compaction            Session End
 ─────────────          ──────────────           ──────────────           ───────────

 ┌─────────────┐        ┌─────────────┐         ┌─────────────┐         ┌──────────────┐
 │ recall-echo │        │ Update      │         │ PreCompact  │         │ Write        │
 │ promote     │───────▶│ MEMORY.md   │────────▶│ hook fires  │────────▶│ EPHEMERAL.md │
 │ (safety net │        │ with stable │         │             │         │ with session │
 │  — no-op if │        │ facts       │         └──────┬──────┘         │ summary      │
 │  already    │        └─────────────┘                │                └──────┬───────┘
 │  promoted)  │                                       ▼                       │
 └─────────────┘                              ┌──────────────┐                 ▼
                                              │ recall-echo  │         ┌──────────────┐
                                              │ checkpoint   │         │ SessionEnd   │
                                              │ --trigger    │         │ hook fires   │
                                              │ precompact   │         │              │
                                              └──────┬───────┘         │ recall-echo  │
                                                     │                 │ promote      │
                                                     ▼                 │              │
                                              ┌──────────────┐         │ Archives     │
                                              │ CLI creates  │         │ EPHEMERAL →  │
                                              │ scaffolded   │         │ archive log  │
                                              │ archive log  │         │ + clears it  │
                                              │ + updates    │         └──────────────┘
                                              │ ARCHIVE.md   │
                                              └──────┬───────┘
                                                     │
                                                     ▼
                                              ┌──────────────┐
                                              │ Agent fills  │
                                              │ in Summary,  │
                                              │ Key Details, │
                                              │ Action Items,│
                                              │ Unresolved   │
                                              └──────────────┘

The CLI handles all mechanical bookkeeping — numbering, file creation, timestamps, index updates. The agent writes one summary to EPHEMERAL.md at session end. The SessionEnd hook automatically promotes it to an archive log on exit. The session-start promote is a safety net in case the hook didn't fire.

Installation

cargo install (recommended)

cargo install recall-echo
recall-echo init

Install script

Downloads a prebuilt binary for your platform. Falls back to a bash-only installer if no binary is available.

curl -fsSL https://raw.githubusercontent.com/dnacenta/recall-echo/main/install.sh | bash

Prebuilt binaries

Download from GitHub Releases for:

  • x86_64-unknown-linux-gnu
  • aarch64-unknown-linux-gnu
  • x86_64-apple-darwin
  • aarch64-apple-darwin (Apple Silicon)

Extract and run:

tar xzf recall-echo-<target>.tar.gz
./recall-echo init

Manual (from source)

git clone https://github.com/dnacenta/recall-echo.git
cd recall-echo
cargo build --release
./target/release/recall-echo init

Commands

recall-echo init

Initialize or upgrade the memory system. Creates directories, writes protocol rules, and configures hooks (PreCompact for checkpointing, SessionEnd for automatic promotion). Idempotent — running it again won't overwrite existing memory files. Upgrades legacy echo hooks to the new checkpoint hook.

recall-echo checkpoint

Create a precompact archive checkpoint. Scaffolds a new archive log with YAML frontmatter and section templates, updates the ARCHIVE.md index, and prints the file path for the agent to fill in.

recall-echo checkpoint                              # default: precompact trigger
recall-echo checkpoint --context "working on auth system"
  recall-echo checkpoint
        │
        ├──▶ Scan ~/.claude/memories/ for highest archive-log-XXX.md
        │
        ├──▶ Create archive-log-{next}.md with YAML frontmatter
        │    + empty Summary / Key Details / Action Items / Unresolved
        │
        ├──▶ Append entry to ARCHIVE.md index
        │
        └──▶ Print path + instructions for the agent
             "RECALL-ECHO checkpoint: ~/.claude/memories/archive-log-005.md"

recall-echo promote

Promote EPHEMERAL.md into an archive log. Reads EPHEMERAL.md content, creates a new archive log with the content as the body, updates the ARCHIVE.md index, and clears EPHEMERAL.md. If EPHEMERAL.md is empty or missing, exits cleanly with no action.

recall-echo promote                                 # auto-extract context from content
recall-echo promote --context "session about auth"   # override context field
  recall-echo promote
        │
        ├──▶ Read EPHEMERAL.md (exit if empty)
        │
        ├──▶ Scan ~/.claude/memories/ for next log number
        │
        ├──▶ Create archive-log-{next}.md with YAML frontmatter
        │    + EPHEMERAL.md content as the body
        │
        ├──▶ Append entry to ARCHIVE.md index
        │
        ├──▶ Clear EPHEMERAL.md
        │
        └──▶ Print confirmation
             "Promoted EPHEMERAL.md → Log 005 | Date: 2026-02-24"

recall-echo status

Memory system health check. Shows MEMORY.md line count, EPHEMERAL.md state, archive log count, protocol status, and hook configuration. Warns about approaching limits or legacy hooks.

recall-echo — memory system status

  MEMORY.md:    142/200 lines (71%)
  EPHEMERAL.md: has content (pending promotion)
  Archive logs: 23 logs, latest: 2026-02-24
  Protocol:     installed
  Hooks:        PreCompact ✓  SessionEnd ✓

  No issues detected.

What It Creates

~/.claude/
│
├── rules/
│   └── recall-echo.md ·········· Protocol rules (auto-loaded into every session)
│
├── memory/
│   └── MEMORY.md ················ Layer 1 — curated facts (≤200 lines)
│
├── memories/
│   ├── archive-log-001.md ······· Layer 3 — checkpoint (YAML frontmatter)
│   ├── archive-log-002.md
│   └── ...
│
├── EPHEMERAL.md ·················· Layer 2 — session summary staging area
├── ARCHIVE.md ···················· Index — log number, date, trigger per entry
└── settings.json ················· Hooks: PreCompact + SessionEnd

Archive Log Format

Logs created by recall-echo checkpoint and recall-echo promote include YAML frontmatter for structured metadata:

---
log: 5
date: "2026-02-24T21:30:00Z"
trigger: precompact
context: "working on auth system"
topics: []
---

# Archive Log 005

## Summary
<!-- Fill in: What was discussed, decided, and accomplished -->

## Key Details
<!-- Fill in: Important specifics — code changes, configurations, decisions -->

## Action Items
<!-- Fill in: What needs to happen next -->

## Unresolved
<!-- Fill in: Open questions or threads to pick up later -->

Old logs without frontmatter continue to work — numbering is by filename, not content.

Configuration

recall-echo requires no configuration. It works out of the box with Claude Code's existing infrastructure.

It adds two hooks to settings.json:

  • PreCompact — runs recall-echo checkpoint before context compaction, creating a scaffolded archive log
  • SessionEnd — runs recall-echo promote on exit, archiving EPHEMERAL.md automatically

If you already have hooks configured, they're preserved. If upgrading from v0.2.0, the legacy echo hook is automatically replaced.

How the Agent Uses It

Once installed, the agent follows the protocol automatically:

  • Runs recall-echo promote at session start as a safety net (usually already promoted by the SessionEnd hook)
  • Updates MEMORY.md when it learns stable facts (never speculative or session-specific info)
  • Writes EPHEMERAL.md at session end with a rich session summary
  • Fills in archive log sections when a precompact checkpoint fires
  • Searches archives with Grep when it needs historical context
  • Distills MEMORY.md proactively when it approaches 200 lines, moving details to topic files

You can also explicitly tell the agent to remember something, search its history, or review what it knows. The memory is transparent — it's all plain markdown files you can read and edit yourself.

Upgrading from v0.2.0

Run recall-echo init — it will detect the legacy echo hook and migrate it to the new checkpoint hook. Your existing memory files, archive logs, and settings are preserved.

Uninstall

Remove the rules file and optionally delete the memory data:

# Remove the protocol (agent stops following it)
rm ~/.claude/rules/recall-echo.md

# Optionally remove all memory data
rm -rf ~/.claude/memory ~/.claude/memories ~/.claude/EPHEMERAL.md ~/.claude/ARCHIVE.md

You may also want to remove the PreCompact and SessionEnd hooks from ~/.claude/settings.json.

Contributing

See CONTRIBUTING.md for branch naming, commit conventions, and workflow.

License

MIT