Coding & Development
Branch Catchup Prompt
AI prompt to read all modified files in the current git branch and summarize completed vs in-progress changes
GitProgrammingClaude CodeCursorOpencodeCodex
Get caught up on what's changed in this branch. 1. Run `git diff --name-only main...HEAD` to find all files modified in this branch 2. Run `git diff --name-only` to find any uncommitted changes 3. Read the key modified files (prioritize: services, routers, schema, components) 4. Summarize: - What features/fixes are being worked on - What's done vs in-progress - Any obvious issues or incomplete work Keep the summary concise - focus on what I need to know to continue working.