with one click
git-master
Git expert skill. Commits, rebases, history search
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Git expert skill. Commits, rebases, history search
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Fast autonomous workflow — Plan + Execute only (no Debate planning, no Code Review). Aliases ulw/ultrawork.
Unified autonomous workflow from spec to validated code (Debate-First, all 5 phases)
Resource-efficient operation mode
Parallel agent execution with Claude Code's native Agent Teams
Browser automation and E2E testing
Frontend UI/UX development expert skill
| name | git-master |
| description | Git expert skill. Commits, rebases, history search |
| argument-hint | [mode: commit|rebase|history] [options] |
Expert skill for Git operations.
Create high-quality commits with well-crafted messages.
Usage:
/git-master commit
/git-master commit -m "feat: add authentication"
Workflow:
Analyze Changes
git status
git diff --staged
git diff
Detect Style
# Analyze recent commit messages
git log --oneline -20
Determine Commit Type
feat: New featurefix: Bug fixrefactor: Refactoringdocs: Documentation changesstyle: Formattingtest: Test additions/modificationschore: Build/tool changesWrite Commit Message
<type>(<scope>): <subject>
<body>
<footer>
Execute Commit
git add <files>
git commit -m "<message>"
Perform interactive rebase non-interactively.
Usage:
/git-master rebase <base-branch>
/git-master rebase main --squash
Workflow:
Check Current State
git log --oneline <base>..HEAD
Determine Rebase Strategy
Execute Rebase
git rebase <base>
# or
git rebase -i <base> (with auto script)
Resolve Conflicts
git rebase --continueSearch Git history for specific changes.
Usage:
/git-master history "function name"
/git-master history --file src/auth.ts
/git-master history --author "username"
Search Options:
Code Search
git log -S "search term" --oneline
git log -G "regex pattern" --oneline
File History
git log --follow --oneline -- <file>
git blame <file>
Author Search
git log --author="name" --oneline
Date Range
git log --since="2025-01-01" --until="2025-01-31"
BREAKING CHANGE: descriptionCloses #123, Fixes #456feat(auth): add JWT token refresh mechanism
Implement automatic token refresh when the access token
expires. The refresh token is stored in httpOnly cookie
for security.
- Add refreshToken endpoint
- Implement token rotation
- Add automatic retry on 401
Closes #234
fix(api): handle null response from external service
The external payment API occasionally returns null instead
of an error object. Add null check and proper error handling.
Fixes #567
refactor(database): extract query builder to separate module
Move query building logic to dedicated module for better
testability and reusability.
No functional changes.
--force only when explicitly requestedmain/master