/doctor
Diagnose the handoff-revive installation - toolchain, script pairs, hooks, and current handoff state.
$ npx -y skills add sofumel/claude-handoff-revive --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/doctor
Context preview
What this command does when you run it.
Diagnose the handoff-revive installation - toolchain, script pairs, hooks, and current handoff state.
Command definition
doctor.mddescription: Diagnose the handoff-revive installation - toolchain, script pairs, hooks, and current handoff state.
Run the `doctor-handoff` script and present the result in the user's language (read `.claude/handoff/lang` if present):
- Linux/macOS/WSL/Git-Bash:
bash "${CLAUDE_PLUGIN_ROOT:-.claude}/skills/handoff-revive/scripts/doctor-handoff.sh"- Windows PowerShell:
$r = if ($env:CLAUDE_PLUGIN_ROOT) { $env:CLAUDE_PLUGIN_ROOT } else { ".claude" }; powershell -ExecutionPolicy Bypass -File "$r/skills/handoff-revive/scripts/doctor-handoff.ps1"Show the PASS/WARN/INFO lines as-is, then summarize: if there are WARN lines, explain in 1–2 sentences what each one means and the most likely fix (HOOK_SETUP.md for hook wiring, reinstall for missing script pairs, `/handoff-revive:save` then validate for an invalid handoff). If everything passes, say the installation looks healthy.
Resume Claude Code work after rate/usage/context limits without replaying the prior transcript. Auto-saves at 90%/95% usage. Plugin-installable, 10 languages.
Other commands on claude-handoff-revive.
- /auto
Toggle automatic handoff save (90%/95% triggers) for THIS session — pass on, off, or status
Open command - /diff
Show what changed between the current handoff and a past snapshot, section by section. Usage - /handoff-revive:diff [timestamp]
Open command - /list
List handoff snapshots in `.claude/handoff/history/` (one is archived automatically on every save).
Open command - /preview
Preview what the next session will read from `.claude/handoff/current.md` (read-only dry-run, zero-token shell check).
Open command - /restore
Restore a handoff snapshot from `.claude/handoff/history/` as the current handoff. Usage - /handoff-revive:restore <timestamp>
Open command - /resume
Resume work from `.claude/handoff/current.md` in this fresh session (skip `--resume`).
Open command

