원클릭으로
session-save
Save the current session state (decisions, modified files, current status, and next steps) to a handoff file for later resume.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Save the current session state (decisions, modified files, current status, and next steps) to a handoff file for later resume.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Clean up stale git worktrees with merged branch detection and disk usage report
Safely remove a git worktree with branch cleanup and safety checks
Create isolated git worktrees for feature development without switching branches
Check status of background verification tasks running in a git worktree
Perform a comprehensive code review of a pull request
Display native sandbox status, configuration, and recent violations
| name | session-save |
| description | Save the current session state (decisions, modified files, current status, and next steps) to a handoff file for later resume. |
| effort | low |
| disable-model-invocation | true |
Capture the current session into a structured handoff file so you (or another instance) can resume with full context. Creates a timestamped Markdown file in .claude/sessions/.
Produce a handoff document with the following structure:
[One paragraph: the goal, the approach, where things stand right now]
[List every file that was created, edited, or deleted, with the nature of the change]
path/to/file.ts - [what changed and why]
path/to/other.ts - [what changed and why]
[Architectural choices, tradeoffs accepted, approaches rejected and why]
[Where things are right now: what's working, what's broken, what's in-progress]
[The exact next actions to take to continue, specific enough that a fresh context can pick up without re-reading everything]
path/to/file.ts - [what to do][Files that must be read to resume with full understanding, keep this list short]
path/to/key-file.ts: [why it matters]CLAUDE.md: project rules[Anything unresolved that needs a decision or external input before proceeding]
Save the handoff to .claude/sessions/handoff-[YYYY-MM-DD-HHMM].md. Then output the file path so the user knows where to find it.
To resume from a handoff:
/session-resume .claude/sessions/handoff-YYYY-MM-DD-HHMM.md
Or manually: read the handoff file, then read the files listed in "Context to Reload" before continuing.
/session-save
Claude captures:
src/middleware/auth.ts, src/middleware/jwt.ts)refreshToken() in src/services/auth.service.ts, then update testsWhen context hits 70%, run /session-save before /compact to preserve decision context that compaction might lose.
See also: