← ClaudeAtlas

handofflisted

Finish the CURRENT session in one move: write a rich model-authored handoff, open a fresh full-window Kimi session that takes over (its SessionStart hook auto-loads the handoff into context), and close this one once the fresh session has it — a clean baton pass, one session at a time. Use when you want to wrap up and continue fresh on demand (not just at the compaction threshold). Trigger: /skill:handoff
sashabogi/trantor · ★ 1 · AI & Automation · score 75
Install: claude install-skill sashabogi/trantor
# Relay Handoff — pass the baton to a fresh session Write a complete handoff capturing everything a NEW session needs to continue this work without re-deriving context, and save it so the next session in this project auto-loads it on start. ## Instructions 1. Compose a thorough markdown handoff for the current task with these sections (be specific — exact file paths, concrete next actions; the successor has a fresh window and only this): - **TASK** — what we're doing and the goal - **STATE** — what's done, what's in progress - **KEY DECISIONS** — choices made and why - **OPEN THREADS & NEXT STEPS** — the concrete actions to do next, in order - **KEY FILES & LOCATIONS** — exact paths, commands, URLs, IDs the successor needs - **GOTCHAS** — anything that will bite if forgotten 2. Save it AND pass the baton in one shot — pipe the markdown to the helper with `--baton`: ```bash cat << 'HANDOFF' | node "${KIMI_SKILL_DIR}/../../bin/write-handoff.mjs" --baton <your handoff markdown> HANDOFF ``` `--baton` writes the handoff, opens a FRESH `kimi` session in a new Terminal window (its SessionStart hook claims the handoff and injects it into context — the new session resumes on its first prompt; say "recap" and it summarizes where the work stands), and closes THIS Terminal window once the fresh session has taken over — a true baton pass, one session at a time. (Omit `--baton` to only write the handoff without spawning/closing.) It's