dotfiles/agents/skills/git-catchup/SKILL.md
Understand current work context from recent changes. Use at session start or when resuming work.
npx skillsauth add szymonkaliski/home-configuration git-catchupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Review recent git activity and build a picture of what's in progress.
!git branch -vv --no-color 2>/dev/null | head -20
!git log --oneline --graph -15
!git status --short
!git diff $ARGUMENTS
!git diff --cached
!git stash list 2>/dev/null | head -5
Synthesize a concise briefing:
If the changes touch specific subsystems, read key files to understand the current state rather than guessing. Keep the summary short — the goal is orientation, not a full code review.
development
Test-driven bug fixing and feature development. Use when fixing bugs or building features — works with test suites or ad-hoc repro scripts. Enforces red-green-refactor vertical slices.
tools
Open the current plan file in nvim for user review
testing
Review uncommitted changes for issues, missed items, and improvements. Use when reviewing before commit or when user asks to check their work.
tools
Format, lint, test, and commit changes. Detects repo tooling automatically.