AI SummaryCatchup Command intelligently reviews recent git changes—either uncommitted work or the last commit—to help Claude quickly understand what's changed after a session restart. Developers benefit by avoiding manual git command repetition and getting instant context recovery.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Catchup Command" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (13 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/catchup.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/code-review.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/code-review.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/commit.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/commit.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/apply.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/apply.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/archive.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/archive.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/bulk-archive.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/bulk-archive.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/continue.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/continue.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/explore.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/explore.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/ff.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/ff.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/new.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/new.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/onboard.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/onboard.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/sync.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/sync.md" && mkdir -p .claude/skills/commands/opsx && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/opsx/verify.md "https://raw.githubusercontent.com/goern/forgejo-mcp/main/.claude/commands/opsx/verify.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Review last commit and branch changes
Usage
Run this command after: • Starting a new session • Using /clear to reset context • Switching to a different branch with existing work
Examples
• /catchup - Smart review: working changes if present, otherwise last commit • /catchup HEAD - Review last commit only • /catchup HEAD~1 - Review previous commit only • /catchup abc123 - Review specific commit by hash only
Catchup Command
Smart review of recent changes: reviews working tree changes if present, otherwise reviews the last commit. Can also review specific commits when provided.
Purpose
This command helps bring Claude up to speed after a session restart (/clear) by: • Without arguments: • If working tree has changes → Review current working changes (modified, staged, and untracked files) • If working tree is clean → Review the last commit (HEAD) • With commit-ref: Analyze the specified commit
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster