From git
Create a new git branch with a well-named branch following the convention. Use this skill whenever the user wants to create a new branch, switch to a new branch, or start working on a new feature/fix/task.
npx claudepluginhub t0k0sh1/agent-plugins --plugin gitThis skill is limited to using the following tools:
Create a new git branch following the `<type>/<short-description>` naming convention.
Creates git branches following Sentry naming conventions using GitHub username prefix, type classification (feat/fix/ref/chore/etc.), and description from args or local diffs. Activates on branch creation requests or new work on default branch.
Creates git branches following Sentry naming conventions (<prefix>/<type>/<description>) from args, git diff/status, or generic. Classifies type, picks base, avoids collisions.
Creates Git feature branches with short auto-incremented names and type prefixes (feat/fix/refactor/chore/docs). Generates from manual descriptions, uncommitted changes, or Arkhe SDLC specs.
Share bugs, ideas, or general feedback.
Create a new git branch following the <type>/<short-description> naming convention.
<type>/<short-description>
| Type | When to use |
|---|---|
feat | New feature or functionality |
fix | Bug fix |
docs | Documentation only |
style | Formatting, whitespace, no code change |
refactor | Code restructuring without behavior change |
test | Adding or updating tests |
chore | Build, CI, dependencies, tooling |
feat/add-user-authfix/null-pointer-crashdocs/update-readmerefactor/extract-parserchore/bump-dependenciestest/add-api-testsgit branch --show-currentgit checkout -b <type>/<short-description>