Handoff prep continue
Skill orzilca/agent-handoff-skills/dist/claude/handoff-prep-continue
Session handoff skills for coding agents — Claude Code, Codex, Cursor, Gemini CLI & Grok Build. Capture a session to a file, then resume it fresh.
npx -y skills add orzilca/agent-handoff-skills --skill handoff-prep-continueAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Prepare a handoff AND arm auto-resume in this same CLI - after the user clears the session, the next session loads the handoff automatically. Use when handing off and continuing here, not in another agent. Triggers on "prepc", "prep-continue", "handoff and continue here", "handoff and keep going here".
SKILL.md
1.6 KB, as published. Nobody here has run it
Handoff Prep + Continue (auto-resume)
Everything /handoff-prepare does, plus an auto-resume marker: the next session in this project loads the handoff without the user typing anything.
Only for continuing in this CLI. If the user is taking the handoff to another agent, use /handoff-prepare instead — a leftover marker would hijack their next session here.
Workflow
- Execute the full /handoff-prepare workflow (gather → git state → write
.handoff/{timestamp}-{slug}.md). Every rule there applies — except its closing block; print the one below instead. - Arm auto-resume — write the handoff path (nothing else) to the marker:
printf '%s' '.handoff/{timestamp}-{slug}.md' > .handoff/.pending - Print this closing block last, filled in:
Handoff written: .handoff/{timestamp}-{slug}.md
Auto-resume armed (expires in 15 minutes).
Run /clear now — the next session picks this up automatically.
(Changed your mind / taking it elsewhere? Any agent's handoff-continue reads the same file.)
Notes
- The marker is consumed once by a SessionStart hook and expires after 15 minutes (
HANDOFF_RESUME_TTL_SECONDSto tune). If it expires, /handoff-continue still works manually. - Never claim the context was cleared — only the user can, by running /clear.