config
Initialize and manage local CLI configuration.
Pre-alpha — not production ready
@aura-protocol/cli targets Solana devnet only. APIs and commands may change without notice. Do not use for real funds until a stable release and audit are published.
aura config init
Interactive setup wizard. Prompts for RPC URL, wallet path, program ID, and
default agent ID, then writes ~/.aura/config.json.
aura config init$ aura config init
AURA :: AURA CLI - Initial Setup
? RPC URL https://api.devnet.solana.com
? Wallet path ~/.config/solana/id.json
? Program ID EaRoLVwL8EErDUeEMPHJ5QJeLVQZWJMtZcgmFzT9bhHs
? Default agent ID (optional) agent-1
✓ Config written to ~/.aura/config.jsonaura config show
Print the current resolved configuration with source for each value.
aura config show
aura config show --json$ aura config show
AURA :: Config
┌───────────────┬──────────────────────────────────────────────┬──────────┐
│ Field │ Value │ Source │
├───────────────┼──────────────────────────────────────────────┼──────────┤
│ RPC URL │ https://api.devnet.solana.com │ file │
│ Wallet │ ~/.config/solana/id.json │ file │
│ Cluster │ devnet │ default │
│ Program ID │ EaRo…bhHs │ file │
│ Default Agent │ agent-1 │ file │
└───────────────┴──────────────────────────────────────────────┴──────────┘aura config set
Set a single configuration value. Takes a key name and value as positional arguments.
aura config set rpc-url https://devnet.helius-rpc.com/?api-key=YOUR_KEY
aura config set wallet-path ~/.config/solana/id.json
aura config set program-id EaRoLVwL8EErDUeEMPHJ5QJeLVQZWJMtZcgmFzT9bhHs
aura config set default-agent-id my-agent
aura config set cluster devnet$ aura config set rpc-url <url>
✓ Updated rpcUrl in ~/.aura/config.jsonValid keys:
| Key | Description |
|---|---|
rpc-url | Solana RPC endpoint |
wallet-path | Path to keypair JSON file |
cluster | Cluster label for display purposes |
program-id | AURA program ID |
default-agent-id | Default agent ID used when --agent-id is omitted |