一键导入
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