What problem does it solve?
This Skill provides a comprehensive set of guidelines and commands to ensure efficient, safe, and maintainable Rust project development, covering everything from linting and testing to error handling and documentation.
Core Features & Use Cases
- Standardized Tooling: Integrates essential Rust tools like Clippy, rustfmt, and cargo for consistent code quality.
- Best Practice Enforcement: Details requirements for trait implementations, error handling patterns (thiserror/anyhow), memory safety, and module organization.
- Testing & Documentation: Outlines strategies for unit and integration testing, along with documentation standards for public APIs.
- Use Case: When starting a new Rust project or onboarding a new developer, this Skill serves as a definitive guide to setting up the project correctly and adhering to idiomatic Rust practices.
Quick Start
Run cargo fmt --check && cargo clippy -- -D warnings && cargo test to validate your Rust code.