rick-save
Installation
SKILL.md
Rick Save
Session save point. Captures the current warm thread to docs/rick/<folder>/saves/<timestamp>.md so a future Claude session can pick up exactly where this one left off via /rick-respawn. <folder> is the current branch name (e.g. 48-rotate-share-token), or a one-word slug fallback when not on a feature branch.
Saves are append-only. Each session adds a new timestamped file under the feature's saves/ directory. Reviewing the directory shows the full timeline for that feature.
Tighter focus than a generic handoff: the next agent gets what to do right now, not a narrative summary of the whole session.
Protocol
1. Gather context (parallel, mandatory)
Run all of these. Read actual output, do not assume.
git statusgit branch --show-currentgit log -5 --onelinegit diff --stat $(git merge-base HEAD main 2>/dev/null)..HEAD 2>/dev/null || git diff --stat HEAD~5..HEAD 2>/dev/null- Check
docs/rick/<folder>/saves/exists. If not, create it. Ifdocs/rick/README.mdis missing, copy README-TEMPLATE.md to it verbatim.