Check

Run Rust fmt, clippy, and unit tests. Use after making Rust code changes.

katanemo 4d2427e 454 B Updated

File contents

Run all local checks in order:

  1. cd crates && cargo fmt --all -- --check — if formatting fails, run cargo fmt --all to fix it
  2. cd crates && cargo clippy --locked --all-targets --all-features -- -D warnings — fix any warnings
  3. cd crates && cargo test --lib — ensure all unit tests pass

Report a summary of what passed/failed.

katanemo/plano/tree/main/.claude/skills/check commit 4d2427e2ca

Frequently asked questions

npx skillmds@latest add katanemo/check