원클릭으로
git-master
Git expert for atomic commits, rebasing, and history management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git expert for atomic commits, rebasing, and history management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Pre-generation gap analysis — surface hidden requirements, AI-slop risks, and missing guardrails before the plan is written
Unified external CLI agent runner — backend detection, command dispatch, retry logic, response parsing
Structured codebase search protocol — deep parallel exploration before acting on unfamiliar code
Post-generation plan review — verify references, executability, and acceptance criteria before execution
High-IQ architecture consulting mode — complex trade-offs, hard debugging, read-only analysis
Autonomous exploration and goal-driven execution — read extensively before acting
| name | git-master |
| description | Git expert for atomic commits, rebasing, and history management |
Routes git operations through structured best practices. Use for any git-related task.
Every commit should be:
type(scope): description| Type | When |
|---|---|
feat | New feature |
fix | Bug fix |
refactor | Code change that neither fixes a bug nor adds a feature |
docs | Documentation only |
test | Adding or fixing tests |
chore | Build, deps, config changes |
type(scope): short description
Optional body explaining WHY, not WHAT (the diff shows WHAT).
Closes #123
Before committing, check existing style:
run_command: git log --oneline -10
Match the project's existing conventions:
feat/description or feature/descriptionfix/descriptionFor interactive rebase:
git log --oneline -N to see commitsrun_command with send_command_input for interactive rebase