EverOS: Skill for Claude Code

.claude/skills/new-branch/SKILL.md

new-branch is a skill for Claude Code from EverMind-AI/EverOS. It costs 16 tokens per session (290 once invoked), scanned A, original, Apache-2.0.

A workflow for creating a new Git branch from the up-to-date main branch. A branch is a separate line of work used to develop and review changes safely.

In plain words
What is it for?
Use it before starting a feature, bug fix, documentation update, CI change, maintenance task, or refactor.
Why use it?
It keeps work isolated from the protected main branch and applies a consistent naming scheme so the branch's purpose is clear.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is EverMind-AI/EverOS's own configuration. It tells Claude Code how to work on EverOS itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything EverOS configures →

About the project

EverOS is a Python library and local-first memory runtime that gives AI agents a portable memory layer across apps, devices, and workflows. It stores conversations, files, and agent activity as readable Markdown while maintaining local indexes for retrieval and reuse. The catalogue add-ons provide commands, skills, hooks, and settings for using EverOS with coding agents.

EverMind-AI/EverOS · 12,774 stars · on GitHub · evermind.ai

Reuse

Borrowing it

Nothing to install: this file belongs to EverMind-AI/EverOS. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/EverMind-AI/EverOS/main/.claude/skills/new-branch/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/EverMind-AI/EverOS

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for new-branch

README.md
[![agentmods](https://agentmods.dev/badge/skills/evermind-ai/everos/new-branch.svg)](https://agentmods.dev/skills/evermind-ai/everos/new-branch)
Your own site
<a href="https://agentmods.dev/skills/evermind-ai/everos/new-branch"><img src="https://agentmods.dev/badge/skills/evermind-ai/everos/new-branch.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 290 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00016 $0.00290
Opus 5 $0.00008 $0.00145
Sonnet 5 $0.00003 $0.00058
Haiku 4.5 $0.00002 $0.00029

Measured 8d ago against content hash 83652a1f679c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

new-branch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/new-branch/SKILL.md · 45 lines

What it actually says

/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:
    git checkout main
    git pull --ff-only
    
  3. Create the branch with a kebab-case slug:
    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.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 45 lines · 16 tokens per session scan A 83652a1f679c

Subscribe to this mod's changes

new-branch is a skill published in the GitHub repository EverMind-AI/EverOS (12,774 stars, last pushed today), licensed Apache-2.0. It adds 16 tokens to every session and 290 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories