con un clic
code-review
Review code changes for quality, correctness, and style
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Review code changes for quality, correctness, and style
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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