home / skills / robzolkos / zolkos-agent-skills / catchup
This skill helps you catch up on codebase changes by reviewing git diff against master and reading relevant specs.
npx playbooks add skill robzolkos/zolkos-agent-skills --skill catchupReview the files below or copy the command above to add this skill to your agents.
---
name: catchup
description: Catch up on codebase changes by reviewing the diff from master and reading relevant spec files.
disable-model-invocation: true
allowed-tools: Bash(git *), Read, Glob
---
# Catch Up
> Execute the following sections to understand the codebase then summarize your understanding.
## Run
git diff master
## Read
Read any files that are in specs/ that are part of the diff
This skill helps an agent quickly catch up on recent codebase changes by inspecting the diff against master and reading any related spec files. It produces a concise understanding of what changed, why it matters, and which specs were updated. The goal is fast onboarding and focused review for follow-up work.
Run a git diff against the master branch to surface all file-level changes and hunks. Then open and read any files under specs/ that appear in the diff to extract updated requirements, test cases, or interface contracts. Finally, synthesize a short summary that links code changes to spec updates and highlights potential risks or action items.
What exact command should I run?
Run git diff master from your current branch; for staged or committed only diffs add options like --name-only or commit ranges as needed.
Which spec files are relevant?
Any files under specs/ that appear in the diff are relevant—prioritize those that define behavior, interfaces, or acceptance tests.