Release Process Skill: Use this skill when the user asks to:
Installation
$skills install @nwiizo/release
Claude Code
Cursor
Copilot
Codex
Antigravity
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
Release Process Skill
When to Use
Use this skill when the user asks to:
- Create a new release
- Publish to crates.io
- Update the version
Process
Note: Automated CI release is disabled. Use manual release process:
-
Update version in
Cargo.toml -
Run quality checks:
cargo fmt --all cargo clippy --all-targets --all-features cargo test --all-features -
Build release:
cargo build --release -
Commit and push changes
-
Create GitHub release:
gh release create v0.1.x --title "v0.1.x - Title" --notes "Release notes" -
Publish to crates.io:
cargo publish
Re-enabling Automated Release
To re-enable automated release in CI, remove false && from .github/workflows/rust.yml release job's if condition.
