From all-skills
Guides Rust development: project setup, ownership, error handling, async, testing, and troubleshooting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/all-skills:rustThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Entry point for Rust development. Provides an overview and routes to focused skills.
Entry point for Rust development. Provides an overview and routes to focused skills.
Activate when:
This plugin provides focused skills for specific Rust topics:
For core language features (traits, generics, collections, pattern matching), see references/language.md.
# Install via mise
mise use rust@latest
# Create a new project
cargo new myproject
cd myproject
# Build and run
cargo run
See templates/mise.toml for project task definitions.
mut only when needednpx claudepluginhub vinnie357/claude-skills --plugin whammGuides modern Rust development with Cargo, rustc, Clippy, Rustfmt; covers ownership, borrowing, lifetimes, async Tokio, concurrency, error handling, testing, and optimization.
Guides Rust development patterns including ownership, borrow checker, async, error handling with thiserror/anyhow, and production ecosystem tools like tokio, serde, axum, sqlx.