brand_list

List your organization's brands as slug + name + description, so an agent can pick one before loading its context.

Lists every Brand in your organization as slug, name and description. The brand context itself is not returned — pick one here, then load it with brand_get.

That split is deliberate: brand context is prose, and returning all of it for every brand would crowd out the rest of the conversation.

Input

None.

Output

An array of { slug, name, description }, ordered by name. Deleted brands are excluded.

Example

“Which brands do we have set up?”

brand_list();
// → [{ slug: 'acme-running', name: 'Acme Running', description: 'DTC running shoes.' }]

Requires the brand:read scope.