skills/qsd-resume/SKILL.md
Rehydrate operational context from the latest qsd checkpoint. Reads `.planning/checkpoints/LATEST.json`, prints the checkpoint body, and directs Claude to re-read the Resume Hints files first.
npx skillsauth add thecomputer07/qsd qsd-resumeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Restores session context after /clear (or a fresh CC session) by loading the
most recent checkpoint written by /qsd-save-checkpoint.
Verify the pointer file exists:
MSYS_NO_PATHCONV=1 test -f .planning/checkpoints/LATEST.json
If missing, emit:
No checkpoint found. Run
/qsd-save-checkpoint <label>first to create one.
Extract the latest checkpoint path from LATEST.json:
MSYS_NO_PATHCONV=1 CKPT=$(node -e "process.stdout.write(JSON.parse(require('fs').readFileSync('.planning/checkpoints/LATEST.json','utf8')).path)")
Load and print the checkpoint body (validates schema_version; refuses
unknown/newer schemas — P17):
MSYS_NO_PATHCONV=1 node "$HOME/.claude/qsd/bin/qsd-tools.cjs" checkpoint load --path "$CKPT"
Read every file listed under the checkpoint's Resume Hints section
using the Read tool. These are the minimum files required to reconstruct
the operational context (STATE.md, ROADMAP.md, active PLAN.md at minimum).
Confirm the phase/plan position aloud, then continue from the Next Action recorded in the checkpoint.
schema_version newer than qsd CLI supports → load exits non-zero with a
clear message. Upgrade qsd before retrying; do not hand-edit the checkpoint
to lower the version.LATEST.json is valid but points to a missing file → user must pick another
checkpoint from .planning/checkpoints/ manually.MSYS_NO_PATHCONV=1 everywhere — Windows Git-Bash safety (WIN-05)..planning/; it is read-only rehydration.tools
Manage parallel workstreams — list, create, switch, status, progress, complete, and resume
testing
Validate built features through conversational UAT
testing
Retroactively audit and fill Nyquist validation gaps for a completed phase
testing
Update qsd to latest version with changelog display