Read all uncommitted changes back into context after /clear
/plugin marketplace add cameronsjo/claude-marketplace/plugin install core@cameronsjo# Catchup - Reload Work in Progress **Use case**: After running `/clear`, reload your current work-in-progress back into context. **Common pattern**: `/clear` → `/catchup` → continue working ## Task 1: Get Uncommitted Changes Show the user what will be loaded. ## Task 2: Read Changed Files **For each modified or new file** from git status: 1. **Skip binary files** - Check file extension (.png, .jpg, .pdf, .zip, etc.) 2. **Skip large files** - If file > 10k lines, ask user if they want to load it 3. **Read the file** - Use Read tool to load content **Implementation**: For each fi...