npx claudepluginhub darkroomengineering/cc-settingsThis skill uses the workspace's default tool permissions.
Load state from a previous session and continue work.
Resumes previous coding session by loading .planning/HANDOFF.json and STATE.md, presents project status with progress, decisions, and next actions, then routes to execution or planning.
Manages context handoffs between AI coding sessions. Detects HANDOFF.md files on startup, trigger words like 'handoff' or 'resume', and suggests transfers at milestones or session ends.
Generates Git-based session handoff documents summarizing progress, tasks, decisions, files touched, and resume commands for continuing work later.
Share bugs, ideas, or general feedback.
Load state from a previous session and continue work.
bun ~/.claude/src/scripts/handoff.ts resume
Or use:
/resume-handoff
Before loading the local handoff, check for a linked GitHub Issue:
BRANCH=$(git branch --show-current)
ISSUE_NUM=$(echo "$BRANCH" | grep -oE '[0-9]+' | head -1)
if [[ -n "$ISSUE_NUM" ]]; then
gh issue view "$ISSUE_NUM" --comments
fi
If an issue is found, present it as the primary context — it's the shared source of truth. The local handoff supplements it with session-specific details.
Present a combined summary:
List handoffs for current project:
ls ~/.claude/handoffs/ | grep "$(basename $(pwd))"
/resume-handoff
Loads the most recent handoff for current project.
/resume-handoff project-name-2024-01-15-1430
Loads a specific handoff file.
/resume-handoff list
Shows available handoffs.
When starting a new session, the setup automatically: