com um clique
git-workflow
Follow this team's Git conventions for branching and commits
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
Follow this team's Git conventions for branching and commits
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
| name | git-workflow |
| description | Follow this team's Git conventions for branching and commits |
This skill defines the standard Git workflow for our team. Follow these conventions whenever creating branches, writing commits, or preparing code for review.
create_branch tool available.run_tests tool available.All branches must follow this naming convention:
<type>/<ticket-number>-<short-slug>
| Type | Usage |
|---|---|
feat/ | New features or enhancements |
fix/ | Bug fixes |
docs/ | Documentation-only changes |
chore/ | Tooling, CI, or dependency updates |
Example: feat/123-add-login-form
Use the create_branch tool to create the branch. Always branch from main
unless the ticket specifies a different base.
Commits must follow the Conventional Commits standard:
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
Refs: #123.run_tests tool with suite: "all".
suite: "unit" passing, but note this in the PR.main to avoid merge conflicts.CODEOWNERS file.