CLI Reference
Complete reference for the relayplane-proxy command.
Basic Usage
1relayplane-proxy [command] [options]Commands
(default)
Start the proxy server.
1relayplane-proxy2relayplane-proxy --port 30023relayplane-proxy --host 0.0.0.0stats
Show usage statistics and cost breakdown.
1relayplane-proxy statstelemetry
Manage telemetry settings.
1relayplane-proxy telemetry status # Check current setting2relayplane-proxy telemetry on # Enable telemetry3relayplane-proxy telemetry off # Disable telemetryconfig
View or modify configuration.
1relayplane-proxy config # Show current config2relayplane-proxy config set-key YOUR_API_KEY # Set API keyOptions
| Option | Default | Description |
|---|---|---|
--port | 4801 | Port to listen on |
--host | 127.0.0.1 | Host to bind to |
--offline | false | Disable all network calls except LLM endpoints |
--audit | false | Show telemetry payloads before sending |
-v, --verbose | false | Enable verbose logging |
-h, --help | - | Show help message |
--version | - | Show version number |
Examples
1# Start on custom port2relayplane-proxy --port 808034# Start with verbose logging5relayplane-proxy -v67# Start in offline mode (no telemetry)8relayplane-proxy --offline910# Audit telemetry before sending11relayplane-proxy --audit1213# Bind to all interfaces (for Docker/remote access)14relayplane-proxy --host 0.0.0.0Configuration File
Configuration is stored in ~/.relayplane/config.json:
1{2 "telemetry_enabled": true,3 "api_key": "rp_...",4 "device_id": "anon_abc123...",5 "config_version": 1,6 "created_at": "2026-01-15T10:30:00Z",7 "updated_at": "2026-01-15T10:30:00Z"8}