branch-name-standard

Enforce Git branch names following Conventional Commits type prefixes.

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/bugfix2020/AgentILS --skill branch-name-standard
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: branch-name-standard
Source: https://github.com/bugfix2020/AgentILS/tree/main/.agents/skills/branch-name-standard
Command: npx skills add https://github.com/bugfix2020/AgentILS --skill branch-name-standard

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps standardize Git branch naming conventions, ensuring clarity and consistency across the repository.

Core Features & Use Cases

  • Conventional Commits: Aligns with Conventional Commits for branch naming.
  • Branch Naming: Provides a clear, concise format for branch names.
  • Use Case: When creating, naming, renaming, reviewing, or auditing a Git branch in the repository.

Quick Start

Use the branch-name-standard skill to create a new branch with the correct format: git checkout -b feat/quality-gate-ink-panel.

Frequently Asked Questions about branch-name-standard

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is the standard naming convention for Git feature and hotfix branches?

A standardized Git branch naming convention enforces consistent prefixes, such as feat/ or fix/, to categorize branches and maintain clarity across the repository.

How do I create a Git branch using Conventional Commits standards?

To create a Git branch using Conventional Commits standards, apply a type prefix with a concise description, like git checkout -b feat/quality-gate-ink-panel for new feature branches.

When do I need to use specific type prefixes for repository branches?

You need to use type prefixes when creating, renaming, reviewing, or auditing repository branches to ensure adherence to Conventional Commits standards and maintain overall repository clarity.

Can I rename an existing Git branch to follow Conventional Commits code standards?

Yes, you can rename an existing Git branch to follow Conventional Commits code standards by updating it to use the specified naming format and required type prefixes for repository consistency.

Does this branch naming approach work for version control auditing?

Yes, standardizing Git branch naming works for version control auditing by providing a clear, concise format that helps reviewers quickly verify branch types and purposes during repository audits.