# Rivox Core Developer Guide
Guide for engineers contributing to the Rivox codebase.
---
## Local Setup & Build
```bash
git clone https://github.com/aaryanrwt/rivox.git
cd rivox
cargo check
cargo test
```
## Running Verification Commands
- `cargo fmt --check`: Enforce formatting compliance.
- `cargo clippy --all-targets -- -D warnings`: Enforce zero linter warnings.
- `cargo test`: Run unit tests and polyglot equivalence harness.
See [CONTRIBUTING.md](CONTRIBUTING.md) for Pull Request workflows.