aon config
Manage AgentOnboard CLI configuration — show, get, set, and reset apiUrl
aon config
Inspect and manage the AgentOnboard CLI's configuration. The only config key today is apiUrl — the API base URL the CLI talks to.
Commands
| Command | Description |
|---|---|
aon config | Show the current configuration (same as aon config show) |
aon config show | Show the current configuration |
aon config get <k> | Get a single config value |
aon config set <k> <v> | Set a config value |
aon config reset <k> | Reset a config value to its default |
config show
Show the current configuration:
aon configThe CLI prints the effective apiUrl and where it comes from, so you can tell whether you are using the default or a value you set.
The default apiUrl
Unless you have set one, the CLI uses the default AgentOnboard API at https://api.ao.aawej.in.
config get <k>
Get a single resolved value:
aon config get apiUrlThis prints just the value. An unknown key prints an error and exits non-zero.
config set <k> <v>
Set a config value:
aon config set apiUrl http://localhost:3001This stores the value on your machine in ~/.agentonboard/.
Only apiUrl is valid
The only supported config key is apiUrl. Setting any other key fails, and config set needs both a key and a value.
config reset <k>
Remove a config value so it falls back to the default:
aon config reset apiUrlAfter resetting apiUrl, the CLI goes back to the default API.
Related
aon doctor— checks your config is validaon token get— talks to the configured APIaon directory— uses the configured API