con un clic
git-workflow
Follow this team's Git conventions for branching and commits
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Follow this team's Git conventions for branching and commits
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación 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.