catchup

Solid

Restore context after /clear by summarizing recent work and project state

AI & Automation 4,608 stars 615 forks Updated 2 days ago CC-BY-SA-4.0

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Context Catchup Restore context after `/clear` - summarize recent work and project state. ## Purpose After clearing context with `/clear`, use this command to quickly rebuild understanding of: - What was recently modified - Current project state - Outstanding TODOs and issues - Where to resume work ## Instructions ### Step 1: Git History Analysis ```bash # Recent commits (last 10) git log --oneline -10 # Files modified in last 5 commits git diff --stat HEAD~5 2>/dev/null || git diff --stat $(git rev-list --max-parents=0 HEAD) # Current branch and status git branch --show-current git status --short ``` ### Step 2: Recent Changes Summary ```bash # What changed today git log --oneline --since="midnight" --author="$(git config user.name)" 2>/dev/null # Uncommitted work git diff --name-only git diff --cached --name-only ``` ### Step 3: TODO/FIXME Scan ```bash # Find outstanding work markers in recently modified files git diff --name-only HEAD~5 2>/dev/null | head -20 | xargs grep -n "TODO\|FIXME\|XXX\|HACK" 2>/dev/null | head -30 ``` ### Step 4: Project State Check ```bash # Check for common state indicators [ -f "package.json" ] && echo "๐Ÿ“ฆ Node project: $(jq -r '.name // "unnamed"' package.json)" [ -f "Cargo.toml" ] && echo "๐Ÿฆ€ Rust project: $(grep '^name' Cargo.toml | head -1)" [ -f "pyproject.toml" ] && echo "๐Ÿ Python project" [ -f "go.mod" ] && echo "๐Ÿน Go project: $(head -1 go.mod | cut -d' ' -f2)" # Active branch purpose (from branch name) BRANCH=$(git br...

Details

Author
FlorianBruniaux
Repository
FlorianBruniaux/claude-code-ultimate-guide
Created
4 months ago
Last Updated
2 days ago
Language
TypeScript
License
CC-BY-SA-4.0

Integrates with

Similar Skills

Semantically similar based on skill content โ€” not just same category

AI & Automation Solid

catchup

Summarize recent changes from git history for context recovery, handoffs, and sprint review

297 Updated today
athola
AI & Automation Listed

catchup

Recovers branch state and recommends the next development action after a context reset. Activates when (1) starting a fresh session on an existing branch with unknown progress, (2) resuming after `/compact` or `/clear` drops in-flight state, or (3) the operator is unsure which phase (investigate / plan / implement / test / review / commit) to run next. Reads `phase-state.yaml`, compact-state snapshots, session logs, and artifact directories to detect the current phase and print an exact command sequence. Triggers on "catchup", "what's next", "resume work", "recover context", "next recommended action", "phase detection".

1 Updated today
aimsise
Code & Development Solid

catchup

Summarize and review what changed while you were away. Use after a weekend, vacation, or flight to check missed PRs, git commits, Linear tickets, and meetings โ€” one prioritized brief, not a firehose.

384 Updated 4 days ago
oliver-kriska
AI & Automation Listed

context-restore

Restore working context saved earlier by /context-save. Loads the most recent saved state (across all branches by default) so you can pick up where you left off โ€” even across Conductor workspace handoffs. Use when asked to "resume", "restore context", "where was I", or "pick up where I left off". Pair with /context-save. Formerly /checkpoint resume โ€” renamed because Claude Code treats /checkpoint as a native rewind alias in current environments. (gstack)

0 Updated today
Tekkiiiii
AI & Automation Listed

context-restore

Restore a previously saved working context from a /context-save checkpoint. Loads the most recent save by default (cross-branch). Supports /context-restore <title-fragment|number>.

1 Updated yesterday
produtoramaxvision