agentsclimarketplace

Start branch

Skill dkmqflx/git-workflow-plugin/plugins/git-workflow/skills/start-branch

Git branch/worktree lifecycle skills for Claude Code (worktree, branch, PR, cleanup)

Install
npx -y skills add dkmqflx/git-workflow-plugin --skill start-branch

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create a new git branch with an appropriate name and switch to it — from the current position by default, or from a named base branch (e.g. dev, master, main, stage) when one is specified. Use when the user wants to start work on a fresh branch — phrases like "브랜치 만들어줘", "master에서 브랜치 만들어줘", "dev 기준으로 브랜치 파줘", "stage에서 새 브랜치", "start a new branch", "create a branch for this", "branch off master", "작업 브랜치 파줘", "/start-branch". Do NOT use when the user explicitly wants a worktree (separate directory).

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.4 KB, as published. Nobody here has run it

Start Branch

Generate an appropriate branch name for the task and switch to it — from the current position, or from a named base branch.

When to apply

Starting work on a new feature, fix, or task directly in the current directory. Do not apply for worktree (separate checkout directory) — that is /worktree.

Branch naming convention

Format: <type>/<short-description>

TypeWhen to use
feat/New feature or capability
fix/Bug fix
chore/Maintenance, config, dependency updates
refactor/Restructuring without behavior change
docs/Documentation only
test/Test additions or changes

Description rules: lowercase, hyphen-separated, 2–5 words, describes WHAT (not HOW).

Examples: feat/user-authentication, fix/cart-total-calculation, chore/update-eslint-config, refactor/extract-payment-service

Steps

  1. Determine the base:
    • If the user named a specific branch (e.g. dev, master, main, stage), that is the base branch.
    • Otherwise, the base is the current position — no checkout needed before branching.
  2. Derive the branch name from the user's task description using the convention above. If no task description was given (bare /start-branch), ask one short question first.
  3. If a base branch was named, switch to it and pull latest, then branch from it:
    git checkout <base branch> && git pull
    git checkout -b <branch-name>
    
    Otherwise, branch directly from the current position:
    git checkout -b <branch-name>
    
  4. Confirm in one line: Switched to new branch: <branch-name> (append (from <base branch>) if a base was named)
  5. Begin the user's task.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.