Create a handoff document capturing current session state for future resumption
Creates a handoff document capturing current session state for future resumption.
/plugin marketplace add lerianstudio/ring/plugin install ring-default@ring[session-name] [description]Create a detailed handoff document that preserves the current session's context, learnings, and next steps for future sessions.
/create-handoff [session-name] [description]
Arguments:
session-name (optional): Work stream name (e.g., auth-feature, context-management)description (optional): Brief description of the handoffIf arguments not provided, infer from:
docs/plans/# Get session context
SESSION_NAME="${1:-$(git branch --show-current | sed 's/^feature\///')}"
TIMESTAMP=$(date +"%Y-%m-%d_%H-%M-%S")
DESC="${2:-session-handoff}"
# Create directory
mkdir -p "docs/handoffs/${SESSION_NAME}"
# File path
echo "docs/handoffs/${SESSION_NAME}/${TIMESTAMP}_${DESC}.md"
Run these commands to gather required metadata:
# Git state
git rev-parse HEAD
git branch --show-current
git remote get-url origin 2>/dev/null || echo "local"
# Timestamp
date -u +"%Y-%m-%dT%H:%M:%SZ"
Use the handoff-tracking skill template. Fill in:
After writing the handoff, respond:
Handoff created: docs/handoffs/{session-name}/{timestamp}_{desc}.md
The handoff has been automatically indexed and will be searchable.
Resume in a new session with:
/resume-handoff docs/handoffs/{session-name}/{timestamp}_{desc}.md
User: /create-handoff context-management artifact-index-complete
Assistant: Creating handoff for context-management session...
[Gathers metadata, writes handoff document]
Handoff created: docs/handoffs/context-management/2025-12-27_15-45-00_artifact-index-complete.md
Resume in a new session with:
/resume-handoff docs/handoffs/context-management/2025-12-27_15-45-00_artifact-index-complete.md
This command MUST load the skill for complete workflow execution.
Use Skill tool: handoff-tracking
The skill contains the complete workflow with: