ワンクリックで
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: