⚠️ This project includes production-ready security features but is still under active development. While the security system provides robust protection, please review all operations carefully in production environments. ⚠️ tfmcp is a command-line tool that helps you interact with Terraform via the Model Context Protocol (MCP). It allows LLMs to manage and operate your Terraform environments, inclu
Add this skill
npx mdskills install nwiizo/releaseClear manual release workflow with quality checks, but lacks automation and error handling details
1# Release Process Skill23## When to Use45Use this skill when the user asks to:6- Create a new release7- Publish to crates.io8- Update the version910## Process1112**Note**: Automated CI release is disabled. Use manual release process:13141. Update version in `Cargo.toml`15162. Run quality checks:17 ```bash18 cargo fmt --all19 cargo clippy --all-targets --all-features20 cargo test --all-features21 ```22233. Build release: `cargo build --release`24254. Commit and push changes26275. Create GitHub release:28 ```bash29 gh release create v0.1.x --title "v0.1.x - Title" --notes "Release notes"30 ```31326. Publish to crates.io: `cargo publish`3334## Re-enabling Automated Release3536To re-enable automated release in CI, remove `false &&` from `.github/workflows/rust.yml` release job's `if` condition.37
Full transparency — inspect the skill content before installing.