A git repository catchup using the imbue catchup methodology.
Reviews git repository changes using the imbue catchup methodology to summarize modifications and identify follow-ups.
/plugin marketplace add athola/claude-night-market/plugin install pensive@claude-night-marketTo review changes, load the required skills in order:
Skill(sanctum:git-workspace-review) to capture the Git repository context (branch, status, diffs).Skill(imbue:catchup) and work through its TodoWrite items (context confirmed, delta captured, insights extracted, follow-ups recorded).The imbue catchup methodology applies to Git contexts as follows:
Context Confirmation:
pwd confirms the repository location.git status -sb shows the branch and working tree state.git rev-parse --abbrev-ref --symbolic-full-name @{u} identifies the upstream branch.Delta Capture:
git diff --stat ${BASE}...HEAD for change metrics.git diff --name-only ${BASE}...HEAD for a file list.Insight Extraction:
rg -n <pattern> <file> for targeted searches.Follow-up Recording:
If skills cannot be loaded, run these commands manually:
pwd
git status -sb
git diff --stat main...HEAD # Or an appropriate base
git diff --name-only main...HEAD
For each important file:
Close with an overall summary and any follow-ups.