Git Master
A Git expert skill that splits changes into atomic commits, drives rebase/squash safely, and digs through history with blame, bisect and pickaxe search.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 10/10Last updated: Aug 9, 2026
What it does
- Commit mode: gathers
git status/git logcontext in parallel, auto-detects the repo's commit style (semantic / plain / sentence / short) and dominant language, then splits changed files into multiple atomic commits by directory, concern and dependency level. It must print a style-detection block and a commit plan before executing anything. - Rebase mode: runs a safety assessment (on main? dirty tree? already pushed?) and then performs interactive squash, autosquash,
rebase --onto, reordering or commit splitting, with conflict-resolution steps and recovery via--abort,reflog,fsck. - History search mode: picks the right tool for the question —
git log -S(pickaxe),git log -G(regex),git blame -L/-C,git bisect(includingbisect run),git log --follow— and formats the findings into a readable result table with follow-up actions.
Who it's for
- Developers whose commits keep turning into one giant "update everything" blob.
- Teams that want commit messages to automatically match the repo's existing convention and language.
- Anyone who wants rebase, autosquash and bisect without re-Googling the flags each time.
Examples
- After touching 8 files, ask "commit this" → it prints a 5-commit plan (app layer, demo components, pricing, e2e tests, i18n) and executes in dependency order.
- "Clean up this branch and rebase onto main" → safety check → autosquash of fixups → instructs
git push --force-with-lease. - "When was MAX_RETRY_COUNT removed?" → runs
git log -S "MAX_RETRY_COUNT" --all --onelineand reports the culprit commit with a diff excerpt.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/omo-opencode/src/features/builtin-skills/git-master/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/omo-opencode/src/features/builtin-skills/git-master folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/git-master/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo && mkdir -p ~/.claude/skills && cp -r /tmp/omo/packages/omo-opencode/src/features/builtin-skills/git-master ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open your terminal.
- Clone the repository into a temp folder:
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/omo/packages/omo-opencode/src/features/builtin-skills/git-master ~/.claude/skills/ - Verify that
~/.claude/skills/git-master/SKILL.mdexists. - Restart Claude Code, open a Git repository, and try prompts like "commit these changes" or "who wrote this line?".
- Because the skill can rewrite history (reset, rebase, force-with-lease push), review its printed plan before approving execution.
View source on GitHub ↗License: NOASSERTION