تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:١٠
forks:٠
updated:٢٠ فبراير ٢٠٢٦ في ١٤:٤٩
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