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 | pr-create |
| description | 从当前 feature 分支创建 GitHub Pull Request,自动推送分支并填写标题/描述。 |
| license | MIT |
| metadata | {"author":"DicePP","version":"1.0"} |
从当前 feature 分支创建 GitHub Pull Request,自动推送到远端并生成 PR 标题和描述。
Input: 用户请求创建 PR,如 "开 PR"、"create pr"、"/pr-create"。
Prerequisites
gh) 已安装并认证(gh auth status 显示已登录)feature/xxx 或 hotfix/xxx 分支(不在 master)Steps
检查当前分支
运行:
git branch --show-current
master 或 main:拒绝,提示 请在 feature 分支上创建 PRfeature/xxx 或 hotfix/xxx:继续检查工作区状态
运行:
git status --short
推送到远端
git push origin $(git branch --show-current)
如果 push 失败:汇报错误,停止。
生成 PR 标题和描述
从最近的 commit message 提取 PR 标题:
git log -1 --pretty=format:"%s"
生成分支对比的变更摘要作为描述:
git log origin/master..HEAD --oneline
向用户展示拟定的标题和描述,询问是否确认或修改。
创建 PR
用户确认后运行:
gh pr create --title "<标题>" --body "<描述>"
如果 PR 已存在:
PR 已存在: <url>输出结果
成功创建后输出:
✅ PR 创建成功
分支: feature/xxx → master
标题: <title>
链接: <pr_url>
Important Notes
master( DicePP 项目主分支)。pr-review skill 或手动审核。