Catch-up
Analyze the current branch's changes to help resume work:
- •Check if
docs/plans/exists and read any implementation plans related to current work - •Find the default branch (try: main, master, development, develop in that order)
- •Get current branch name
- •Show summary:
git diff --stat <default-branch>...HEAD - •Show actual changes:
git diff <default-branch>...HEAD - •Provide 3-4 line summary combining:
- •What the plan says (if plan exists)
- •What's been implemented based on diff
- •What appears to be left
Keep summary concise - just key status. Don't elaborate unless asked.