resume-worklisted
Install: claude install-skill makieali/claude-code-engineer
# 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
```bash
~/.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:
```bash
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 sug