AgentOnboard Docs
CLI Reference

aon directory

Explore the AgentOnboard partner directory with aon directory list and aon directory get

aon directory

Explore the AgentOnboard partner directory from the terminal. The directory lists partners you can connect your agents to, each with a slug you can use to fetch full details and API documentation.

Commands

CommandDescription
aon directory listList all partners in the directory
aon directory get <slug>Show details and API docs for one partner
aon directory --jsonShorthand for aon directory list --json

directory list

List every active partner:

aon directory list

This shows a table with each partner's name, slug, and a short description. When the directory is empty it prints No partners listed in the directory.

directory get <slug>

Show one partner's full details and API documentation:

aon directory get acme-widgets

This prints the partner's name, slug, description, and its API documentation when available.

--json

All directory commands accept --json for machine-readable output. With --json, the CLI prints the raw JSON response instead of the human table — useful for scripting.

aon directory list --json
aon directory get acme-widgets --json

Both forms print valid JSON. aon directory --json is exactly equivalent to aon directory list --json.

Machine-readable output

Use --json when you want to feed directory data into a script or tool instead of the formatted table.

  • aon config — how the API URL these commands use is configured
  • aon token get — get a session token to call a partner API
  • aon doctor — verify the API is reachable

Next steps

On this page