Help us improve
Share bugs, ideas, or general feedback.
From frontend-skills
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.
npx claudepluginhub redpanda-data/ui-harness --plugin frontend-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/frontend-skills:handoff What should the next session focus on?What should the next session focus on?The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a concise handoff document for another agent/session to continue from here.
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.
Compacts the current conversation into a handoff document for another Claude Code agent to continue work. Saves to OS temp directory, redacts sensitive info, and references existing artifacts by path.
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.
Share bugs, ideas, or general feedback.
Create a concise handoff document for another agent/session to continue from here.
Use when the user wants to:
handoff_file=$(mktemp -t handoff-XXXXXX.md)
cat "$handoff_file" >/dev/null
# Handoff
## Next session focus
<What the next agent/session should do first.>
## Current state
<Only facts needed to resume. Include branch, cwd, PR/issue links if relevant.>
## Decisions made
<Bullets. Link to ADRs/plans/issues instead of restating them.>
## Open questions
<Bullets, or "None".>
## Next actions
1. <First concrete action>
2. <Second concrete action>
3. <Verification or shipping step>
## Relevant artifacts
- <path or URL>: <why it matters>
## Suggested skills
- </skill-name>: <why>