en un clic
code-review
Review code changes for quality, correctness, and style
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Review code changes for quality, correctness, and style
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
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