From imbue
Summarizes recent git changes from a baseline, extracts key insights and decisions, and identifies pending follow-ups. Supports git refs or --since dates.
How this command is triggered — by the user, by Claude, or both
Slash command
/imbue:catchupThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Catchup on Changes Rapidly acquires context on recent changes using imbue's catchup methodology: confirm context, capture delta, extract insights, and record follow-ups. ## Usage ## What It Does 1. **Confirms Context**: Establishes current state and baseline for comparison 2. **Captures Delta**: Enumerates changes efficiently without deep-diving 3. **Extracts Insights**: Summarizes what changed and why it matters 4. **Records Follow-ups**: Identifies actionable next steps ## Workflow ## Examples ## Integration Works with: - `diff-analysis` - For semantic categorization - `pr...
Rapidly acquires context on recent changes using imbue's catchup methodology: confirm context, capture delta, extract insights, and record follow-ups.
# Catchup from last known state
/catchup
# Catchup from specific baseline
/catchup HEAD~10
# Catchup from date
/catchup --since "2 days ago"
Baseline → Current → Delta → Insights → Follow-ups
↓ ↓ ↓ ↓ ↓
Known Target Changes Meaning Actions
state state list summary needed
/catchup
# Output:
# Catchup Summary
# ===============
# Scope: feature/payments branch
# Baseline: main (merge-base)
# Current: HEAD (15 commits ahead)
#
# Key Changes:
# - Payment processing overhaul (12 files)
# - New Stripe integration (3 files)
# - Test coverage additions (8 files)
#
# Follow-ups:
# - [ ] Review Stripe API key handling
# - [ ] Verify webhook endpoint security
/catchup --since "1 week ago"
# Week-based catchup with date filtering
Works with:
diff-analysis - For semantic categorizationproof-of-work - For reproducible context## Summary
[2-3 sentence theme + risk overview]
## Key Changes
- [Item 1]: [what/why/implication]
- [Item 2]: [what/why/implication]
## Follow-ups
- [ ] [Concrete action with owner if known]
## Blockers/Questions
- [Item requiring resolution]
npx claudepluginhub athola/claude-night-market --plugin imbue/git-catchupSummarizes recent git history since a baseline (e.g., main), analyzing what changed, why, implications per file, and follow-ups to watch.
/studyStudies changes in the current branch to deeply understand the project's ongoing work and prepare for upcoming tasks.
/primePrimes fresh session context with git snapshot (branch, status, commits, stashes) and task-relevant repo analysis via subagents. Supports [task hint], --quick, --verbose.
/wrap-upReviews git changes and session activity, compiles structured summary of goals, accomplishments, deferred tasks, learnings, blockers, and next steps; updates CLAUDE.md and commits changes.
/load-branch-changesLoads current branch changes including diff, commits, and files into session context for analysis.
/catchupRestores project context after /clear by reading core docs like CLAUDE.md and memory-bank files, git status/logs/diffs, and sessions; outputs markdown summary of status, recent work, tasks, and next steps. Also supports deep/quick modes.