From rust
Provides Rust overview, project setup with Cargo/mise, key principles like ownership/borrowing, and routes to skills on async, testing, errors.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rust: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 rustGuides Rust development: project setup, ownership, error handling, async, testing, and troubleshooting.
Guides modern Rust development with Cargo, rustc, Clippy, Rustfmt; covers ownership, borrowing, lifetimes, async Tokio, concurrency, error handling, testing, and optimization.
Writes, reviews, and debugs idiomatic Rust code with ownership patterns, lifetimes, trait hierarchies, async/tokio, and zero-cost abstractions.