agentskills.codes
RE

release

Check release readiness, preview changelog, and validate publishability. Use when preparing a release or checking version status.

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

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

Search skills

Search the agent skills registry