Install
openclaw skills install new-tagPrepare and publish a git release tag by inspecting the repo's release convention, bumping affected package versions, validating release builds, committing the release prep, pushing the branch, and pushing a new tag. Use when asked to bump project versions, cut a release, push a tag, or trigger tag-based GitHub Actions or npm publishing.
openclaw skills install new-taggit status --short, the current branch, and recent tags before changing versions..github/workflows/ for tag patterns such as v*, package filters, build jobs, and publish jobs.Prepare vX.Y.Z release.vX.Y.Z.Use this sequence as the default pattern and adapt it to the repo:
git status --short
git tag --sort=-creatordate | head
rg -n "tags:|push:|workflow_dispatch|publish|--filter" .github/workflows -g '*.yml' -g '*.yaml'
# edit package versions and release metadata
pnpm --filter <package-a> build
pnpm --filter <package-b> build
pnpm run <release-build-if-defined>
git add <release-files>
git commit -m "Prepare vX.Y.Z release"
git push origin <branch>
git tag -a vX.Y.Z -m "vX.Y.Z"
git push origin vX.Y.Z
Return: