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.
npx skills add sickn33/agentic-awesome-skills --skill create-branch --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Create Branch Create a git branch with the correct type prefix and a descriptive name following Sentry conventions. ## When to Use - You need to create a new git branch that follows the repository's naming convention. - You are starting a new piece of work from the default branch and need help classifying it as `feat`, `fix`, `docs`, or another branch type. - You want the branch name proposed from either the task description or the current local diff. ## Step 1: Get the Username Prefix Run `gh api user --jq .login` to get the GitHub username. If the command fails (e.g. not authenticated), ask the user for their preferred prefix. ## Step 2: Determine the Branch Description **If `$ARGUMENTS` is provided**, use it as the description of the work. **If no arguments**, check for local changes: ```bash git diff git diff --cached git status --short ``` - **Changes exist**: read the diff content to understand what the work is about and generate a description. - **No changes**: ask the user what they are about to work on. ## Step 3: Classify the Type Pick the type from this table based on the description: | Type | Use when | | --------- | ---------------------------------------------------
- When to Use
- Step 1: Get the Username Prefix
- Step 2: Determine the Branch Description
- Step 3: Classify the Type
- Step 4: Generate and Propose
- Examples
- Step 5: Create the Branch
- References
- Limitations
git diff git diff --cached git status --short git branch --show-current git remote | grep -qx origin && echo origin || git remote | head -1 git symbolic-ref refs/remotes/<remote>/HEAD 2>/dev/null | sed 's|refs/remotes/<remote>/||' | tr -d '[:space:]' git checkout -b <branch-name>
What does the create-branch skill do?
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.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill create-branch --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.