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.zipInstalls 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
- Current version: Read
Cargo.tomland report the current version - Git tag check: Run
git tag --list 'v*' --sort=-version:refSortto see existing tags - Unreleased commits: Run
git log $(git describe --tags --abbrev=0 2>/dev/null || echo HEAD~10)..HEAD --oneline --no-decorateto show commits since last tag - Conventional commit validation: Check that recent commits follow conventional commit format (feat:, fix:, docs:, etc.)
- Changelog preview: If
git-cliffis available, rungit-cliff --unreleasedto preview the next changelog entry. Otherwise, summarize commits manually. - Publish dry-run: Run
cargo publish --dry-run 2>&1to 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