← Back to list

code-review
by manuelmauro
Agentic AI skills management, linting, and formatting
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
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
Resultand?? - 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
- Code compiles without warnings (
cargo build) - All tests pass (
cargo test) - No Clippy warnings (
cargo clippy) - Code is formatted (
cargo fmt --check) - New public APIs are documented
- CHANGELOG is updated for user-facing changes
Example Review Commands
# Check for compilation errors
cargo check
# Run clippy for lints
cargo clippy -- -D warnings
# Check formatting
cargo fmt --check
# Run tests
cargo test
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon