← ClaudeAtlas

chat-recalllisted

Recall past AI-coding work — prior sessions, decisions, and project history — through the chat-recall MCP tools (mcp__chat-recall__recall_*). Use when the user says "continue" / "pick up where we left off", "did we decide X", "remember when we…", "what was I doing", "what do you know about this project/me", or otherwise references earlier work that is not in the current context. Also the entry point for the surfaces no focused skill owns: leaked secrets ("did I paste an API key"), the shared task board and team activity ("what are my open tasks", "what is my team working on"), and index health ("is chat-recall working", "re-index my sessions"). This is the hub: it routes to the focused chat-recall skills and lists every recall_* tool. Reach for it whenever the answer lives in PAST work rather than the files in front of you.
munhq/chat-recall · ★ 1 · AI & Automation · score 64
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