What problem does it solve?
This Skill helps you confidently verify that changes to the ZeroClash codebase still compile, pass tests, are clean under linting, and are properly formatted before you move forward.
Core Features & Use Cases
- Workspace-wide verification: Runs
cargo check, cargo test, cargo clippy, and cargo fmt -- --check across the entire workspace in a single sequence.
- Early failure workflow: Stops at the first failing step to reduce time spent diagnosing downstream errors.
- macOS GPUI patch validation: On macOS, checks whether a required GPUI patch was applied to prevent platform-specific build/runtime issues (helping with developer setup consistency).
- Use case: After updating dependencies or refactoring modules, use this to ensure the full build + quality gate still holds across the project.
Quick Start
Run the verify workflow to check the workspace status after your changes.