Documentation
README
Session Management
Strategies for persisting progress, managing context, and resuming work across Claude Code sessions.
Overview
Claude Code sessions have finite context windows. This skill teaches you to:
- Save sessions before context runs out
- Resume sessions with full state recovery
- Compact strategically to extend sessions
- Persist progress through git commits and progress files
When to Use
- Context usage approaching 60-80%
- Switching between different tasks (frontend vs backend vs tests)
- Multi-day features that span many sessions
- Complex debugging across multiple files
- Before running
/compacton in-progress work
Save Session
Before ending a session or running /compact, save your state:
/save-session
This is the opening of the README. Read the full README on GitHub.