Session Continuity
Resume exactly where you left off—days, weeks, or months later—without re-explaining anything.
Built for all AI coding assistants. Optimized for Claude Code.
# One-command install
curl -sL https://raw.githubusercontent.com/rexkirshner/ai-context-system/main/install.sh | bash
# Initialize context
/init-context
# Daily workflow
/review-context # Start of session (30 sec)
/save # Quick update (2-3 min)
/save-full # Comprehensive save (10-15 min)your-project/
├── context/ # ← Externalized AI context
│ ├── claude.md # Entry point (7-line header)
│ ├── CONTEXT.md # Project orientation
│ ├── STATUS.md # Current state + Quick Reference
│ ├── DECISIONS.md # Decision log (WHY)
│ └── SESSIONS.md # History + mental models
├── .claude/commands/ # 14 slash commands
└── scripts/ # Helper utilitiesAI reasoning is invisible. Context is lost between sessions. Decisions lack rationale. Humans can't review AI's thinking.
The solution: Externalize AI context into structured, visible documentation that serves four purposes:
v3.5.0 - Critical Bugs & Performance
Fixes 6 critical bugs (version detection, zsh compatibility, token crashes, subdirectory support) and adds 3 major performance improvements (automatic session archiving, auto-report generation, cross-document consistency checks). Includes comprehensive test suite with 101/101 tests passing across 3 levels. See changelog →