ワンクリックで
cargo-quality
Run all Rust quality checks (fmt, clippy, test, bench). Use before committing or when validating code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run all Rust quality checks (fmt, clippy, test, bench). Use before committing or when validating code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run and analyze performance benchmarks. Use when working on performance-critical code or comparing changes.
Look up Rust crate documentation in Markdown format from target/doc-md/.
Upgrade Rust dependencies one at a time using cargo outdated. Analyzes impact, checks for API changes, and produces a recommendation before upgrading.
Prepare a pull request with quality checks, commit, and PR creation. Use when ready to submit changes for review.
Run security audit on dependencies and review code for vulnerabilities. Use before releases or when updating dependencies.
| name | cargo-quality |
| description | Run all Rust quality checks (fmt, clippy, test, bench). Use before committing or when validating code changes. |
Run the full quality gate required by this project.
bash .github/scripts/local-ci.sh
This runs the same gates as .github/workflows/ci.yml: fmt, clippy, build,
test, a bench compile-check, and cargo doc.
# 1. Format code
cargo fmt --all -- --check
# 2. Clippy (all targets, all features, warnings denied)
cargo clippy --all-targets --all-features -- -D warnings
# 3. Run the full test suite
cargo test --all-targets --locked
# 4. Compile benchmarks (catches benchmark build errors)
cargo bench --no-run
# 5. Build documentation
cargo doc --no-deps