with one click
prepare-release
Prepare a new version release with changelog and version bumps
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Prepare a new version release with changelog and version bumps
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Add a new lint rule to the validator
Review code changes for quality, correctness, and style
Guide for writing conventional commits with gitmoji
Create GitHub pull requests with clear titles and structured descriptions. Use when the user asks to open, create, or submit a pull request or PR.
Identify and fix Clippy warnings in Rust code
Run the test suite and report results
| name | prepare-release |
| description | Prepare a new version release with changelog and version bumps |
| license | MIT OR Apache-2.0 |
Steps to prepare a new skilo release.
Cargo.tomlCargo.lockCHANGELOG.md.github/SECURITY.mdCargo.lock)Update version in Cargo.toml:
[package]
version = "X.Y.Z"
After updating Cargo.toml, run cargo check to update Cargo.lock:
cargo check
Follow Keep a Changelog format:
## [X.Y.Z] - YYYY-MM-DD
### Added
- New features
### Changed
- Changes to existing functionality
### Fixed
- Bug fixes
Search for hardcoded version numbers in documentation and update them:
# Find version references (e.g., skilo@0.3.0, v0.3.0)
rg "skilo@\d+\.\d+\.\d+" --type md
rg "v\d+\.\d+\.\d+" README.md
Common locations:
README.md - CI example (cargo install skilo@X.Y.Z).github/SECURITY.md declares which release series receives security fixes.
Bump its Supported Versions table so the new minor series is marked
supported and any series that is no longer maintained is dropped:
| Version | Supported |
| ------- | ------------------ |
| 0.11.x | :white_check_mark: |
| < 0.11 | :x: |
# Verify everything passes
cargo test && cargo clippy
# Commit release changes
git add -A
git commit -m "chore: release vX.Y.Z"
# Create annotated tag
git tag -a vX.Y.Z -m "Release vX.Y.Z"
# Push with tags
git push && git push --tags
# Dry run first
cargo publish --dry-run
# Publish
cargo publish