在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:10
forks:0
updated:2026年2月20日 14:49
SKILL.md
| name | release |
| description | Bump version, commit, tag, and create a GitHub release |
| disable-model-invocation | true |
Automate the qsv-stats release workflow.
The user should provide the new version number (e.g., 0.47.0). If not provided, ask for it.
git status to ensure the working tree is cleanCargo.toml on the line marked with #:version
version = "0.46.0" #:versiongit log --oneline from the last tag to HEAD and categorize commits:
perf: — Performance improvementsfeat: — New featuresfix: — Bug fixesrefactor: — Refactoringchore: — Maintenancedocs: — Documentationv X.Y.Z releaseX.Y.Z (no v prefix — matches existing tag convention)git push && git push --tagsgh release create X.Y.Z --title "X.Y.Z" --notes "<release summary>"git tag --sort=-v:refname | head -5 to confirm the naming convention