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/
├── CLAUDE.md # ← Auto-loaded by Claude Code
├── context/ # Externalized AI context
│ ├── CONTEXT.md # Project orientation
│ ├── STATUS.md # Current state + Quick Reference
│ ├── DECISIONS.md # Decision log (WHY)
│ └── SESSIONS.md # History + mental models
├── .claude/
│ ├── commands/ # 22 slash commands
│ ├── agents/ # 12 specialist agents (v5.0)
│ ├── schemas/ # 7 JSON validation schemas
│ └── hooks/ # Session automation
└── 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:
v5.0.2 - Agent-Based Code Review Architecture
Major release introducing self-declaring specialist agents with formal contracts:
v4.x introduced modular code review, documentation health checking, and Quick Reference auto-generation.