a skill for claude code and codex to recall past conversations
npx skills add https://github.com/arjunkmrm/recall --skill recallCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
Ever lost a conversation session with Claude Code or Codex and wish you could resume it? This skill lets Claude and your agents search across all your past conversations with full-text search. Builds a SQLite FTS5 index over ~/.claude/projects/ and ~/.codex/sessions/ with BM25 ranking, Porter stemming, CJK support, and incremental updates.
npx skills add arjunkmrm/recall
Then use /recall in Claude Code (or Codex) or ask "find a past session where we talked about foo" (you might need to restart Claude Code).
~/.claude/projects/**/*.jsonl ──┐
├─▶ Index ──▶ ~/.recall.db (SQLite FTS5)
~/.codex/sessions/**/*.jsonl ───┘ [incremental - mtime-based]
Query ──▶ Detect CJK? ──▶ FTS5 Match ──▶ BM25 rank ──▶ Recency boost ──▶ Results
│ [half-life: 30 days]
│
┌─────┴──────┐
│ │
No CJK Has CJK
porter trigram
unicode61 table
│ │
└─────┬──────┘
▼
snippet extraction
highlighted excerpts
~/.recall.db[claude] or [codex] with highlighted excerptsFound a bug or have an idea? Open an issue or submit a pull request — contributions are welcome!