From rust
Guides Rust development with overview, quick start, and pointers to focused skills for ownership, error handling, async, testing, CLI, and more.
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 neededThis skill follows core:anti-fabrication. Every claim about Rust language behavior, the
standard library, and tooling commands is verified against the official documentation cited
in sources.md — not inferred from generic familiarity with the language. Before asserting a
language feature, API signature, or command behavior this skill and its references do not
cover, check the installed Rust toolchain's documentation (rustup doc) or crates.io rather
than guessing.
2plugins reuse this skill
First indexed Jul 19, 2026
npx claudepluginhub vinnie357/claude-skills --plugin rustGuides Rust development with overview, quick start, and pointers to focused skills for ownership, error handling, async, testing, CLI, and more.
Guides modern Rust development with Cargo, rustc, Clippy, Rustfmt; covers ownership, borrowing, lifetimes, async Tokio, concurrency, error handling, testing, and optimization.
Guides Rust language patterns: ownership, lifetimes, error handling with thiserror/anyhow, async Tokio, traits, testing, clippy, and rustdoc. Use when writing or reviewing Rust code.