/check - Check code quality
Run code quality checks (clippy, fmt, check).
Usage
- •
/check- Run all checks (fmt, clippy, cargo check) - •
/check fix- Auto-fix formatting and clippy warnings
Instructions
When the user runs this skill:
- •
Run checks in order:
bashcargo fmt --check cargo clippy --workspace --all-targets -- -D warnings cargo check
- •
If "fix" argument is provided:
bashcargo fmt cargo clippy --fix --allow-dirty
- •
Report any issues found
- •
Suggest fixes for any remaining problems