Stats
Actions
Tags
Bump a userscript's `@version` (semver), update README, commit, tag, and push. Tampermonkey only auto-updates installed scripts when `@version` increases — forgetting this means users never receive fixes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/userscript-development:bump-versionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Increment the `@version` field of a userscript and ship the bump.
Increment the @version field of a userscript and ship the bump.
.user.js file (or repo root — auto-detect if only one)patch (default) | minor | major | explicit X.Y.Z@version. If missing or non-semver, ask the user for an explicit version and warn that Tampermonkey requires monotonic versions for update detection.patch: 1.2.3 → 1.2.4minor: 1.2.3 → 1.3.0major: 1.2.3 → 2.0.0@version line in place. Touch nothing else in the metadata block.README.md exists with the version embedded, update it too — or just suggest the user re-run generate-readme.git add -A
git commit -m "Bump version to <new>: <changelog-line>"
git tag "v<new>"
git push && git push --tags
npx claudepluginhub danielrosehill/claude-code-plugins --plugin userscript-developmentGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.