Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$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