From pro-workflow
Generate a structured handoff document capturing current progress, open tasks, key decisions, and context needed to resume work. Use when ending a session.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pro-workflow:session-handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Different from wrap-up. Wrap-up is a checklist for *you*. Handoff is a document written for the *next session*.
Different from wrap-up. Wrap-up is a checklist for you. Handoff is a document written for the next session.
Use when saying "handoff", "continue later", "pass to next session", "session transfer", or ending a session and wanting to resume smoothly.
git status
git diff --stat
git log --oneline -5
git branch --show-current
# Session Handoff — [date] [time]
## Status
- **Branch**: feature/xyz
- **Commits this session**: 3
- **Uncommitted changes**: 2 files modified
- **Tests**: passing / failing / not run
## What's Done
- [completed task 1]
- [completed task 2]
## What's In Progress
- [current task with context on where you stopped]
- [file:line that needs attention next]
## What's Pending
- [next task that hasn't been started]
- [blocked items with reason]
## Key Decisions Made
- [decision 1 and why]
- [decision 2 and why]
## Learnings Captured
- [Category] Rule (from this session)
## Files Touched
- `path/to/file1.ts` — [what changed]
- `path/to/file2.ts` — [what changed]
## Gotchas for Next Session
- [thing that tripped you up]
- [non-obvious behavior discovered]
## Resume Command
> Continue working on [branch]. [1-2 sentence context]. Next step: [specific action].
npx claudepluginhub rohitg00/pro-workflow --plugin pro-workflowGenerates HANDOFF.md file summarizing completed tasks, in-progress work, next steps, notes, related files, and git state before Claude Code session end. Useful for context reset and work resumption.
Generates a structured session handoff summary with current status, completed/remaining tasks, decisions, pitfalls, and next steps for context resumption.
Captures current workflow state into a handoff document so a fresh session can resume exactly where the previous one left off. Useful when context is running low or work needs to continue in a new session.