chat-recalllisted
Install: claude install-skill munhq/chat-recall
# chat-recall — cross-session memory for AI coding
chat-recall indexes your Claude Code, Gemini, OpenCode, Codex and Antigravity
sessions — plus plans, tasks, CLAUDE.md files, shell history and agent diaries —
into a searchable server with a temporal knowledge graph. When a request depends
on something that happened in an *earlier* session (a decision, a past fix, "what
were we doing"), don't guess or ask the user to re-explain — recall it.
All tools are MCP tools on the `chat-recall` server, named
`mcp__chat-recall__<tool>`.
**Reads are safe to call proactively. Writes are not.** Everything below is a
read except these, which change stored memory or state — treat each as an edit
and apply the test in `chat-recall-memory` before calling one:
`recall_kg_add`, `recall_kg_invalidate`, `recall_decision_record`,
`recall_diary_write`, `recall_set`, `recall_task_create`, `recall_task_update`,
`recall_security_dismiss`, `recall_rename_session`, `recall_regenerate_summary`,
`recall_reclassify`, `recall_index`, `recall_code_index`.
## Route to the right skill
Match the intent, then read that skill and follow its workflow:
| The user wants… | Read skill |
| --- | --- |
| Continue / resume / pick up prior work; cold start on an ongoing task | `chat-recall-resume` |
| Find past conversations — "remember when", "have we done X", "find my notes on…" | `chat-recall-find` |
| Store or recall a decision / fact; "what do you know about…", "did we decide…" | `chat-recall-memory` |
| The st