| name | check-impl |
| description | Implementation verification - runs format, lint, test, and build checks on the workspace. |
| user-invocable | true |
Run implementation checks on the ccswarm workspace:
cargo fmt --all --check
cargo clippy --workspace -- -D warnings
cargo test --workspace
cargo build --workspace
Note: ccswarm uses Rust 2024 Edition. std::env::set_var requires unsafe, pattern matching has implicit borrowing.
Report results as JSON: { format, clippy: { warnings, errors }, test: { passed, failed, ignored }, build, overall }.