在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用release
星标2,232
分支128
更新时间2026年3月31日 11:50
Prepare, PR, and release a single package
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Prepare, PR, and release a single package
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Prepare, PR, and release a single package |
| argument-hint | <package> <version> |
| disable-model-invocation | true |
Release $0 at version $1.
Run make prepare package=$0 v=$1. If it fails, report the error and stop.
git checkout -b release/$0-$1git add -A && git commit -m "Prepare to release $0 $1"git push -u origin release/$0-$1
gh pr create --title "Prepare to release $0 $1" --body "Prepare to release $0 $1."
Run gh pr checks --watch. If any check fails, report which checks failed and stop.
Tell me that CI passed and ask for approval to merge. Once I approve, run:
gh pr merge --squash --admin --delete-branch
git checkout main && git pull
Run make release package=$0 v=$1 force=true.