Save current conversation state to disk so a later session resumes with full context. Captures focus and next step, plus optional decisions, findings, open threads, blockers, and references; appends snapshots newest-at-top. Use when ending a session before context loss, checkpointing mid-session, or starting a session that should continue prior work. Triggers: "save context", "dump conversation", "checkpoint this", "session handoff", "save handoff", "resume session", "load handoff", "continue...
Scanned 9/4/2026
Install to Claude Code
npx -y skills add NeverSight/skills_feed --skill handoff --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Handoff?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/neversight-handoff)More formats (shields.io, HTML) on the badges page.
---
name: handoff
description: >-
Save current conversation state to disk so a later session resumes
with full context. Captures focus and next step, plus optional
decisions, findings, open threads, blockers, and references; appends
snapshots newest-at-top. Use when ending a session before
context loss, checkpointing mid-session, or starting a session that
should continue prior work. Triggers: "save context", "dump
conversation", "checkpoint this", "session handoff", "save handoff",
"resume session", "load handoff", "continue from last", "clear
handoff". Not for end-of-session persistence across memory systems
or for repository-wide project context.
argument-hint: "[next session focus]"
---
# Handoff
Capture conversation state to `.artifacts/.handoff.md` so a later
session resumes with full context. Three ops: save, load, clear.
## Workflow
```
save --> append snapshot at top of .artifacts/.handoff.md
load --> Read .artifacts/.handoff.md; latest snapshot at top
clear --> overwrite .artifacts/.handoff.md with empty content
```
## Triggers
- **Save** ("save context", "dump conversation", "checkpoint this",
"session handoff", "save handoff") → [save.md](references/save.md)
- **Load** ("resume session", "load handoff", "continue from last") →
[load.md](references/load.md)
- **Clear** ("clear handoff", "reset handoff") → see Clear below
## Clear
Write empty content to `.artifacts/.handoff.md`. Do not delete the
file — an empty file is treated as missing on next load, and writing
avoids a Bash permission prompt. Silent no-op when the file is
already absent.
## Guidelines
- Append snapshot at top, never bottom — most recent always first
- One snapshot per save; do not merge across saves
- Skip ops silently when file is absent (load and clear no-op)
- Save what is not already in committed artifacts — focus, open
threads, next step, decisions and findings worth carrying
## Anti-Pattern: Restating Artifacts
Snapshots that repeat content already captured in artifacts on disk,
commits, PRs, issues, or documentation waste space. The handoff
carries context that lives only in the conversation: unresolved
threads, decisions made on the fly, where to pick up, which skill to
invoke next. Anything already persisted elsewhere should be referenced
by path or URL, not duplicated.
## Anti-Pattern: Overwriting on Save
Each save prepends a new dated block at the top. Overwriting destroys
prior snapshots that may still hold useful context for older threads.
Append-at-top preserves history while keeping the latest visible first.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!