What problem does it solve?
This Skill helps Rust developers enforce code quality by running clippy, applying strict comment punctuation rules, formatting with cargo fmt, and validating module organization patterns. This ensures a consistent, clean codebase across crates and commits.
Core Features & Use Cases
- Clippy linting: Run cargo clippy across all targets to surface correctness, performance, style, and complexity issues.
- Comment punctuation enforcement: Apply documented punctuation rules to all comments to improve readability and consistency.
- Code formatting: Run cargo fmt across the workspace to enforce formatting consistency.
- Module organization checks: Validate module layout patterns to maintain a clean public API and documentation.
- Use Case: Before committing changes to a multi-crate Rust project, run this skill to auto-detect and fix style issues, produce a clean commit-ready state.
Quick Start
Use the run-clippy skill to lint and format the current workspace. It will apply clippy, formatting, and organization checks and report any issues detected.