From qe-framework
Restores saved context after Claude Code session compaction or break. Auto-loads previous task state, decisions, and pending items from .qe/context/ for seamless resumption.
How this skill is triggered — by the user, by Claude, or both
Slash command
/qe-framework:QresumeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A skill that restores context saved under `.qe/context/sessions/{sid}/` after compaction.
A skill that restores context saved under .qe/context/sessions/{sid}/ after compaction.
Loads the previous session's task state, decisions, and pending items to resume work seamlessly.
Snapshots are partitioned by Claude session id so each terminal sees its own context, not the latest sibling's. The 8-char sid is auto-derived by the SessionStart hook and surfaced as [Session] sid:XXXXXXXX in additionalContext — read it from there. There is no manual naming.
Integrated with the pre-check in PRINCIPLES.md:
.qe/context/sessions/{sid}/snapshot.md exists for the active sid/Qresume — restore the active sid's snapshot (default; what you want 95% of the time)/Qresume --list — list all session buckets newest-first (use when picking up another terminal's work). The list is built by listSessionBuckets() in hooks/scripts/lib/session-resolver.mjs. Pick a sid, then /Qresume --from {sid}/Qresume --from {sid} — restore a specific session bucket by its 8-char sid (or _legacy / _unknown)Load files from .qe/context/sessions/{sid}/:
snapshot.md — last task statedecisions.md — accumulated decisionsSNAPSHOT_SUMMARY.md — semantic summarycompact-trigger.json — pre-compact state (if present)Propose next actions based on restored context:
/Qrun-task {UUID}/Qgenerate-specWhen restoring context, also read .qe/analysis/ files to understand the latest project state.
This allows starting work immediately without re-scanning the project with Glob/Grep, saving tokens.
.qe/context/sessions/{sid}/ context files for the active sid--list and --from {sid} for cross-terminal pickup--fromnpx claudepluginhub inho-team/qe-framework --plugin qe-frameworkCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.