Skip to main content

git-master

Git expert for atomic commits, interactive rebasing, branch management, and history cleanup. Trigger "git rebase", "atomic commits", "clean git history", "squash commits", "branch strategy".

跳到安装

来源信息

仓库
mrzhangguoguo/oh-my-workbuddy
最近来源活动
2026年7月8日 07:14
检测到的 SKILL.md 语言
英语
星标
2
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
git-master
category
execution
status
active
core
true
description
Git expert for atomic commits, interactive rebasing, branch management, and history cleanup. Trigger "git rebase", "atomic commits", "clean git history", "squash commits", "branch strategy".
agent_created
true
triggers
["git rebase","atomic commits","clean git history","squash commits","branch strategy"]
> Ported from oh-my-codex `git-master`. OMX runtime conventions (`$macro` invocation, > `omx` CLI, `.omx/` state directory) are replaced with WorkBuddy idioms > (Skill tool, Agent tool, task list, `.workbuddy/memory`). # Git Master Git operations expert. Use this skill whenever the user needs precise, safe git work: atomic commits, interactive rebasing, branch management, history cleanup, or style-consistent commit messages. ## Usage Invoke the `git-master` skill and describe the git task, e.g.: "rebase my feature branch onto main", "squash these 5 commits", "write a conventional commit for these changes". ## Capabilities - **Atomic commits** with conventional-commit format (`feat:`, `fix:`, `refactor:`, `docs:`, `test:`, `chore:`). - **Interactive rebasing** (`rebase -i`) for reordering, squashing, fixing up. - **Branch management**: create/rename/delete, branch-point detection, divergence check. - **History cleanup**: prune stray commits, rewrite messages, split/join commits. - **Style detection**: read the repo's existing commit history to match its convention before writing new commits. ## Workflow 1. **Assess the working tree.** Run read-only checks first: ```bash git status git log --oneline -10 git diff --stat ``` Detect the repo's commit style from recent history before composing messages. 2. **Plan the operation.** For anything destructive (rebase, reset, branch delete, amend of already-pushed commits), use the task list (TaskCreate) to outline steps, and surface a short plan to the user. If the operation rewrites shared/pushed history, ask for explicit confirmation before proceeding (use AskUserQuestion for a clean yes/no). 3. **Execute safely.** - Prefer `--autosquash` when queuing fixups. - For atomic commits, stage narrowly: `git add -p` or stage specific paths rather than `git add -A`. - Write messages that match the detected style; default to Conventional Commits when the repo has no clear convention. 4. **Verify.** After the operation: ```bash git status git log --oneline -5 ``` Confirm the tree matches intent and there are no leftover staged/unstaged changes unless expected. ## Safety rules - Never rewrite history that has already been pushed to a shared branch without explicit user confirmation. - Always check `git status` and `git log` before mutating. - For large/risky history rewrites, suggest creating a backup branch first (`git branch backup/<name>`). - If unsure about intent, ask the user rather than guessing. ## Handoff When the git task is part of a larger flow (e.g. a `ralph`/`ultrawork` loop or a PR prep), record the resulting commit range and branch state in the task list and/or append a short note to `.workbuddy/memory/YYYY-MM-DD.md` so downstream steps can pick up where this left off.
在 GitHub 查看