From ring-default
Creates a handoff document capturing session state (completed work, decisions, open items, next steps) and delivers it via Plan Mode for context transfer. Use when ending a session or when context grows large.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ring-default:creating-handoffsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- User is ending a session and wants to preserve context for later
Creates a handoff document capturing session context, delivered via Claude Code's Plan Mode so the user gets a native "clear context and continue implementing" option.
Before entering plan mode, collect:
Glob and Read to verify file states and paths as neededBash with date for timestampsCall EnterPlanMode tool.
Write the full handoff document (template below) to the plan file path specified in the system message. The handoff IS the plan.
Call ExitPlanMode tool — this presents the native resume options.
Handoff created and loaded as plan.
Choose "clear context and continue implementing" to resume in a fresh context.
# Handoff: {Session Name}
**Created:** {timestamp}
**Session:** {session-name}
**Status:** {In Progress | Blocked | Ready for Review | Complete}
## Summary
{1-2 sentence overview}
## Current State
{Where things stand — specific about done vs pending}
## Completed Work
- {item with file references}
## In-Progress Work
- {partially done items — describe exactly where you stopped}
## Key Decisions
| Decision | Rationale | Alternatives Considered |
|----------|-----------|------------------------|
## What Worked
- {successful approaches worth reusing}
## What Didn't Work
- {failed approaches to avoid}
## Open Questions
- [ ] {unresolved questions or blockers}
## Next Steps
1. {First action when resuming — specific and actionable}
## Relevant Files
| File | Purpose | Status |
|------|---------|--------|
## Context for Resumption
{Gotchas, environment setup, branch state, test commands}
npx claudepluginhub p/lerianstudio-ring-default-defaultCaptures 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.
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.