rivox 1.0.0

Universal polyglot build coordination layer for Python, Rust, and Node monorepos
Documentation
# Rivox CLI Reference

Rivox V1 provides four explicit CLI commands.

---

## Commands

### `rivox build`
Coordinate and execute build across declared monorepo ecosystems.
```bash
rivox build [--target <service>] [--frozen] [--offline] [--no-sandbox]
```

### `rivox cache`
Manage and inspect Content-Addressed Storage (CAS) cache.
```bash
rivox cache status
rivox cache prune --days 30
rivox cache export --destination archive.tar.gz
```

### `rivox verify`
Verify `rivox.lock` content hashes, native lockfile parity, and provenance signatures.
```bash
rivox verify [--manifest-path rivox.toml] [--lockfile-path rivox.lock]
```

### `rivox completions`
Generate shell completion scripts.
```bash
rivox completions bash > /etc/bash_completion.d/rivox
rivox completions zsh > ~/.zsh/completion/_rivox
rivox completions fish > ~/.config/fish/completions/rivox.fish
```

See also: [configuration.md](configuration.md), [build-system.md](build-system.md).