| name | verify |
| description | Run full verification suite — Rust build, clippy, tests, and TypeScript type checking. Use after implementing features or before marking work complete. |
Run the following verification steps in order. Stop at the first failure and report the error.
-
Rust build check:
rtk cargo check 2>&1
-
Rust clippy lint:
rtk cargo clippy -- -D warnings 2>&1
-
Rust tests:
rtk cargo test 2>&1
-
TypeScript type check (desktop frontend):
cd crates/locus-desktop && npx tsc --noEmit 2>&1
-
Prettier format check (desktop frontend):
cd crates/locus-desktop && npx prettier --check "src/**/*.{ts,tsx,css}" 2>&1
Report results as a checklist:
If all pass, confirm verification succeeded. If any fail, show the error output and suggest fixes.