agentsclimarketplace

Resume work

Skill makieali/claude-code-engineer/skills/resume-work

Run Claude Code as a teammate that owns work end to end. A maintained CLAUDE.md (works as AGENTS.md) plus a plan/execute/review skill pipeline with external verification, adversarial review, and structurally safe parallel execution. Dated changelog, updated when model behaviour changes.

Install
npx -y skills add makieali/claude-code-engineer --skill resume-work

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 13 days oldThe repository was created 13 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 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

Restores working context after a /clear or /compact by reading the most recent session handoff plus current git state, then reports where things stand and what the next step is. Use at the start of a session, after clearing or compacting, when picking up work from a previous day, or when taking over someone else's branch. Trigger: "resume", "pick up where we left off", "what was I doing", "restore context", "continue from the handoff", "catch me up".

SKILL.md

3.4 KB, 753 tokens by cl100k_base, as published. Nobody here has run it

Resume Work — Reload State From Disk

The other half of /handoff. Reads the written record rather than a summary of a summary.

Step 1: Find the handoff

~/.claude/skills/resume-work/scripts/find-handoff.sh            # newest for the current branch
~/.claude/skills/resume-work/scripts/find-handoff.sh --all      # every branch, newest first

Then read the file it prints. Read it whole — the Ruled out section is usually near the bottom and it is the most valuable part.

No handoff found? Say so plainly and fall back to git: git log --oneline -15, git status, git diff --stat. A reconstruction from history is worth less than a handoff, so say which one you are working from.

Step 2: Check the record against reality

The handoff describes the world when it was written. Verify before trusting it:

git rev-parse --abbrev-ref HEAD          # same branch?
git status --short                       # same files dirty?
git log --oneline -5                     # commits since?

Reconcile out loud when they disagree — someone else may have pushed, or you may have committed after writing it. The repo is the truth; the handoff is the intent. Where they conflict, say so rather than silently trusting either.

Step 3: Report, then stop

RESUMED — <title>
  Handoff:  <path>  (<age>)
  Branch:   <branch>   <n> commits since the handoff
  Dirty:    <n> files

  Stood at:  <one line>
  Ruled out: <one line — so it is in context before any suggestion>
  Blockers:  <or "none">

  → Next: <the next step, verbatim from the handoff>

Then stop and wait. Do not start the next step. Resuming is loading state, not resuming execution — the user may have changed their mind since writing it, and that is exactly the moment to find out.

Rules

  • Surface Ruled out before proposing anything. Its whole purpose is stopping a fresh session from re-walking dead ends. Reading it after you have already suggested an approach is too late.
  • Report the handoff's age. One from three weeks ago on a branch with twenty new commits is archaeology, not state. Say so.
  • Never mark a handoff done or delete it. They are append-only. /handoff writes the next one.
  • Don't re-read every file it mentions. It names paths so you can go to them when the work needs it, not so you can reload the whole session's reads into a clean window. That would undo the reset you just paid for.

Related

  • /handoff — writes the file this reads
  • /driver — if the work is a /architect plan, read plans/{slug}/state/ too; the handoff covers session narrative, not plan state

<sub>Script paths above assume a user-level install (~/.claude/skills/). Installed as a plugin or per-project, the scripts still sit beside this file — swap the prefix for ${CLAUDE_PLUGIN_ROOT}/skills/resume-work or .claude/skills/resume-work respectively.</sub>

What ships with it: 1 file

2.1 KB alongside SKILL.md, 1 of them executable

scripts/

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.