Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

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 log context 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 (including bisect 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

  1. 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.
  2. "Clean up this branch and rebase onto main" → safety check → autosquash of fixups → instructs git push --force-with-lease.
  3. "When was MAX_RETRY_COUNT removed?" → runs git log -S "MAX_RETRY_COUNT" --all --oneline and 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download 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.

  1. Open your terminal.
  2. Clone the repository into a temp folder: git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/omo/packages/omo-opencode/src/features/builtin-skills/git-master ~/.claude/skills/
  5. Verify that ~/.claude/skills/git-master/SKILL.md exists.
  6. Restart Claude Code, open a Git repository, and try prompts like "commit these changes" or "who wrote this line?".
  7. 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