원클릭으로
git-master
Git expert skill. Commits, rebases, history search
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git expert skill. Commits, rebases, history search
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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