plugins marketplace
← All plugins

recall

v0.1.0

Resumable session memory for Claude Code — append-only status log, opt-in per project, integrates with your task.md / output.md subagent files.

Claude Code3 skills

by tonimaxxMIT0updated 3 months ago

Source

git clone https://github.com/tonimaxx/recall

Clone 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
├── skills/checkpoint/SKILL.md
├── skills/init/SKILL.md
└── skills/resume/SKILL.md

Skills3

checkpointskills/checkpoint/SKILL.md

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.

initskills/init/SKILL.md

Opt this project into recall. Creates .claude/recall.json with default config and an empty status.md so SessionEnd starts logging.

resumeskills/resume/SKILL.md

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

.claude-plugin/plugin.json
{
  "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"
  ]
}