Documentation
README
Context Catchup
Restore context after /clear - summarize recent work and project state.
Purpose
After clearing context with /clear, use this command to quickly rebuild understanding of:
- What was recently modified
- Current project state
- Outstanding TODOs and issues
- Where to resume work
Instructions
Step 1: Git History Analysis
# Recent commits (last 10)
git log --oneline -10
# Files modified in last 5 commits
git diff --stat HEAD~5 2>/dev/null || git diff --stat $(git rev-list --max-parents=0 HEAD)
# Current branch and status
git branch --show-current
git status --short
Step 2: Recent Changes Summary
This is the opening of the README. Read the full README on GitHub.