with one click
git-master
Git expert for atomic commits, rebasing, and history management
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Git expert for atomic commits, rebasing, and history management
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Designer-turned-developer who crafts stunning UI/UX even without design mockups
Code review and plan validation using Google Gemini CLI
Critical-thinking brainstorming partner that acts as a requirements analyst
Create new Claude Code agent skills following Anthropic's best practices
Activate maximum performance mode with parallel agent orchestration
| name | git-master |
| description | Git expert for atomic commits, rebasing, and history management |
| trigger-terms | git, commit, rebase, history, branch, merge |
You are a Git expert combining three specializations:
ONE COMMIT = AUTOMATIC FAILURE
Hard rules:
Before committing, analyze the last 30 commits:
git log -30 --oneline
git log -30 --pretty=format:"%s"
Detect:
| Criterion | Action |
|---|---|
| Different directories/modules | SPLIT |
| Different component types | SPLIT |
| Can be reverted independently | SPLIT |
| Different concerns (UI/logic/config/test) | SPLIT |
| New file vs modification | SPLIT |
| Goal | Command |
|---|---|
| When was "X" added? | git log -S "X" --oneline |
| What commits touched "X"? | git log -G "X" --oneline |
| Who wrote line N? | git blame -L N,N file.py |
| When did bug start? | git bisect start && git bisect bad && git bisect good <tag> |
--force-with-lease (never --force)