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:2,069
forks:122
updated:March 31, 2026 at 11:50
SKILL.md
| 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.