| name | version-bump |
| description | Bump semantic version across all project files (package.json, CLI, README, docs). Use for version updates without full release. |
| allowed-tools | ["Read","Edit","Glob","Grep","Bash(npm run build)","Bash(npm test)","Bash(npm install:*)","Bash(node:*)","Bash(echo:*)","AskUserQuestion"] |
| user-invocable | false |
Version Bump Skill
Updates semantic version consistently across all project files. This skill handles version updates only - use /release for the full release workflow including git and npm publishing.
Trigger Words
Use when user says: "bump version", "update version", "version bump", or when called by the release skill.
Version Locations (Canonical List)
These are ALL locations where version numbers appear. Every bump MUST update all of these:
Primary Sources
| File | Line | Pattern | Example |
|---|
package.json | 3 | "version": "X.Y.Z" | "version": "2.1.0" |
src/cli/index.ts | 18 | const VERSION = 'X.Y.Z'; | const VERSION = '2.1.0'; |
Documentation