Loads the most recent or specified session file from ~/.claude/session-data/, outputs structured briefing on project, status, blockers, and next steps, then waits for instructions.
From atum-systemnpx claudepluginhub arnwaldn/atum-system --plugin atum-system/resume-sessionLoads the most recent or specified session file from ~/.claude/session-data/, reads it fully, and outputs a structured briefing of project summary, current state, failed approaches, blockers, and next steps.
/resume-sessionLoads the most recent or specified session file from ~/.claude/session-data/, reads it fully, and outputs a structured briefing of project summary, current state, failed approaches, blockers, and next steps.
/resume-sessionLoads the most recent or specified session file from ~/.claude/session-data/, outputs structured briefing on project, status, blockers, and next steps, then waits for instructions.
/resume-sessionResumes a previously saved context session by loading it from the docs/context-sessions/ directory into the current Claude Code chat.
/resume-sessionLoad the most recent session file from ~/.claude/sessions/ and resume work with full context from where the last session ended.
/resume-sessionLoads the most recent or specified session file from ~/.claude/session-data/, reads it fully, and outputs a structured briefing of project summary, current state, failed approaches, blockers, and next steps.
Load the last saved session state and orient fully before doing any work.
This command is the counterpart to /save-session.
/resume-session # loads most recent file in ~/.claude/session-data/
/resume-session 2024-01-15 # loads most recent session for that date
/resume-session ~/.claude/session-data/2024-01-15-abc123de-session.tmp # loads a current short-id session file
/resume-session ~/.claude/sessions/2024-01-15-session.tmp # loads a specific legacy-format file
If no argument provided:
~/.claude/session-data/*-session.tmp fileNo session files found in ~/.claude/session-data/
Run /save-session at the end of a session to create one.
Then stop.If an argument is provided:
YYYY-MM-DD), search ~/.claude/session-data/ first, then the legacy
~/.claude/sessions/, for files matching YYYY-MM-DD-session.tmp (legacy format) or
YYYY-MM-DD-<shortid>-session.tmp (current format)
and load the most recently modified variant for that dateRead the complete file. Do not summarize yet.
Respond with a structured briefing in this exact format:
SESSION LOADED: [actual resolved path to the file]
════════════════════════════════════════════════
PROJECT: [project name / topic from file]
WHAT WE'RE BUILDING:
[2-3 sentence summary in your own words]
CURRENT STATE:
✅ Working: [count] items confirmed
🔄 In Progress: [list files that are in progress]
🗒️ Not Started: [list planned but untouched]
WHAT NOT TO RETRY:
[list every failed approach with its reason — this is critical]
OPEN QUESTIONS / BLOCKERS:
[list any blockers or unanswered questions]
NEXT STEP:
[exact next step if defined in the file]
[if not defined: "No next step defined — recommend reviewing 'What Has NOT Been Tried Yet' together before starting"]
════════════════════════════════════════════════
Ready to continue. What would you like to do?
Do NOT start working automatically. Do NOT touch any files. Wait for the user to say what to do next.
If the next step is clearly defined in the session file and the user says "continue" or "yes" or similar — proceed with that exact next step.
If no next step is defined — ask the user where to start, and optionally suggest an approach from the "What Has NOT Been Tried Yet" section.
Multiple sessions for the same date (2024-01-15-session.tmp, 2024-01-15-abc123de-session.tmp):
Load the most recently modified matching file for that date, regardless of whether it uses the legacy no-id format or the current short-id format.
Session file references files that no longer exist:
Note this during the briefing — "⚠️ path/to/file.ts referenced in session but not found on disk."
Session file is from more than 7 days ago: Note the gap — "⚠️ This session is from N days ago (threshold: 7 days). Things may have changed." — then proceed normally.
User provides a file path directly (e.g., forwarded from a teammate): Read it and follow the same briefing process — the format is the same regardless of source.
Session file is empty or malformed: Report: "Session file found but appears empty or unreadable. You may need to create a new one with /save-session."
SESSION LOADED: /Users/you/.claude/session-data/2024-01-15-abc123de-session.tmp
════════════════════════════════════════════════
PROJECT: my-app — JWT Authentication
WHAT WE'RE BUILDING:
User authentication with JWT tokens stored in httpOnly cookies.
Register and login endpoints are partially done. Route protection
via middleware hasn't been started yet.
CURRENT STATE:
✅ Working: 3 items (register endpoint, JWT generation, password hashing)
🔄 In Progress: app/api/auth/login/route.ts (token works, cookie not set yet)
🗒️ Not Started: middleware.ts, app/login/page.tsx
WHAT NOT TO RETRY:
❌ Next-Auth — conflicts with custom Prisma adapter, threw adapter error on every request
❌ localStorage for JWT — causes SSR hydration mismatch, incompatible with Next.js
OPEN QUESTIONS / BLOCKERS:
- Does cookies().set() work inside a Route Handler or only Server Actions?
NEXT STEP:
In app/api/auth/login/route.ts — set the JWT as an httpOnly cookie using
cookies().set('token', jwt, { httpOnly: true, secure: true, sameSite: 'strict' })
then test with Postman for a Set-Cookie header in the response.
════════════════════════════════════════════════
Ready to continue. What would you like to do?
/save-session again at the end of the new session to create a new dated file