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.
How 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.
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>
npx claudepluginhub redpanda-data/ui-harness --plugin frontend-skillsCaptures full session context into a handoff document so a fresh agent can resume work with zero prior context. Write a single actionable sentence for the next agent.
Creates structured session handoff documents that capture working state for continuation or context rehydration. Useful before clearing context or ending a session.
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.