| 1 | --- |
| 2 | name: rust-check |
| 3 | description: Run cargo check on the current Rust project to find compile errors |
| 4 | --- |
| 5 | |
| 6 | Use this skill when you need to check for Rust compile errors. |
| 7 | |
| 8 | **How to use:** |
| 9 | 1. Run `cargo check` in the project root |
| 10 | 2. Analyze the output for errors and warnings |
| 11 | 3. Fix any issues found |
| 12 | |
| 13 | **Example:** |
| 14 | ```bash |
| 15 | cargo check --all-targets |
| 16 | ``` |
| 17 | |
| 18 | This skill is part of the rust-toolkit plugin. |