with one click
version-bump
Bump version using CalVer (YYYY.MM.DD) and add a changelog entry
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Bump version using CalVer (YYYY.MM.DD) and add a changelog entry
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | version-bump |
| description | Bump version using CalVer (YYYY.MM.DD) and add a changelog entry |
YYYY.MM.DD or YYYY.MM.DD.MICRO for multiple releases on the same day.
currentDate field in CLAUDE.md)package.json (the version field).MICRO (starting at .1, incrementing if already has micro)YYYY.MM.DD (no micro)git diff --stat)git log)changelog.json to avoid duplicating already-recorded changespackage.json → "version": "NEW_VERSION"wxt.config.ts → version: 'NEW_VERSION'changelog.json → prepend new entry to the arraybun run changelog:gen to regenerate changelog files"version": "YYYY.MM.DD"
version: 'YYYY.MM.DD',
Prepend a new entry to the beginning of the array. The changes array supports
mixing the content block types below in any order.
{
"version": "YYYY.MM.DD",
"date": "YYYY-MM-DD",
"changes": [
/* content blocks */
]
}
Heading — section title to group related changes:
{ "type": "heading", "content": "Permission Preset Improvements" }
Paragraph — a single descriptive sentence or short paragraph:
{ "type": "paragraph", "content": "Theme data is now fetched at runtime." }
List — bullet points for multiple related changes:
{ "type": "list", "content": ["Added X feature.", "Improved Y behavior."] }
Image — screenshot or visual with alt text:
{ "type": "image", "content": "https://bucket.alfred.uptek.com/screenshot.png", "alt": "New feature screenshot" }
Video — demo video:
{ "type": "video", "content": "https://bucket.alfred.uptek.com/demo.mp4" }
heading + paragraphheading + listheading + paragraph + video or imageheading + content for each topicdate field in changelog.json uses YYYY-MM-DD (hyphens), the version field uses YYYY.MM.DD (dots)