← ClaudeAtlas

handofflisted

Write a state capsule so the next session — or a different agent/harness — can resume unfinished work without re-deriving context. Use when a session is ending with work incomplete, when the user says "handoff", "pack up", "ส่งต่อ", "continue tomorrow", when switching between Claude Code and Codex mid-task, or when context is about to be compacted away on a long task.
ohm41321/luciazero · ★ 5 · AI & Automation · score 77
Install: claude install-skill ohm41321/luciazero
# Handoff — state that survives the session `/retro` records **permanent lessons**; this records **transient state**. A good capsule lets a stranger (including future-you with zero context) type one command and be productive in two minutes. A stale capsule is worse than none — so capsules are consumed and deleted, never accumulated. ## 1. Write the capsule Create `HANDOFF.md` at the repo root: ```markdown # Handoff — <date> ## Goal <the original request, one paragraph, verbatim enough to re-anchor> ## State - Done: <what is finished, and the verify evidence: command → decisive line> - In progress: <the exact piece mid-flight, and which files hold it> - Verify: <the command(s) to run, fast and full tier> ## Next step <ONE literal command or edit to do first — not a theme, an action> ## Open hypotheses - H1: <suspected cause / approach> — status: <untested | supported by X | refuted by Y> ## Landmines - <thing that looks safe but is not, discovered this session> ``` Rules: - **The next step is literal.** "Continue the refactor" is not a next step; "run `pytest tests/test_auth.py -k refresh` — it is the failing one" is. - **State only what this session knows.** No aspirations, no backlog — that belongs in the issue tracker. - **Refuted hypotheses stay in the capsule** — they are exactly what the next session would otherwise waste an hour re-deriving. If a lesson is permanent (true beyond this task), it also goes through `/retro`. - Uncommitted changes: say so explicit