CLI reference
Script sealed builds, audits, and settlement from your terminal or CI pipeline.
The ArxCode CLI drives the platform from your terminal or CI. It handles client-side encryption transparently, so you work with plain paths and prompts while only ciphertext leaves your machine.
Install
pnpm add -g arxcode
arxcode --version
Authentication
arxcode login --wallet # interactive, signs with your wallet
arxcode whoami # show the connected address
For CI, provide a signing key via ARX_WALLET_KEY instead of an interactive login.
Common commands
| Command | Description |
|---|---|
arxcode build "<goal>" --repo <path> | Run a sealed Studio build |
arxcode audit <path> | Run a sealed security review |
arxcode docs <path> | Generate documentation |
arxcode balance | Show $ARX balance and rate tier |
arxcode builds | List recent builds and their status |
Budgets
Cap spend on any build so it stops before exceeding a ceiling:
arxcode build "Refactor the auth module" --repo . --budget 10
CI-ready
Set ARX_WALLET_KEY in your CI secrets to run builds and audits without an interactive login.