What problem does it solve?
This Skill helps developers write, review, and refactor Rust code with fewer bugs, better performance, and stronger consistency across ownership, error handling, testing, and documentation.
Core Features & Use Cases
- Idiomatic Rust Guidance: Recommends borrowing over cloning, appropriate ownership patterns, iterator usage, and clean import organization.
- Safety and Reliability: Encourages Result-based error handling, avoids panic-prone production code, and documents panics, errors, and unsafe sections clearly.
- Performance and Maintainability: Highlights Clippy lint discipline, benchmarking habits, dispatch trade-offs, type-state patterns, and test design best practices.
- Use Case: A team can use this Skill during code review to catch redundant clones, missing error context, weak tests, and documentation gaps before merging Rust changes.
Quick Start
Ask this skill to review my Rust code for idiomatic ownership, performance, error handling, lint issues, and test coverage recommendations.