← All plugins
recall
v0.4.0Durable, fully-local project memory for Claude Code. Logs every session to .recall/history.md and condenses it into .recall/context.md with a local Python summarizer (TF-IDF + TextRank) — no API key, no external model, nothing leaves your machine. New sessions resume from the saved context.
Claude Code
by Raiyan YahyaMIT738updated 1 week ago
Source
git clone https://github.com/raiyanyahya/recallClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
recall/
└── .claude-plugin/plugin.json
Manifests1
.claude-plugin/plugin.json
{
"name": "recall",
"description": "Durable, fully-local project memory for Claude Code. Logs every session to .recall/history.md and condenses it into .recall/context.md with a local Python summarizer (TF-IDF + TextRank) — no API key, no external model, nothing leaves your machine. New sessions resume from the saved context.",
"version": "0.4.0",
"author": {
"name": "Raiyan Yahya"
},
"homepage": "https://github.com/raiyanyahya/recall",
"repository": "https://github.com/raiyanyahya/recall",
"license": "MIT",
"keywords": [
"memory",
"context",
"summarizer",
"textrank",
"local",
"offline"
]
}