| name | code-review |
| description | Review code changes for quality, correctness, and style |
| license | MIT OR Apache-2.0 |
Code Review
Review code changes in the skilo project for quality, correctness, and adherence to Rust best practices.
Guidelines
When reviewing code, check for:
- Correctness - Does the code do what it's supposed to do?
- Error handling - Are errors handled appropriately using
Result and ??
- Idiomatic Rust - Does the code follow Rust conventions?
- Performance - Are there any obvious performance issues?
- Documentation - Are public APIs documented?
- Tests - Are there adequate tests for new functionality?
Checklist
Example Review Commands
cargo check
cargo clippy -- -D warnings
cargo fmt --check
cargo test