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 status
  • git branch --show-current
  • git log -5 --oneline
  • git 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. If docs/rick/README.md is missing, copy README-TEMPLATE.md to it verbatim.
Installs
32
First Seen
Jun 4, 2026
rick-save — bambooxlotus/deren-skills