Master git commits and history
git-masterskillsetup L1★61,462
code-yeongyu/oh-my-openagent ↗What it does
Operate on Git history atomically: commit, rebase, or investigate
Best for
Atomic commits and complex history investigations when you need evidence-led git operations.
Inputs
- · git state (working tree, staged, branch)
- · user intent (commit/rebase/history/status)
- · commit style context from recent history
Outputs
- · commits with atomic groups
- · rebased/squashed history
- · git blame/bisect/reflog findings
Requires
- · git
- · optional subagent for complex rebases
Preconditions
Git repo initialized; working tree state known
Failure modes
- · Protected branches force-pushed
- · Unrelated dirty work committed together
- · Rebase went wrong without abort path explained
- · Commit message style inferred incorrectly
Trust signals
- · Detects message style from local history, does not default to Conventional Commits
- · Preserves unrelated dirty work
- · Explains recovery path before any rewrite (rebase --abort, reflog)