Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

git-branch-naminggit 分支命名

Agent Skill

git-branch-naming 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,368

周安装

57

GitHub Stars

28

下载量

456
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:git-branch-naming(git 分支命名)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/git-branch-naming
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill git-branch-naming
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill git-branch-naming

简介

git-branch-naming 提供智能 Git 分支命名建议,遵循最佳实践和项目约定。

  • 适合新分支创建时快速生成有意义、可追溯的名称。
  • 支持基于任务类型(如 feature、fix)和问题编号自动生成名称。
  • 依赖上下文信息准确性,建议人工复核后应用至实际工作流。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Git Branch Naming Conventions

Consistent branch naming improves traceability, enables automation, and makes repository history easier to navigate.

When to Use This Skill

Use this skill when...Use something else when...
Creating a new feature/fix branchManaging PR workflows → git-branch-pr-workflow
Setting up team branch conventionsCommitting changes → git-commit-workflow
Discussing naming standardsRebase/merge strategies → git-branch-pr-workflow

Branch Name Format

{type}/{issue}-{short-description}
ComponentFormatRequiredExample
typeLowercase prefixYesfeat, fix
issueIssue number, no #If issue exists123
descriptionkebab-case, 2-5 wordsYesuser-authentication

Examples

# With issue number (preferred when issue exists)
feat/123-oauth-login
fix/456-null-pointer-crash
chore/789-update-dependencies
docs/101-api-reference

# Without issue number (when no issue exists)
feat/oauth-integration
fix/memory-leak-cleanup
chore/update-eslint-config
refactor/auth-service-split

Branch Types

TypePurposeConventional Commit
feat/New features, capabilitiesfeat:
fix/Bug fixesfix:
chore/Maintenance, deps, configchore:
docs/Documentation onlydocs:
refactor/Code restructuring, no behavior changerefactor:
test/Adding/updating teststest:
ci/CI/CD pipeline changesci:
hotfix/Emergency production fixesfix: (with urgency)
release/Release preparationchore: or release:

Creating Branches

Standard Workflow

# With issue number
git switch -c feat/123-user-authentication

# Without issue number
git switch -c fix/login-timeout-handling

# From specific base
git switch -c feat/456-payment-api main
git switch -c hotfix/security-patch production

Validation Pattern

Before creating, validate the format:

# Branch name regex pattern
^(feat|fix|chore|docs|refactor|test|ci|hotfix|release)/([0-9]+-)?[a-z0-9]+(-[a-z0-9]+)*$

Valid:

  • feat/123-user-auth
  • fix/memory-leak
  • chore/update-deps

Invalid:

  • feature/user-auth ✗ (use feat, not feature)
  • fix/UserAuth ✗ (use kebab-case, not PascalCase)
  • my-branch ✗ (missing type prefix)
  • feat/fix_bug ✗ (use hyphens, not underscores)

Issue Linking Best Practices

When to Include Issue Numbers

ScenarioInclude Issue?Example
Work tracked in GitHub IssuesYesfeat/123-add-oauth
Work tracked in external system (Jira, Linear)Optionalfeat/PROJ-456-oauth or feat/oauth
Exploratory/spike workNospike/auth-approaches
Quick fix without issueNofix/typo-readme
Dependabot/automated PRsNochore/bump-lodash

External Ticket Systems

For Jira, Linear, or other systems, use the ticket ID:

feat/PROJ-123-user-dashboard
fix/LINEAR-456-api-timeout
chore/JIRA-789-update-sdk

Description Guidelines

Good Descriptions

PatternExampleWhy Good
Action + Targetadd-oauth-loginClear what's being done
Component + Changeauth-service-refactorIdentifies affected area
Bug + Contextnull-pointer-user-saveDescribes the issue

Avoid

Anti-patternProblemBetter
fix/bugToo vaguefix/123-login-validation
feat/new-featureMeaninglessfeat/user-dashboard
feat/john-working-on-stuffNot descriptivefeat/456-payment-flow
fix/issue-123Redundant, no descriptionfix/123-timeout-error
feat/add-new-user-authentication-system-with-oauthToo longfeat/oauth-authentication

Length Guidelines

  • Minimum: 2 words after type/issue (feat/123-user-auth)
  • Maximum: 5 words, ~50 characters total
  • Sweet spot: 3-4 words (feat/123-oauth-token-refresh)

Special Branch Patterns

Release Branches

release/1.0.0
release/2.1.0-beta
release/v3.0.0-rc1

Hotfix Branches

hotfix/security-vulnerability
hotfix/critical-data-loss
hotfix/production-crash-fix

Long-Running Branches

For multi-week efforts, consider date suffix:

feat/123-major-refactor-2026q1
epic/new-billing-system

Team Conventions

User-Prefixed Branches (Optional)

For large teams where branch ownership matters:

# Pattern: {user}/{type}/{description}
alice/feat/123-oauth
bob/fix/456-memory-leak

# Or: {type}/{user}-{description}
feat/alice-oauth-integration
fix/bob-memory-leak

Protected Branch Patterns

Configure branch protection for:

main
master
develop
release/*
hotfix/*

Automation Integration

Branch Name → Commit Scope

The branch type can inform commit message scope:

BranchSuggested Commits
feat/123-authfeat(auth):...
fix/456-apifix(api):...
docs/readmedocs:...

CI/CD Triggers

Common patterns for CI pipeline triggers:

# GitHub Actions example
on:
  push:
    branches:
      - 'feat/**'
      - 'fix/**'
      - 'hotfix/**'
  pull_request:
    branches:
      - main

Quick Reference

Branch Creation Checklist

  • Starts with valid type prefix (feat/, fix/, etc.)
  • Issue number included (if tracked work)
  • Description is kebab-case
  • Description is 2-5 words
  • Total length under 50 characters
  • No underscores, spaces, or uppercase

Command Reference

ActionCommand
Create branchgit switch -c feat/123-description
List by typegit branch --list 'feat/*'
Delete localgit branch -d feat/123-description
Delete remotegit push origin --delete feat/123-description
Renamegit branch -m old-name new-name

Type Selection Flowchart

Is it a bug fix? → fix/
Is it a new capability? → feat/
Is it documentation? → docs/
Is it maintenance/deps? → chore/
Is it restructuring code? → refactor/
Is it adding tests? → test/
Is it CI/CD changes? → ci/
Is it an emergency? → hotfix/

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.2%
按下载量换算151

Claude

31.35%
按下载量换算143

Cursor

16.88%
按下载量换算77

Gemini CLI

9.17%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills