skills/git-master/SKILL.md
Git expert for atomic commits, rebasing, and history management with style detection
npx skillsauth add mazenyassergithub/oh-my-claudecode git-masterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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)data-ai
Activate maximum performance mode with parallel agent orchestration for high-throughput task completion
tools
QA cycling workflow - test, verify, fix, repeat until goal met
development
Test-Driven Development enforcement skill - write tests first, always
tools
Review a plan with Critic