Resume work from the most recent handoff document. Reads the handoff, verifies it against the current state of the codebase, summarises where things stand, and continues from the next step.
Scanned 8/31/2026
Install to Claude Code
npx -y skills add maaarcooo/agent-skills --skill resume --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Resume?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/maaarcooo-resume)More formats (shields.io, HTML) on the badges page.
---
description: >
Resume work from the most recent handoff document. Reads the handoff,
verifies it against the current state of the codebase, summarises where
things stand, and continues from the next step.
disable-model-invocation: true
argument-hint: "[optional handoff filename]"
allowed-tools: Bash(ls *) Bash(cat *) Bash(find *) Bash(git log *) Bash(git status *) Bash(git diff *) Read
---
# Resume Session
Load a handoff document, verify it is still accurate, and resume where the
previous session left off.
## Available handoffs
!`ls -1t handoffs/*.md 2>/dev/null | head -10`
If no handoffs are listed above, tell the user there are no handoff documents
to resume from and suggest creating one with `/handoff` at the end of a
session.
## Which handoff to load
If arguments are provided ($ARGUMENTS), read the matching file from those
listed above. Accept either the full filename or a partial match. If no match
is found, list the available handoffs and ask the user to specify.
If no arguments are provided, read the most recent handoff (first file listed
above).
## Resume process
After reading the handoff document:
1. **Verify against reality** — Treat the handoff's "Current State" as a
claim, not a fact. The codebase may have changed since it was written
(another session, a merge, manual edits). Check for drift:
- If the project is a git repository (`git status` succeeds), run
`git log --oneline --since="<handoff date>"` and `git status` to see
commits and uncommitted changes made after the handoff.
- If it is not a git repository, compare file modification times against
the handoff file instead:
`find . -newer <selected-handoff-path> -type f -not -path "./handoffs/*" -not -path "./.claude/*" -not -path "./.codex/*" -not -path "./node_modules/*" -not -path "./.git/*"`
- If drift is found, flag it explicitly in the summary and prefer the
actual state of the files over the handoff's description wherever they
disagree.
2. **Review key files** — Read each file listed in "Files to Review on Resume"
to rebuild context from the code.
3. **Check the chain** — If the handoff has a "Previous Session" reference
with live carryover, note it.
4. **Present a brief summary:**
- Where we left off (current state from the handoff)
- Any drift detected between the handoff and the actual codebase
- The immediate next step
- Any blockers, open questions, or warnings
5. **Confirm and proceed** — Confirm understanding in 2-3 sentences, state
the first next step, then proceed with it unless the user redirects. If
significant drift was detected, or the handoff is more than a few days
old, pause and ask the user to confirm the next step is still the right
one before starting work.
**Exceptions — do not proceed automatically:**
- If the first next step is marked **(user)**, it is an action only the
user can perform. Prompt the user to do it (or to skip to the next
Claude-executable step) instead of attempting it.
- If the handoff lists **Possible Directions** instead of Next Steps, the
previous session ended with direction deliberately undecided. Present
the candidate directions as choices and wait for the user to pick one.
Keep the summary concise. The goal is to get productive immediately, not to
restate the entire handoff document.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!