一键导入
prepare-release
Prepare a new version release with changelog and version bumps
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Prepare a new version release with changelog and version bumps
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| 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
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