with one click
code-review
Review code changes for quality, correctness, and style
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Review code changes for quality, correctness, and style
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Prepare a new version release with changelog and version bumps
Add a new lint rule to the validator
Guide for writing conventional commits with gitmoji
Create GitHub pull requests with clear titles and structured descriptions. Use when the user asks to open, create, or submit a pull request or PR.
Identify and fix Clippy warnings in Rust code
Run the test suite and report results
| name | code-review |
| description | Review code changes for quality, correctness, and style |
| license | MIT OR Apache-2.0 |
Review code changes in the skilo project for quality, correctness, and adherence to Rust best practices.
When reviewing code, check for:
Result and ??cargo build)cargo test)cargo clippy)cargo fmt --check)# Check for compilation errors
cargo check
# Run clippy for lints
cargo clippy -- -D warnings
# Check formatting
cargo fmt --check
# Run tests
cargo test