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-skillsCompacts the current conversation into a handoff document so a fresh agent can continue the work in a new session. Preserves decisions, state, and context before it is lost.
Captures 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.
Generates a portable markdown handoff document capturing session state, decisions, and next steps for continuation by another agent or session.