new-branch
Create a GitHub branch from main with the project naming convention
npx skills add EverMind-AI/EverOS --skill new-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.
# /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.
- Branch model
- Steps
- Naming
git checkout main git pull --ff-only git checkout -b <type>/<short-slug>
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.
