Agent skill

new-branch

Create a GitHub branch from main with the project naming convention

EverMind-AIgithub.com/EverMind-AIGitHub ↗
claude-codeApache-2.0
Install
npx skills add EverMind-AI/EverOS --skill new-branch --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Path: .claude/skills/new-branch/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 11,801 · +187 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /new-branch Cut a new branch for the GitHub repository. ## Branch model ``` main = default and protected branch feat/* = feature work fix/* = bug fixes docs/* = documentation-only changes ci/* = CI, build, and developer-experience changes chore/* = repository maintenance refactor/* = behavior-preserving code structure changes ``` ## Steps 1. Ask (or infer) the change type: `feat`, `fix`, `docs`, `ci`, `chore`, or `refactor`. 2. Update `main` first: ```bash git checkout main git pull --ff-only ``` 3. Create the branch with a kebab-case slug: ```bash git checkout -b <type>/<short-slug> ``` 4. Keep the branch scoped to one purpose and open a pull request back to `main`. ## Naming - `feat/add-agentic-rerank`, `fix/empty-profile-crash`, `docs/quickstart-config`, `ci/check-github-docs`. - Lowercase, hyphen-separated, no spaces, concise. Never commit directly to `main` — always use a branch and pull request.

What's inside
Steps it walks through
  1. Branch model
  2. Steps
  3. Naming
Commands it runs
git checkout main
git pull --ff-only
git checkout -b <type>/<short-slug>
More from EverOS
All skills →
About this skill
What does the new-branch skill do?

Create a GitHub branch from main with the project naming convention

How do I install it?

Run `npx skills add EverMind-AI/EverOS --skill new-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 EverMind-AI/EverOS, a repository with 11,801 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.

Keep going