rivox 1.0.0

Universal polyglot build coordination layer for Python, Rust, and Node monorepos
Documentation
# 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.