with one click
git-workflow
Follow this team's Git conventions for branching and commits
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
Follow this team's Git conventions for branching and commits
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
| 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.