en un clic
run-tests
Run the test suite and report results
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
Run the test suite and report results
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
Review code changes for quality, correctness, and style
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
| name | run-tests |
| description | Run the test suite and report results |
| license | MIT OR Apache-2.0 |
Execute the skilo test suite and analyze results.
# Run all tests
cargo test
# Run tests with output
cargo test -- --nocapture
# Run a specific test
cargo test test_name
# Run tests in a specific module
cargo test skill::validator
Tests are organized as follows:
| Location | Description |
|---|---|
src/*/tests.rs | Unit tests inline with modules |
tests/ | Integration tests |
When adding new functionality:
tempfile for tests that need filesystem accessassert_cmd for testing CLI behavior#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_example() {
assert!(true);
}
}