conventional-git
samber/cc-skills
Conventional Commits v1.0.0 standards for branch naming, worktree organization, and commit messages.
What is conventional-git?
Enforces Conventional Commits v1.0.0 for branch names, worktree paths, and commit messages across GitHub and GitLab projects. Use this when you need consistent git history, SemVer-driven releases, parseable changelog generation, or automatic issue closing.
- Format branches as `<type>/[issue-]<description>` with lowercase hyphens (e.g., `feat/42-user-auth`)
- Organize worktrees under `.claude/worktrees/` with branch-mirrored names (e.g., `.claude/worktrees/feat-user-auth`)
- Write commit messages with type, optional scope, and description; body and footers for detail and issue closing
- Auto-detect breaking changes via `!` suffix or `BREAKING CHANGE:` footer to trigger MAJOR version bumps
- Close issues automatically on merge using keywords (`Closes #42`, `Resolves #101`) in commit footers
- Generate parseable changelogs by filtering commits by type (feat, fix, docs, refactor, etc.)
How to install conventional-git
npx skills add https://github.com/samber/cc-skills --skill conventional-git- git installed and available in PATH
How to use conventional-git
- 1.When creating a branch, use format `<type>/[issue-]<description>` (e.g., `feat/42-user-auth` or `fix/login-race-condition`)
- 2.If using worktrees, create them under `.claude/worktrees/` with the branch name converted (slashes to hyphens): `git worktree add .claude/worktrees/feat-user-auth feat/user-auth`
- 3.Write commit messages starting with `<type>[scope]: <description>` (e.g., `feat(auth): add JWT refresh` or `fix: prevent race condition`)
- 4.For breaking changes, add `!` after the type/scope or include `BREAKING CHANGE:` footer to trigger MAJOR version bumps
- 5.To close issues, add keywords in the footer: `Closes #42` or `Resolves #101` (triggers on merge to default branch)
- 6.Run `git worktree list` before creating new worktrees; remove stale ones with `git worktree remove` after merging branches
Use cases
- Creating feature or fix branches with consistent naming so git history is immediately traceable to issues
- Setting up multiple worktrees for parallel work without cluttering remote branch names
- Writing commit messages that tools can parse to auto-generate changelogs and enforce SemVer
- Closing GitHub/GitLab issues automatically when commits land on the default branch
- Reviewing branch and commit conventions to catch formatting errors before merge
- Teams using GitHub or GitLab with automated changelog generation
- Projects enforcing SemVer releases tied to commit types
- Developers managing multiple worktrees and needing clear local organization
- CI/CD pipelines that parse commits to determine version bumps or trigger releases
conventional-git FAQ
No. Worktrees are a local checkout mechanism and should never appear in remote branch names. Use the branch name itself; organize worktrees locally under `.claude/worktrees/` with the branch name converted (slashes to hyphens).
Add a closing keyword in the commit message footer: `Closes #42` (GitHub) or `Resolves #101` (GitLab). Use `close`, `closes`, `closed`, `fix`, `fixes`, `fixed`, `resolve`, or `resolves` — case-insensitive. The issue closes when the commit lands on the default branch.
Changelog tools only detect breaking changes marked with `!` after the type/scope (e.g., `feat!:`) or via a `BREAKING CHANGE:` footer. Body-only descriptions are invisible to parsers and won't trigger a MAJOR version bump.
Yes, but the PR/MR title becomes the single commit message. Ensure the title follows Conventional Commits format (`feat: ...`, `fix: ...`, etc.) before squashing, or changelog generation will break silently.
Keep it ≤ 72 characters. Git log and GitHub/GitLab UIs silently truncate longer subjects. Move detail to the body, separated by a blank line.
Full instructions (SKILL.md)
Source of truth, from samber/cc-skills.
name: conventional-git description: Conventional Commits v1.0.0 branch naming, worktree naming, and commit message standards for GitHub and GitLab projects. Use when creating branches, naming worktrees, writing commits, generating commit messages, reviewing branch conventions, or setting up changelog automation. Apply when your project needs consistent git history, SemVer-driven releases, parseable changelog generation, or automatic issue closing. Trigger when the user asks how to name a worktree, create a git worktree, or organize worktrees alongside branches. user-invocable: true license: MIT compatibility: Designed for Claude Code or similar AI coding agents. Requires git. metadata: author: samber version: "1.2.0" openclaw: emoji: "📝" homepage: https://github.com/samber/cc-skills requires: bins: - git allowed-tools: Read Edit Write Glob Grep Bash(git:) Bash(gh:)
Conventional Commits & Branch Naming
Follow Conventional Commits v1.0.0 for both branch names and commit messages — consistent naming lets tools auto-generate changelogs, enforce SemVer bumps, and filter history by concern.
Branch Naming
Format: <type>/[issue-]<description> — lowercase, hyphens only, no special chars except /.
feat/user-authentication
feat/42-user-authentication
fix/login-race-condition
fix/87-login-race-condition
docs/api-reference-update
refactor/payment-module
Prefix with the issue number when one exists — GitHub and GitLab auto-link it and it makes git log immediately traceable to the tracker. Keep the description under 50 characters — most git UIs truncate branch names in lists around that length. Match the type to the work you're doing — this is the contract readers use to understand the branch purpose at a glance.
NEVER include worktree in a branch name — git worktrees are a local checkout mechanism, not a branch concept; the name would leak implementation details into the remote and confuse other contributors.
Worktree Naming
Worktrees are local checkout directories — they never appear in the remote. Place them under .claude/worktrees/ and name them by replacing the branch / separator with -.
git worktree add .claude/worktrees/feat-user-authentication feat/user-authentication
git worktree add .claude/worktrees/fix-87-login-race-condition fix/87-login-race-condition
The directory name mirrors the branch name so git worktree list stays readable and each worktree is immediately traceable to its branch without inspecting the checkout. Run git worktree list before creating a new one — reuse an existing worktree if it already covers the same branch.
Keep worktrees scoped to a single branch. Doing unrelated work inside someone else's worktree obscures which changes belong where and makes cleanup error-prone.
Remove the worktree once its branch is merged — either after a local merge or after the pull/merge request is closed on the remote. Stale worktrees accumulate and make git worktree list unreadable.
git worktree remove .claude/worktrees/feat-user-authentication # branch merged locally
git worktree prune # remove refs to already-deleted directories
Commit Message Format
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Types:
| Type | SemVer | When |
|---|---|---|
feat | MINOR | New feature |
fix | PATCH | Bug fix |
docs | — | Docs only |
style | — | Formatting, no logic change |
refactor | — | Restructure, no feature/fix |
perf | — | Performance improvement |
test | — | Add/fix tests |
build | — | Build system, deps |
ci | — | CI config |
chore | — | Anything else (not src/test) |
revert | — | Reverts a previous commit |
Rules:
- Subject line ≤ 72 characters — git log and GitHub/GitLab UIs silently truncate longer subjects
- Imperative mood: "add" not "added" — reads as an instruction, not a history log
- No capital letter, no trailing period — enforces uniform parsing by changelog tools
- Body separated by blank line — parsers split header/body at the first blank line
- Breaking changes: use
!after type/scope, or addBREAKING CHANGE:footer (triggers MAJOR bump) — body-only descriptions are invisible to changelog tools revertcommits SHOULD includeThis reverts commit <hash>.in the body —git revertgenerates this automatically; don't strip it- NEVER add a Claude signature, AI agent attribution, or
Co-authored-bytrailer for Claude or any other AI agent to commits
Examples:
feat(auth): add JWT token refresh
fix: prevent race condition on concurrent requests
Introduce request ID and reference to latest request.
Dismiss responses from stale requests.
refactor!: drop support for Go 1.18
BREAKING CHANGE: Go 1.18 no longer supported; uses stdlib APIs from 1.21+
Closing Issues via Commit Messages
Both GitHub and GitLab detect keywords in commit messages and automatically close the referenced issue when the commit lands on the default branch. Place the reference in the footer (preferred — keeps the subject line clean).
Keywords: close, closes, closed, fix, fixes, fixed, resolve, resolves, resolved — case-insensitive.
GitHub:
fix(auth): prevent token expiry race condition
Closes #42
Closes owner/repo#99
- Triggers when merged into the default branch (usually
main) - Cross-repo:
Closes owner/repo#42 - Close multiple:
Closes #42, closes #43 - Works in PR descriptions too
GitLab:
feat: add dark mode support
Resolves #101
Closes group/project#42
- Triggers when merged into the default branch (configurable per project)
- Cross-project:
Closes group/project#42 - Close multiple:
Closes #101, closes #102 - Works in MR descriptions too
Tip: Pair with the commit type — fix: closing a bug issue, feat: closing a feature request — keeps the changelog semantically coherent.
Common Mistakes
| Mistake | Fix |
|---|---|
feat: Added login page | feat: add login page — imperative, no capital |
fix: fix bug. | fix: fix bug — no trailing period |
| Subject over 72 chars | Shorten; move detail to body |
| Breaking change only in body | Add ! or BREAKING CHANGE: footer — tools won't detect body-only |
feat(adding-auth): ... | feat(auth): ... — scope is a noun, not a verb |
| Closes #42 in subject line | Move to footer — keeps subject clean and parseable |
Best Practices
- Align branch type and commit type —
feat/auth-*branch →feat(auth):commits - One concern per branch — mixing fixes into feature branches obscures the changelog
- Use scope consistently within a branch —
feat(auth):throughout, notfeat(user):mid-way - Squash merge: when squash-merging a PR/MR, the branch commits are collapsed into one — the PR/MR title becomes the commit message. If the title doesn't follow conventional commits format, changelog generation breaks silently. Always set the PR title before squashing.
Related skills
More from samber/cc-skills and the wider catalog.

copywriting-cta
Design high-converting end-of-article CTAs matched to your objective, audience, and publication type.

copywriting-hooks
Generate 3-4 distinct opening hooks and titles for long-form articles in English or French.

copywriting-prose-creator
Codify how a brand writes—prose mechanics, lexicon, syntax, rhythm, structure—independent of tone.

copywriting-tone-of-voice-creator
Build machine-readable brand tone-of-voice guides (TONE.md) for consistent, on-brand copy across channels and writers.

crxjs
Vite-powered Chrome extension development with true HMR for popups, content scripts, options pages, and side panels.

deep-research
Conduct thorough, multi-source research with confidence tracking and cited Markdown reports across 11 research types.