Help us improve
Share bugs, ideas, or general feedback.
From hb
Compacts the current conversation into a handoff document for a fresh agent to continue mid-task. Use when ending a session with work in progress.
npx claudepluginhub helderberto/agent-skills --plugin hbHow this skill is triggered — by the user, by Claude, or both
Slash command
/hb:handoff What will the next session be used for?What will the next session be used for?The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write a handoff document summarising the current conversation so a fresh agent can continue.
Summarizes the current Claude Code conversation into a handoff document for another agent to continue work. Useful when context switching or passing tasks between agents.
Compacts the current conversation into a self-contained handoff document so a fresh agent or developer can resume work by reading only that file. Use when pausing work or summarizing long sessions.
Compacts the current session into a handoff document so another agent or fresh session can continue the work. Use when handing off, transferring context, or starting a parallel agent.
Share bugs, ideas, or general feedback.
Write a handoff document summarising the current conversation so a fresh agent can continue.
If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.
mktemp /tmp/handoff-XXXXXX.md. Use the absolute path it returns.# Handoff — <one-line goal>
## Goal
What the next session should accomplish. If `$ARGUMENTS` was passed, lead with it.
## State
- Branch: <branch>
- Uncommitted: <yes/no + short summary, or "clean">
- Last action: <what we just finished or were doing>
## Decisions made
Non-obvious choices already settled. Skip anything obvious from the code.
## Open questions
Explicit unknowns the next agent must resolve before progressing.
## Next steps
Concrete first action — a command, a file to open, a test to write.
## References
Paths or URLs to PRDs, plans, ADRs, issues, commits, diffs. Do NOT duplicate their content.
## Suggested skills
List skills the next session should likely invoke (e.g. `/hb:build`, `/hb:tdd`).
mktemp fails → fall back to /tmp/handoff-$(date +%s).md and print the path.