AURA

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
Example output:
$ 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.json

aura config show

Print the current resolved configuration with source for each value.

aura config show
aura config show --json
Example output:
$ 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
Example output:
$ aura config set rpc-url <url>
✓ Updated rpcUrl in ~/.aura/config.json

Valid keys:

KeyDescription
rpc-urlSolana RPC endpoint
wallet-pathPath to keypair JSON file
clusterCluster label for display purposes
program-idAURA program ID
default-agent-idDefault agent ID used when --agent-id is omitted

On this page