Purpose: Session boundary management and context handoffs This plugin handles transitions between Claude Code sessions, managing context preservation and continuation. Beyond just session continuity, transitions create an automatic project history: - Audit trail: Every session's decisions, changes, and reasoning are captured - Recovery: Pick up work days or weeks later with full context - Accounta
Add this skill
npx mdskills install applied-artificial-intelligence/transitionWell-documented plugin for session continuity with clear commands and strong value proposition
1# Transition Plugin23**Purpose**: Session boundary management and context handoffs45This plugin handles transitions between Claude Code sessions, managing context preservation and continuation.67## The Value of Transitions89Beyond just session continuity, transitions create an **automatic project history**:1011- **Audit trail**: Every session's decisions, changes, and reasoning are captured12- **Recovery**: Pick up work days or weeks later with full context13- **Accountability**: Understand *why* decisions were made, not just *what* was changed14- **Learning**: Review past approaches when solving similar problems1516Over time, `.claude/transitions/` becomes more valuable than commit history—it captures the *thinking* behind changes, not just the changes themselves.1718---1920## Commands (2)2122### `/transition:handoff`2324**Purpose**: Create session handoff document with context analysis2526Creates a comprehensive handoff document capturing:27- Current work state and progress28- Key decisions made during session29- Token usage across all components30- Next steps and pending tasks31- Files modified and their changes3233**Usage**:34```bash35/transition:handoff36```3738**Output**: Time-stamped handoff document in `.claude/transitions/YYYY-MM-DD/HHMMSS.md`3940**When to use**:41- Context usage >80% (quality degrading)42- End of work session (preserve state)43- Before switching tasks44- Regular checkpoints during long work4546### `/transition:continue`4748**Purpose**: Resume work from previous session handoff4950Loads the most recent handoff document and provides:51- Summary of previous session52- Current state recap53- Pending tasks54- Recommended next actions5556**Usage**:57```bash58/transition:continue59```6061**When to use**:62- Start of new session63- After `/clear` to free conversation tokens64- Switching back to previous work65- Need recap of where you left off6667---6869## Why Separate from Memory Plugin?7071**Session Transitions** (this plugin):72- Short-lived, time-bound documents73- Context window management74- Session-to-session continuity75- Tactical state preservation7677**Persistent Memory** (memory plugin):78- Long-lived knowledge base79- Project understanding80- Accumulated insights81- Strategic knowledge capture8283**Clear separation**: Transitions handle session boundaries, Memory handles knowledge persistence.8485---8687## Workflow Integration8889**Typical flow**:90911. Work on task until context >80%922. `/transition:handoff` - Create handoff933. `/clear` - Free conversation tokens944. `/transition:continue` - Resume with recap955. Continue work with fresh context9697**Key benefit**: Maintain work continuity across sessions without quality degradation.9899---100101## File Organization102103```104.claude/transitions/105├── 2025-11-20/106│ ├── 171530.md # Handoff at 5:15:30 PM107│ ├── 194215.md # Handoff at 7:42:15 PM108│ └── ...109├── 2025-11-21/110│ └── ...111```112113**Format**: `YYYY-MM-DD/HHMMSS.md` (date-based directories, time-stamped files)114115---116117## Related118119- **Memory plugin**: Persistent knowledge management120- **Workflow plugin**: Task and work unit management121- **System commands**: `/context` for token usage analysis122123---124125**Version**: 1.0.0126**License**: MIT127
Full transparency — inspect the skill content before installing.