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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin userscript-developmentThis skill uses the workspace's default tool permissions.
Increment the `@version` field of a userscript and ship the bump.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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