在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用release
Use when performing a release to automate the full release flow - versioning, CHANGELOG update, git tagging, and deploy trigger via push.
星标1
分支0
更新时间2026年3月10日 22:26
SKILL.md
readonly菜单
Use when performing a release to automate the full release flow - versioning, CHANGELOG update, git tagging, and deploy trigger via push.
Use when preparing a release branch - version bump, CHANGELOG update, build verification, and commit. Stops after commit and asks user to merge the branch.
Use after a release branch has been merged into main - fetches latest main, creates an annotated git tag, and pushes it to trigger the release workflow.
| name | release |
| description | Use when performing a release to automate the full release flow - versioning, CHANGELOG update, git tagging, and deploy trigger via push. |
Orchestrates the complete release workflow by running two sub-skills in sequence:
/release-branch — version bump, CHANGELOG update, build verification, commit, and wait for branch merge/release-tag — fetch latest main, create annotated git tag, push to trigger deployRun the /release-branch skill. It will:
package.jsonCHANGELOG.mdWait for the user to confirm the merge is complete before continuing.
Run the /release-tag skill. It will:
v<NEW_VERSION>).github/workflows/release.yml pipelinev prefix (e.g., v2.5.0).main branch only.npm publish is applicable for this project, the .github/workflows/release.yml workflow handles it automatically on tag push.