Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Cut a new semver release — bump all version strings via bump-version.ts, open a release PR, and after merge tag main and push. Use when cutting a release, tagging a version, shipping a build, or preparing a deployment. Trigger keywords - cut tag, release tag, new tag, cut release, tag version, ship it.
Bump all version strings, open a release PR, and after merge create annotated semver + latest tags on origin/main.
This skill delegates the version-bump work to scripts/bump-version.ts (invoked via npm run bump:version). That script updates package.json (root + plugin), blueprint.yaml, installer defaults, docs config, and versioned doc links — then runs the build and tests before opening a PR.
origin (NVIDIA/NemoClaw).Fetch all tags and find the latest semver tag:
git fetch origin --tags
git tag --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | head -1
Parse the major, minor, and patch components from this tag.
Present the options with the patch bump as default:
vX.Y.(Z+1) — bug fixes, small changesvX.(Y+1).0 — new features, larger changesv(X+1).0.0 — breaking changesnpx skills add NVIDIA/skills --skill nemoclaw-maintainer-cut-release-tagHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.