AgentOnboard Docs
CLI Reference

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

CommandDescription
aon configShow the current configuration (same as aon config show)
aon config showShow 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 config

The 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 apiUrl

This 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:3001

This 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 apiUrl

After resetting apiUrl, the CLI goes back to the default API.

Next steps

On this page