mirror of
https://github.com/katanemo/plano.git
synced 2026-04-24 16:26:34 +02:00
* add claude code skills and streamline CLAUDE.md * remove claude code attribution from PR skill * update pr skill
454 B
454 B
| name | description |
|---|---|
| check | Run Rust fmt, clippy, and unit tests. Use after making Rust code changes. |
Run all local checks in order:
cd crates && cargo fmt --all -- --check— if formatting fails, runcargo fmt --allto fix itcd crates && cargo clippy --locked --all-targets --all-features -- -D warnings— fix any warningscd crates && cargo test --lib— ensure all unit tests pass
Report a summary of what passed/failed.