From productivity
Summarize what changed so you can re-enter work fast. Given a branch, PR, commit range, file, or "since yesterday", it reads the diff/commits and produces a tight summary: what changed, why, risk areas, and what's left. Great for resuming after a break, reviewing what a teammate pushed, or before picking up a PR. Use when the user asks what changed or wants to get back up to speed. Triggers: "catch me up", "catchup", "what changed", "what did I miss", "summarize this branch/PR/diff", "since I last looked".
How this skill is triggered — by the user, by Claude, or both
Slash command
/productivity:catchupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a concise, accurate summary of what changed in a scope the user gives
Produce a concise, accurate summary of what changed in a scope the user gives you, so they can resume or review without reading every line.
Figure out what to summarize from the user's request:
gh pr diff / gh pr viewabc..def) or "since <date>" → git log + git diffUse git log --stat, git diff, and gh as needed. Read enough of the diff to
understand intent, not just file names. Don't guess.
Output to chat (no file unless asked):
.plan docs).If something is unclear from the diff alone, say so rather than inventing
rationale. Cite file:line or commit SHAs so the user can jump in.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub nitintf/ai-skills --plugin productivity