Presubmit and Cargo commands execute programs controlled by the checked-out repository
Source references: 2`./script/presubmit` directly executes a repository script. Cargo tests can also compile and run project tests, build scripts, and related tooling. The supplied material does not include the presubmit script, so its exact actions cannot be confirmed in this audit.
If the Skill is used in an untrusted or tampered checkout, those commands could use the agent's existing permissions to read or change accessible files, use credentials present in the environment, or fetch dependencies. There is no evidence here that this has occurred.
These are live operational instructions, not warnings. `./script/presubmit` executes a repository-supplied script whose contents are absent, so this audit cannot determine what it reads, changes, or contacts; Cargo tests also compile and run project code. A user can ask the author to disclose and explain the script, or permit execution only after review and in isolation.
Run all presubmit checks at once:```bash./script/presubmit```This runs formatting, linting, and all tests. If it passes, you're ready to open a PR.Show 1 other places
**All tests:**```bashcargo nextest run --no-fail-fast --workspace --exclude command-signatures-v2cargo nextest run -p warp_completer --features v2```