com um clique
git
Git operations — branch, commit, push, merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Git operations — branch, commit, push, merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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: