Help us improve
Share bugs, ideas, or general feedback.
From handoff
Hydrate session context from last handoff. Triggers: resume, pick up where I left off, continue from last session, what was I working on, session status, what's the state. Use for deep hydration beyond the auto-injected summary.
How this skill is triggered — by the user, by Claude, or both
Slash command
/handoff:startopusThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
<role>
Share bugs, ideas, or general feedback.
!cat .handoff/state.json 2>/dev/null || echo "No state. Run /handoff:end first."
Branch: !git branch --show-current 2>/dev/null
!git log -10 --format='%h %s' 2>/dev/null
!gh pr list --limit 5 2>/dev/null || echo ""
hostname from state.json. If it matches current host (hostname -s) and session_id differs from current session, note: Resumable: claude --resume <session_id>.resume.files still exist. Report missing or renamed files.blocker: true, handoff: true)resume: true, handoff: true)Ready. What would you like to work on?.handoff/state.json doesn't exist, the pre-loaded state outputs a raw string, not JSON. Don't try to parse it. Tell the user to run /handoff:end first.resume.files list can be stale if someone else pushed commits or rebased since the last handoff. Always verify files exist before referencing them.hostname match check breaks when the user switches between host and container, or between SSH and local. Don't block resume on hostname mismatch, just note it.gh pr list fails without GitHub CLI auth. Swallow the error and skip the PR section rather than erroring out.npx claudepluginhub ramonclaudio/skills --plugin handoffUse when resuming work from a previous session that reached context threshold, or when a handoff summary exists. Reads handoff state and markdown to restore context, todos, and continue seamlessly.
Loads, validates, and resumes handoff documents from .hatch3r/handoffs/active/ with schema, integrity, expiry, and git_ref drift checks before surfacing content as user-tier context.
Captures session state into HANDOFF.md for clean resumption in a new Claude Code session. Reads spec, plan, and git status before writing.