agentsclimarketplace

Continue

Skill orzilca/agent-handoff-skills/dist/claude-plugin/skills/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.

Install
npx -y skills add orzilca/agent-handoff-skills --skill continue

Assembled 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

Use in a fresh session to resume work captured by handoff-prepare. Reads a handoff file and continues from its "Next steps". Takes an optional argument — a file path, or a name to substring-match against handoff filenames; with no argument, loads the newest handoff. Triggers on "handoff-continue", "resume handoff", "continue the handoff".

SKILL.md

2.2 KB, as published. Nobody here has run it

Handoff Continue

Resume prior work captured by /handoff:prepare. You have zero memory of that session — the handoff file is your only context.

This skill only loads and resumes. It does not write handoffs (that is /handoff:prepare).

Resolve which handoff to load

The skill may be invoked with an optional argument ($ARGUMENTS).

  1. Argument that looks like a path (contains /, or exists as a file) → use it directly as the handoff path.
  2. Argument that is a bare name → substring-match it (case-insensitive) against filenames in .handoff/, falling back to the legacy dir .claude/tmp/handoff/ (pre-v1.2 handoffs). If multiple match, pick the newest by modification time. If none match, tell the user, list what is in the dirs, and stop.
  3. No argument → load the newest file in .handoff/ by modification time; if that dir is missing or empty, try .claude/tmp/handoff/. If both are empty, tell the user there's no handoff to resume and stop.

Handoffs from other agents live in the same .handoff/ — resuming work prepared by a different CLI is normal. Find the newest file with a single command, e.g. ls -t .handoff/*.md (then ls -t .claude/tmp/handoff/*.md if needed).

Then

  1. Read the resolved file fully with the file-reading tool.
  2. Confirm which handoff loaded — one line, e.g. Resuming handoff: .handoff/20260701-143022-parkalot-cron.md.
  3. Continue from its next-steps section (older handoffs may title it "Next steps"). Honor the gotchas and open questions it records before acting.

Common mistakes

  • Loading a handoff but ignoring its "Caveats" / "Open questions" → repeating a mistake the previous session already hit.
  • Guessing at missing context instead of reading the file fully.
  • Silently picking one when several names match → say which you chose and why (newest).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.