new-branch
SmartHopper is an open-source project that implements third-party AI APIs to provide advanced features for Grasshopper3D.
Install / Use
npx skills add architects-toolkit/SmartHopperInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Skill content
View source on GitHubname: new-branch description: Add a new git branch based on the description provided by the user allowed-tools:
- read
- exec
- grep
- ask_user_question triggers:
- user
- model
New Branch Creation Workflow
Prerequisites
The user should provide a description of the purpose of the new branch. If no description is provided, ask for it and stop the skill.
Check that the current branch is dev. If not, switch to dev before continuing.
Branch Naming Convention
Use the following pattern for branch names:
prefix/X.Y.Z-descriptive-title
Where:
prefix: Type of change (see available prefixes below)X.Y.Z: Target version for the changesdescriptive-title: 1-3 words describing the branch purpose (kebab-case)
Available Prefixes
feature: New functionalitybugfix: Bug fixeshotfix: Bugs that need to be fixed urgently in productiondocs: Documentation changesrefactor: Code changes that neither fix bugs nor add featurestest: Adding missing tests or correcting testschore: Build process or auxiliary tool changesci: CI/CD configuration changesperf: Performance improvementsstyle: Code style changes (formatting, etc.)
Determining the Target Version
-
Check Current Base Version:
- Read the
<SolutionVersion>entry inSolution.propsto determine the current BASE VERSION (e.g.,0.4.0-alpha). - Do not derive the current BASE VERSION from
CHANGELOG.md; always base on the<SolutionVersion>inSolution.props.
- Read the
-
Check Previous Release Version:
- Read the
CHANGELOG.md. - The first section should be [Unreleased], listing all changes for the current development.
- The second section should be the Previous Release. Extract the PREVIOUS RELEASE VERSION (e.g. "## [0.3.6-alpha] - 2025-07-20" → "0.3.6-alpha").
- Read the
-
Determining Current Development Status
Compare the CURRENT BASE VERSION and the PREVIOUS RELEASE VERSION to identify the release level being developed in
dev. Compare only numbers, skip suffixes. The result can be a PATCH release (0.0.X), a MINOR release (0.X.0), MAJOR release (X.0.0) or NONE (all digits remain equal, version unchanged,0.0.0). -
Determining New Branch Release Level
Identify the logical release level for the suggested changes in the new branch, based on the description provided by the user. It can be:
- Patch (
0.0.X): for bug fixes, documentation updates, tests, refactors, and CI changes). - Minor (
0.X.0): for new backward-compatible features. - Major (
X.0.0): for breaking changes.
- Patch (
-
Determine Target Version
Compare the Required release level (step 4) vs. Current Development Status (step 3). If they match, keep the BASE VERSION as the TARGET VERSION. If they do not match, set the TARGET VERSION in the new branch's name by increasing the patch, minor or major number.
Workflow Steps
-
Ensure there are no changes pending to commit. Stop the execution if so and ask the user to commit them.
-
Ensure the current branch is
devand synced with remote.git checkout dev git pull public dev
-
Create a new local branch from
dev. Replace prefix, X.Y.Z, and descriptive-title as appropriate. Ask for confirmation if you doubt.git checkout -b prefix/X.Y.Z-descriptive-title
-
Tell the user that the new branch was created, and explain why you chose the target version number.
Stop here, do not implement any change in files.
Related Skills
Agent-Reach
84.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.4kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
career-ops
72.4kOpen-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
ai-job-search
43.6kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
Security Score
Audited on Invalid Date
