name: resumework
description: Resume work from a specific handoff thread by id. Loads that thread's saved state (summary, next steps, git, files touched, learnings) and drops you straight back into the work. Use when you have a thread id in hand — e.g. from a previous /handoff report — and want to continue that exact session in a fresh one, rather than picking the most recent handoff (/startwork) or doing a post-mortem (/recover-session).
allowed-tools: Read, Grep, Glob, Bash(git:), Bash(qmd:), Bash(ls:), Bash(find:), Bash(jq:), Bash(cat:), Bash(core/scripts/hq-session.sh:), Bash(bash core/scripts/resume-thread-lock.sh:), Bash, AskUserQuestion
Resume Work From a Thread
Targeted resume. Unlike /startwork (which peeks at handoff.json for the latest session), this skill takes an explicit thread id and rehydrates that exact thread so you can continue it in a fresh session.
Thread id (required): $ARGUMENTS
When to Use
- A
/handoffreport gave you a thread id (T-YYYYMMDD-HHMMSS-slug) and you want to pick that work back up later. - You want to resume a session that is not the most recent handoff (so
/startwork's "Resume last session" would load the wrong one). - You're continuing real work — not auditing a crashed session. For a post-mortem of a wedged session, use
/recover-sessioninstead.
Process
1. Resolve the thread id
The argument is a thread id, with or without the .json suffix, and may be a partial slug. Resolve it to exactly one thread file under workspace/threads/ (also check workspace/threads/archive/** for older threads).
arg="$ARGUMENTS" # e.g. T-20260625-084414-files-acl-grant-timeout
id="${arg%.json}"; id="${id##*/}" # strip .json and any leading path
id="$(echo "$id" | tr -d '[:space:]')" # trim stray whitespace
# Exact match first, then prefix/substring across active + archived threads.
matches=$(ls "workspace/threads/${id}.json" 2>/dev/null)
if [ -z "$matches" ]; then
matches=$(find workspace/threads \
-path 'workspace/threads/resume-locks' -prune -o \
-name '*.json' ! -name '*.changeset.json' -path "*${id}*" -print 2>/dev/null)
fi
printf '%s\n' "$matches"
- No arg / empty — STOP. This skill requires a thread id. Tell the user the form (
/resumework <thread-id>) and offer/startwork(resume the latest handoff) as the no-id alternative. List the few most recent thread ids to choose from:ls -t workspace/threads/T-*.json 2>/dev/null | grep -v changeset | head -5. - Exactly one match — proceed with that file.
- Multiple matches — present them via AskUserQuestion (id + title, newest first) and wait for the user to pick one. Do not guess.
- No match — report it plainly and show the 5 most recent thread ids so the user can correct the id.
Never load a *.changeset.json as the thread — it's the changeset sidecar, not the thread.
2. Check and record the resume lock
After resolving exactly one thread and before reading its handoff details, inspect its durable resume lock. The lock lives at workspace/threads/resume-locks/{thread_id}.lock/, separate from the immutable thread JSON: thread archival can move T-*.json files without losing the marker.
thread_file="$matches" # exactly one match from Step 1
thread_id="$(basename "$thread_file" .json)"
bash core/scripts/hq-session.sh current
bash core/scripts/resume-thread-lock.sh inspect "$thread_id"
Keep the first command's output as session_id (use unknown-session if it is empty). Keep the second command's one-JSON-object output as lock_json, and read its .status with jq.
-
unlocked— acquire the marker, then continue:bash core/scripts/resume-thread-lock.sh acquire "$thread_id" --session-id "$session_id"If this race-loses with exit
3, inspect again and follow thelocked/stalepath below. Do not proceed without the resulting confirmation. -
lockedorstale— use AskUserQuestion and wait. Ask exactly thepromptsupplied bylock_json; it includes the prior session and timestamp. The question must explicitly ask: “This thread was already resumed by {session} at {when}. Re-resume anyway?” Offer only:- Re-resume anyway — refresh the marker for this session and continue.
- Cancel resume — stop; do not read or act on the thread.
Only after the user chooses Re-resume anyway, keep
lock_json.lock_generationaslock_generation, then run:bash core/scripts/resume-thread-lock.sh acquire "$thread_id" --replace --expected-generation "$lock_generation" --session-id "$session_id"If that command exits
4, the marker changed while the question was open. Re-inspect it and ask the user again using the newprompt; never reuse the earlier confirmation to replace a newer lock.Never silently proceed or silently replace a marker. A stale marker (expired after the configured
HQ_RESUME_LOCK_STALE_SECONDS, 24 hours by default, or malformed) is still evidence of an earlier resume, so it follows this same explicit confirmation path. Do not delete stale lock state; the confirmed--replacerefreshes it.
3. Load the thread
Read the resolved thread file (it's small — one Read). Extract:
conversation_summary— what the prior session accomplishednext_steps[]— the ordered todo handed offgit.branch,git.current_commit,git.dirtyfiles_touched[]— the changeset boundarylearnings[]— operational notes (do not re-/learnthem; they're already applied)metadata.title,metadata.tagschangeset_path— if present, note it (don't read it unless the user needs the full diff scope)
If the thread references a company (via tags, cwd, or a companies/{co}/... path in files_touched), note the slug for Step 4.
4. Verify current git state vs the thread
The thread records the git state at handoff. Confirm where the repo is now so the user knows if anything drifted:
# Anchor to the repo the thread worked in when it's a nested repo;
# otherwise use HQ root context.
git -C {repoPath or HQ root} branch --show-current
git -C {repoPath or HQ root} log --oneline -3
git -C {repoPath or HQ root} status --short
Flag plainly if the current branch differs from git.branch, or if git.current_commit is no longer at HEAD (someone committed/merged since the handoff). If git.dirty was true at handoff but the tree is now clean, the in-flight edits may have been committed or lost — call that out.
5. Persist session metadata (if a company resolved)
bash core/scripts/hq-session.sh set company_slug "{co}" # only if resolved
bash core/scripts/hq-session.sh set mode "Resume"
Skip the company_slug line if no company is resolvable from the thread — same fail-closed behavior as /startwork.
6. Present the resume block + next steps
Resuming thread
---------------
Thread: {thread_id}
Title: {metadata.title}
Last session: {conversation_summary}
Git (at handoff): {git.branch} @ {git.current_commit}{" (dirty)" if dirty}
Git (now): {current branch} @ {current short-hash}{drift note if any}
Files touched last session: {count} ({first few paths})
Next steps:
1. {next_steps[0].step}
2. {next_steps[1].step}
...
Then offer, via AskUserQuestion (one question, wait):
- Start on next step 1 — begin the first handed-off next step.
- Pick a different next step — let the user choose which step to start.
- Something else — free-text; treat as a fresh task in this resumed context.
After the pick, proceed directly into the work.
Rules
- A thread id is required. Naked
/resumeworkdoes not fall through to latest-handoff resume — that's/startwork's job. Point the user there instead. - Read at most: the one resolved thread file + git state + (optionally) one journal file if the thread names a
project_dir. Do not read INDEX.md, agents files, or company knowledge — same context diet as/startwork. - Never re-run
/learnon the thread'slearnings[]; they were applied at handoff time. They're shown for context only. - Resolve to exactly one thread before loading. On ambiguity, ask — never guess which thread the user meant.
- Once a thread is exactly resolved, always inspect and acquire its resume lock before loading it. If it is already locked or stale, always ask the user whether to re-resume; never silently proceed or hard-block.
- Keep the marker under
workspace/threads/resume-locks/; never add resume state to the handoff JSON or changeset sidecar, because they are immutable handoff records and can be archived. - Always verify the live git branch with
git branch --show-current; never trust the thread's recorded branch as current. - This skill executes directly — no plan-mode detour.
See also
/startwork— resume the latest handoff (readshandoff.json) or pick a fresh company/project/repo./handoff— writes the thread this skill resumes; its report prints the thread id to pass here./recover-session— post-mortem triage of a crashed/wedged session (not normal resume).
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.