/create-branch
Create a git branch following Sentry naming conventions. Use when asked to "create a branch", "new branch", "start a branch", "make a branch", "switch to a new branch", or when starting new work on the default branch.
One skill from sentry-skills.
shell
$ npx -y skills add getsentry/skills --skill create-branch --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/create-branch
Context preview
The summary Claude sees to decide when to auto-load this skill.
Create a git branch following Sentry naming conventions. Use when asked to "create a branch", "new branch", "start a branch", "make a branch", "switch to a new branch", or when starting new work on the default branch.
Stats
Stars883
Forks45
LanguagePython
LicenseApache-2.0
Ships with sentry-skills
SKILL.md
create-branch.SKILL.md
--- name: create-branch description: Create a git branch following Sentry naming conventions. Use when asked to "create a branch", "new branch", "start a branch", "make a branch", "switch to a new branch", or when starting new work on the default branch. argument-hint: '[optional description of the work]' --- # Create Branch Create a git branch following Sentry naming conventions. Keep this workflow non-interactive unless the user explicitly asks to choose the name manually. ## Workflow 1. Resolve the work description: - If `$ARGUMENTS` is present, use it - Otherwise inspect: ```bash git diff git diff --cached git status --short ``` - If there are local changes, derive a short description from the diff - If there are no local changes, use a generic description like `repo-maintenance`, `tooling-update`, or `work-in-progress` 2. Classify the branch type: | Type | Use when | |------|----------| | `feat` | New functionality | | `fix` | Broken behavior now works | | `ref` | Behavior stays the same, structure changes | | `chore` | Maintenance of existing tooling/config |
