git-master
Installation
SKILL.md
Git Master
Expert Git workflow skill covering three core capabilities. Load the corresponding reference file based on user intent and follow its workflow exactly.
Capability Router
| User Intent | Reference File | Signal Words |
|---|---|---|
| Commit code / split commits / generate commit message | references/atomic-commit.md |
commit, stage, conventional commits, split commits |
| Rebase / squash history / clean up commits | references/rebase-surgeon.md |
rebase, squash, fixup, force push, clean history |
| Search code history / trace changes | references/semantic-search.md |
blame, bisect, who wrote, when was added, pickaxe, archaeology |
Execution Flow
- Identify intent: Match user intent against the router table above
- Load reference file: Use
read_fileto load the corresponding file fromreferences/ - Execute strictly: Follow every step in the reference file — never skip safety checks