From supergraph
Compacts current session context into a handoff document for continuation in a new session. Captures Git state, active plans, blockers, and key files to resume work seamlessly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/supergraph:handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Compress session state to a compact document. The next session picks up exactly where this one left off.
Compress session state to a compact document. The next session picks up exactly where this one left off.
Announce: "📦 /supergraph:handoff — compacting session state..."
Gather live state — do not rely on memory:
git status --short
git log --oneline -10
Read active plan file (if any) from docs/supergraph/plans/.
Save to $TMPDIR/supergraph-handoff-<YYYY-MM-DD>.md — NOT in the workspace (avoids accidental commits).
# Supergraph Handoff — <YYYY-MM-DD>
## Goal
[One sentence: what we were trying to accomplish]
## Status
[In-progress / Blocked / Ready for next phase]
## Active Plan
Path: [docs/supergraph/plans/<slug>.md]
Current task: Task N — [description]
Remaining tasks: [list with Status values]
## What Was Done
- [Completed task summaries — brief, no code]
## What Is Left
- [Remaining tasks, in order]
- [Any stuck tasks and why]
## Blockers / Open Questions
- [List — or "none"]
## Key Files Changed
- [path] — [what changed, one line]
## Git State
Branch: [branch name]
Last commit: [hash] [message]
Uncommitted: [list or "none"]
## Environment Context
[Copy from plan's Environment Context section]
## Suggested Skills for Next Session
1. /supergraph:scan (always first)
2. /supergraph:execute plan <slug> (continue tasks)
or /supergraph:tdd (if resuming single task)
3. /supergraph:fix → /supergraph:verify → /supergraph:review
## Notes
[Anything non-obvious a fresh agent needs to know]
Rules for content:
✅ /supergraph:handoff complete
- Document: $TMPDIR/supergraph-handoff-<date>.md
- Status: [current status]
- Resume: /supergraph:scan → read handoff doc → /supergraph:execute plan <slug>
$TMPDIRnpx claudepluginhub datit309/supergraph --plugin supergraphCaptures 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.
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.
Produces a compact handoff document that transfers context, state, and next objective without copying source material. Use when ending a session or passing work to another agent.