Skip to main content
ClaudeWave
Slash Command95 estrellas del repoactualizado 7d ago

resume-handoff

The resume-handoff command lists up to ten recent conversation handoff files stored in the .aspens/sessions directory, displays their timestamps and task summaries, and allows users to select one to resume. Use this command when returning to a previous conversation to quickly restore context about the task, current progress, and next steps from a saved handoff point.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/aspenkit/aspens/HEAD/.claude/commands/resume-handoff.md -o ~/.claude/commands/resume-handoff.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

resume-handoff.md

Show recent saved handoffs and let the user choose which to resume.

## Steps

1. List all `.aspens/sessions/*-handoff.md` files, sorted newest first (max 10).
2. For each, show: number, timestamp (from filename), and the first `## Task summary` or `## Latest prompt` line if present.
3. If no handoffs exist, say so and stop.
4. Ask the user which handoff to resume (by number).
5. Read the selected handoff file.
6. Summarize the task, current state, and next steps.
7. Continue from where the handoff left off.