catchup

Track Git repository changes and summarize status, commits, and diffs.

1|Updated Nov 12, 2025
One-click install
npx skills add https://github.com/TakSung/python-katas --skill catchup-taksung
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: catchup
Source: https://github.com/TakSung/python-katas/tree/main/platforms/linux/.claude/skills/catchup
Command: npx skills add https://github.com/TakSung/python-katas --skill catchup-taksung

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

이 스킬은 현재 작업 중인 코드의 변경사항을 빠르게 파악하여 컨텍스트를 제공합니다. 미커밋/커밋 히스토리, 최근 변경 사항을 한눈에 확인하고 비교할 수 있습니다.

Core Features & Use Cases

  • 미커밋 변경사항: ./scripts/git-helper.sh status로 Staged + Unstaged 변경사항 확인
  • 직전 커밋: ./scripts/git-helper.sh last로 가장 최근 커밋 상세 정보 확인
  • 최근 커밋 목록: ./scripts/git-helper.sh log [n]로 최근 n개 커밋 목록 보기
  • 커밋 범위 비교: ./scripts/git-helper.sh diff <start> <end>로 두 커밋 사이 변경사항 비교

Quick Start

현재 변경사항과 최근 히스토리를 빠르게 보려면 다음 명령을 실행합니다:

./scripts/git-helper.sh status
./scripts/git-helper.sh last

Frequently Asked Questions about catchup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I quickly see unstaged and staged changes in my Git repository?

Use `./scripts/git-helper.sh status` to view all staged and unstaged changes at once. This command displays a concise summary of modifications in your working directory without requiring a full git diff review.

What's the fastest way to review the last commit I made?

Run `./scripts/git-helper.sh last` to display detailed information about your most recent commit, including changes, author, and message. This gives instant context on what was just committed.

Can I view recent commit history and compare changes between commits?

Yes. Use `./scripts/git-helper.sh log [n]` to list recent commits and `./scripts/git-helper.sh diff <start> <end>` to compare changes between any two commits. Both commands filter results for quick scanning.

Does this work with filters to focus only on code changes?

Yes. Use the `--code-only` flag to exclude metadata and configuration files, or `--no-meta-commits` to skip commits that only modify non-code resources. These filters reduce noise when tracking substantive changes.

What are the prerequisites for using Git change tracking?

You need a Git repository initialized locally and Bash shell access. The Skill operates from the repository root, so navigate there before running commands. UTF-8 encoding is enforced.

Related Skills