RE

Pre-release validation tool for checking commits, versions, and publish dry-runs in Cargo projects.

Install

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

Installs to .claude/skills/release-k1-c

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.

Check release readiness, preview changelog, and validate publishability. Use when preparing a release or checking version status.
129 chars✓ has a “when” trigger
Beginner

Key capabilities

  • Report the current version from `Cargo.toml`
  • List existing Git tags
  • Show unreleased commits since the last tag
  • Validate recent commits against conventional commit format
  • Preview the next changelog entry using `git-cliff`
  • Perform a dry-run of `cargo publish` to verify publishability

How it works

The skill executes a series of Git and Cargo commands to assess the readiness of a Rust project for release, checking versioning, commit history, changelog generation, and package publishability.

Inputs & outputs

You give it
Rust project repository
You get back
Summary of release readiness including current version, commit count, suggested next version, and dry-run result

When to use release

  • Checking release readiness
  • Validating conventional commits
  • Dry-run testing for package publishing

About this skill

Release Check

Run the following checks to validate release readiness:

Steps

  1. Current version: Read Cargo.toml and report the current version
  2. Git tag check: Run git tag --list 'v*' --sort=-version:refSort to see existing tags
  3. Unreleased commits: Run git log $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~10)..HEAD --oneline --no-decorate to show commits since last tag
  4. Conventional commit validation: Check that recent commits follow conventional commit format (feat:, fix:, docs:, etc.)
  5. Changelog preview: If git-cliff is available, run git-cliff --unreleased to preview the next changelog entry. Otherwise, summarize commits manually.
  6. Publish dry-run: Run cargo publish --dry-run 2>&1 to verify the package is publishable

Output

Report a summary:

  • Current version: x.y.z
  • Commits since last release: N
  • Suggested next version based on conventional commits (patch/minor/major)
  • Any issues found (missing fields, build errors, etc.)
  • Dry-run result (pass/fail)

Notes

  • The actual release process is automated via release-plz (GitHub Actions)
  • This skill is for local validation before pushing to main
  • To publish: push conventional commits to main, release-plz will create a release PR

When not to use it

  • When the project is not a Rust package
  • When the release process is fully automated and no manual checks are needed
  • When the user wants to publish directly without validation

Limitations

  • Assumes a Rust project with `Cargo.toml`
  • Relies on `git-cliff` for changelog preview if available
  • The actual release process is automated via release-plz (GitHub Actions)

How it compares

This skill provides a specific pre-release checklist for Rust projects using conventional commits and Cargo, offering a structured validation process before pushing to main, unlike a general CI/CD pipeline.

Compared to similar skills

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

SkillInstallsUpdatedSafetyDifficulty
release (this skill)05moNo flagsBeginner
release-skills23moReviewIntermediate
icn-shipping06moNo flagsIntermediate
ci-pr-helper07moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry