feat: pre-release versioning, VERSIONING.md, publish-release skill#10
Merged
Conversation
…kill - bump-version.sh: add 'set <version>' subcommand for explicit versions including pre-release identifiers (e.g. set 0.1.0-beta.1) - release.yml: auto-detect pre-release tags (containing -beta/-rc) and publish them with GitHub's Pre-release flag so they don't show as latest - VERSIONING.md: new file documenting the full versioning scheme, stability signals (0.x.x vs 1.x.x), and the bump script commands - claude-skills/publish-release/SKILL.md: new Claude Code slash command (/publish-release) — describe a release in chat and Claude handles the VERSION bump, CHANGELOG, commit, tag, and push - install-dotfiles.sh: symlink claude-skills/ into ~/.claude/skills/ so the /publish-release skill is available out of the box on every machine - CLAUDE.md: document the release skill and reference VERSIONING.md - README.md: expand versioning section with pre-release examples and link to VERSIONING.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
install-dotfiles.sh: - Skip symlinks already pointing to the correct source (no unnecessary churn) - Use safe_backup() helper: falls back to timestamp suffix (.20260329120000.bak) if a .bak already exists, preventing silent overwrite of previous backups - Strip trailing slash from skill directory paths before symlinking (bug fix — trailing slash could cause Claude Code not to resolve the skill) - Real user-created skill directories are backed up, not destroyed - Cleaner "Up to date ✓" output on repeat runs upgrade.sh: - Add MCP sync step: runs setup-mcps.sh after each upgrade so new MCP servers added to the repo are picked up automatically (setup-mcps.sh is idempotent — it skips servers already configured) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bump-version.shgains aset <version>subcommand so you can set any explicit version including pre-release identifiers (e.g../scripts/bump-version.sh set 0.1.0-beta.1)release.ymlnow detects tags containing-beta/-rcand publishes them with GitHub's Pre-release flag, so they never show as the "latest" version0.x.x= pre-stable,1.x.x+ = mainstream, pre-release identifiers, the bump script, and the release gate/publish-releaseClaude Code skill — stored inclaude-skills/publish-release/SKILL.md, symlinked to~/.claude/skills/byinstall-dotfiles.sh. Say "Lets publish v0.1.0-beta.1 mac-dev-setup" in any Claude Code session and it handles the whole flowinstall-dotfiles.shnow installs all skills fromclaude-skills/on every fresh machineAfter merging
Tag the first beta release:
Test plan
bump-version.sh set 0.1.0-beta.1updates VERSION and CHANGELOG correctlybump-version.sh patchstill works as before🤖 Generated with Claude Code