cargo-check

star 0

Run full Rust workspace validation — clippy lints and nextest — and summarize results. Use this skill whenever the user says "check", "validate", "run tests", "clippy", "lint", or wants to verify the workspace compiles and passes tests. Also use after completing any Rust code changes to verify correctness.

FrancisVarga By FrancisVarga schedule Updated 2/22/2026

name: cargo-check description: >- Run full Rust workspace validation — clippy lints and nextest — and summarize results. Use this skill whenever the user says "check", "validate", "run tests", "clippy", "lint", or wants to verify the workspace compiles and passes tests. Also use after completing any Rust code changes to verify correctness. user-invocable: true

Cargo Check — Full Workspace Validation

Run clippy and nextest across the entire stupid-db Rust workspace. Summarize pass/fail status for each step.

Steps

  1. Clippy — Run cargo clippy --workspace --all-targets -- -D warnings to catch lint issues
  2. Nextest — Run cargo nextest run --workspace for all tests with parallel per-process isolation
  3. Summary — Report pass/fail counts, list any failing tests or clippy warnings

Rules

  • Use cargo nextest run — never plain cargo test
  • If clippy fails, list the specific warnings with file:line locations
  • If tests fail, show the test name and failure reason (first 10 lines of output)
  • Do NOT auto-fix anything — this skill is diagnostic only
  • Run clippy and nextest sequentially (clippy first, to catch compile errors early)
Install via CLI
npx skills add https://github.com/FrancisVarga/stupid-db --skill cargo-check
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator
FrancisVarga
FrancisVarga Explore all skills →