with one click
git
Git operations — branch, commit, push, merge
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 operations — branch, commit, push, merge
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
Review pull requests for code quality, security, and correctness
Review pull requests for code quality, security, and correctness
End-to-end shipping workflow — tests, PR creation, review request. Unified pr-create + pr-complete.
Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights
Break down complex problems through structured analytical frameworks
Persist and recall context across sessions — critical for continuity
| name | git |
| version | 1.0.0 |
| description | Git operations — branch, commit, push, merge |
| uses | [] |
| requires | {"tools":["git"],"env":[]} |
| security | {"risk_level":"write","capabilities":["git:read","git:write"],"requires_approval":false} |
Interact with git version control — branching, committing, pushing, and merging. This skill provides structured access to git operations with safety guardrails.
This is a builtin skill (handler: type: builtin). When any git_* tool is invoked, the executor runs the corresponding git command in the workspace directory. The tool schema in tool.yaml defines the external contract; the executor handles the git operations directly.
Always start with a clean state:
git_status) — ensure you're not on maingit pull)Follow conventional naming: <type>/<description>
| Prefix | Use For |
|---|---|
feat/ | New features |
fix/ | Bug fixes |
docs/ | Documentation |
refactor/ | Code refactoring |
test/ | Test additions or changes |
Always stage specific files — never use git add . or git add -A:
git_diffgit_diff(staged=true)Use conventional commit format: type(scope): description
#N## Git Operation
- Operation: [status/diff/log/branch/commit/push]
- Result: [output summary]
- Branch: [current branch]
- Clean: [yes/no]
git add .)git add . or git add -A: This stages everything including secrets, build artifacts, and unrelated changes. Stage specific files.fix(auth): handle expired token refresh. Follow the project's commit conventions.A git operation is complete when: