← ClaudeAtlas

checkpoint-handofflisted

Use before any context boundary — a context compaction, the end of a long session, a handoff to another agent or a future session — on multi-session work. Writes the resume state DOWN, outside the conversation: a working doc with what's done, what's in flight, the numbered remaining tasks in order, the standing constraints (the rules that must survive verbatim), and the files worth re-reading first. The test: a cold session with zero conversational memory could pick up the next task without asking a single question. Use when the user says they're about to compact, when context is getting long mid-project, when pausing a phased effort, or when work will continue 'tomorrow' (it never continues in the same window).
mikestangdevs/craft-skills · ★ 2 · Code & Development · score 75
Install: claude install-skill mikestangdevs/craft-skills
# Checkpoint Handoff ## The failure mode this fixes Long projects outlive context windows. The session that planned the work is never the session that finishes it — compaction, restarts, and tomorrow all guarantee that. And when the boundary hits without preparation, the next session starts by *reconstructing* instead of working: re-deriving the plan, re-discovering which tasks were done, re-learning the constraint the user stated forcefully forty turns ago, and — worst — confidently redoing or undoing finished work because nothing recorded that it was finished. Conversation memory is the wrong place for project state. Summaries compress; the exact rule ("never X, always Y"), the precise task ordering, and the "we already tried that, it fails because Z" knowledge are exactly what compression loses. The fix is mechanical: before the boundary, the state gets written to durable files, structured for a cold reader. ## When to Use This Skill - The user says they're about to compact, or you notice the context getting heavy mid-project - A session is ending with the project unfinished (i.e., almost every session of a real project) - Work is being handed to another agent, a fresh session, or a parallel worker - A phased plan is mid-flight — some tasks done, some in progress, some queued - You were just asked "where were we?" — the skill fired one session too late **Don't use when:** the task is single-session and will finish here; a checkpoint of a finished task is just a repor