RE

Handles version bumping and release publishing for Ralph Orchestrator.

Install

mkdir -p .claude/skills/release-bump && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5933" && unzip -o skill.zip -d .claude/skills/release-bump && rm skill.zip

Installs to .claude/skills/release-bump

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Use when bumping ralph-orchestrator version for a new release, after fixes are committed and ready to publish
109 chars✓ has a “when” trigger
Beginner

Key capabilities

  • Sync version strings across multiple Cargo.toml files
  • Verify workspace inheritance in dependency trees
  • Execute build and test commands prior to committing
  • Generate release tags automatically

How it works

Uses search-and-replace scripts to update version definitions in both workspace and individual crate configurations before triggering CI validation.

Inputs & outputs

You give it
New version number (semver)
You get back
Updated TOML files and pushed git tag

When to use release-bump

  • Bump project version
  • Publish a new release
  • Update internal dependency versions

About this skill

Release Bump

Overview

Bump version and trigger release for ralph-orchestrator. All versions live in workspace Cargo.toml - individual crates inherit via version.workspace = true.

Confirm the new version with the user. Once the bump commit is pushed, track progress of the release.

Quick Reference

StepCommand/Action
1. Bump versionEdit Cargo.toml: replace all version = "X.Y.Z" (7 occurrences)
2. Buildcargo build (updates Cargo.lock)
3. Testcargo test
4. Commitgit add Cargo.toml Cargo.lock && git commit -m "chore: bump to vX.Y.Z"
5. Pushgit push origin main
6. Taggit tag vX.Y.Z && git push origin vX.Y.Z

Version Locations (All in Cargo.toml)

# Line ~17 - workspace version
[workspace.package]
version = "X.Y.Z"

# Lines ~113-118 - internal crate dependencies
ralph-proto = { version = "X.Y.Z", path = "crates/ralph-proto" }
ralph-core = { version = "X.Y.Z", path = "crates/ralph-core" }
ralph-adapters = { version = "X.Y.Z", path = "crates/ralph-adapters" }
ralph-tui = { version = "X.Y.Z", path = "crates/ralph-tui" }
ralph-cli = { version = "X.Y.Z", path = "crates/ralph-cli" }
ralph-bench = { version = "X.Y.Z", path = "crates/ralph-bench" }

Tip: Use Edit tool with replace_all: true on version = "OLD"version = "NEW" to update all 7 at once.

What CI Does Automatically

Once you push the tag, .github/workflows/release.yml triggers and:

  1. Creates the GitHub Release with auto-generated notes
  2. Builds binaries for macOS (arm64, x64) and Linux (arm64, x64)
  3. Uploads artifacts to the GitHub Release
  4. Publishes to crates.io (in dependency order)
  5. Publishes to npm as @ralph-orchestrator/ralph

Common Mistakes

MistakeFix
Only updating workspace.package.versionMust update all 7 occurrences including internal deps
Forgetting to run testsAlways cargo test before commit
Creating release manually with gh release createJust push the tag - CI creates the release with artifacts
Pushing tag before mainPush main first, then push the tag

When not to use it

  • During early development phases where semantic versioning is irrelevant
  • If the repository uses a non-workspace crate structure

Prerequisites

cargogit

Limitations

  • Limited to the specific ralph-orchestrator structure
  • Manual confirmation required to ensure all 7 file locations are addressed

How it compares

It enforces global project-wide consistency in versioning, specifically mitigating issues where internal workspace dependencies drift.

Compared to similar skills

release-bump side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
release-bump (this skill)15moNo flagsBeginner
release-skills23moReviewIntermediate
hula-skill37moReviewIntermediate
analyze-ci-speed16moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry