auto
Toggle automatic handoff save (90%/95% triggers) for THIS session — pass on, off, or status
Restore a handoff snapshot from `.claude/handoff/history/` as the current handoff. Usage - /handoff-revive:restore <timestamp>
> /plugin marketplace add sofumel/claude-handoff-revive > /plugin install handoff-revive@handoff-revive-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/restoreContext preview
What this command does when you run it.
Restore a handoff snapshot from `.claude/handoff/history/` as the current handoff. Usage - /handoff-revive:restore <timestamp>
description: Restore a handoff snapshot from `.claude/handoff/history/` as the current handoff. Usage - /handoff-revive:restore <timestamp> argument-hint: <timestamp>
Restore the snapshot the user named (`$ARGUMENTS`). If no timestamp was given, run `/handoff-revive:list` behavior first (list-history script) and ask which one to restore.
bash "${CLAUDE_PLUGIN_ROOT:-.claude}/skills/handoff-revive/scripts/restore-history.sh" <timestamp> $r = if ($env:CLAUDE_PLUGIN_ROOT) { $env:CLAUDE_PLUGIN_ROOT } else { ".claude" }; powershell -ExecutionPolicy Bypass -File "$r/skills/handoff-revive/scripts/restore-history.ps1" -Timestamp <timestamp>The script archives the existing `current.md` into history before overwriting, so nothing is lost. On success, confirm in the user's language and offer to run `/handoff-revive:resume` to continue from the restored snapshot.
Note: this restores the **structured handoff snapshot** (goal / done / wip / todo / next_action / touched_files / decisions / lessons_learned) — not the full conversation. Rolling back conversation history is what native `--resume` / `/rewind` do; this restores the much cheaper work-state checkpoint instead.
Resume Claude Code work after rate/usage/context limits without replaying the prior transcript. Auto-saves at 90%/95% usage. Plugin-installable, 10 languages.
Repo: sofumel/claude-handoff-revive
Toggle automatic handoff save (90%/95% triggers) for THIS session — pass on, off, or status
Show what changed between the current handoff and a past snapshot, section by section. Usage - /handoff-revive:diff [timestamp]
Diagnose the handoff-revive installation - toolchain, script pairs, hooks, and current handoff state.
List handoff snapshots in `.claude/handoff/history/` (one is archived automatically on every save).
Preview what the next session will read from `.claude/handoff/current.md` (read-only dry-run, zero-token shell check).