recall
v0.1.0Resumable session memory for Claude Code — append-only status log, opt-in per project, integrates with your task.md / output.md subagent files.
by tonimaxxMIT0updated 3 months ago
Source
git clone https://github.com/tonimaxx/recallClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
├── .claude-plugin/plugin.json├── skills/checkpoint/SKILL.md├── skills/init/SKILL.md└── skills/resume/SKILL.md
Skills3
Manually capture a recall checkpoint mid-session. Use when finishing a logical chunk of work and you want it logged before continuing or before the SessionEnd hook fires automatically.
Opt this project into recall. Creates .claude/recall.json with default config and an empty status.md so SessionEnd starts logging.
Load the latest recall entries from .claude/status.md so the model can resume work with prior context. Does nothing if the project hasn't enabled recall.
Manifests1
{
"name": "recall",
"description": "Resumable session memory for Claude Code — append-only status log, opt-in per project, integrates with your task.md / output.md subagent files.",
"version": "0.1.0",
"author": {
"name": "tonimaxx",
"url": "https://github.com/tonimaxx"
},
"homepage": "https://github.com/tonimaxx/recall",
"repository": "https://github.com/tonimaxx/recall",
"license": "MIT",
"keywords": [
"memory",
"session",
"resume",
"checkpoint",
"status",
"claude-code"
]
}