Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:33
forks:11
updated:May 6, 2026 at 09:33
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | start-feature |
| description | 从 master 创建新的 feature 分支,确保基于最新代码并检查工作区状态。 |
| license | MIT |
| metadata | {"author":"DicePP","version":"1.0"} |
从最新 master 创建功能分支,自动拉取上游更新并检查工作区状态。
Input: 用户请求创建功能分支,如 "开新功能"、"/start-feature"、或提供分支名如 "feature/roll-refactor"。
Prerequisites
origin/master remoteSteps
检查当前分支
运行:
git branch --show-current
记录当前分支名,用于最后提示。
检查工作区状态
运行:
git status --short
存在未提交更改,请先 commit 或 stash 后再开新分支获取功能分支名称
如果用户没有提供分支名,询问:
请输入功能分支名称(如
feature/roll-refactor):
分支名规范检查:
feature/ 或 hotfix/ 开头,自动补全 feature/ 前缀拉取最新 master
git fetch origin master
git checkout master
git pull origin master
如果 pull 失败(如本地 master 有未推送提交):
创建功能分支
git checkout -b <branch_name> master
如果分支已存在:
分支 <name> 已存在输出结果
成功创建后输出:
✅ 功能分支已创建
分支: <branch_name>
基于: origin/master (<commit_hash>)
当前分支已切换到: <branch_name>
可以开始开发了。开发完成后用 /pr-create 创建 Pull Request。
Important Notes
origin/master 创建,避免后续 rebase 冲突。feature/简述 或 hotfix/简述 格式。