Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

Dropdowns

Dropdowns add a <select> in the header (next to the version selector if present). Use them for multi-product documentation or section switching.

Basic setup

{ "navigation": { "dropdowns": [ { "dropdown": "Platform", "tabs": [ { "tab": "Docs", "groups": [ { "group": "Overview", "pages": ["platform/index"] } ] } ] }, { "dropdown": "CLI", "tabs": [ { "tab": "Docs", "groups": [ { "group": "Overview", "pages": ["cli/index"] } ] } ] } ] } }

Link-only dropdowns

A dropdown entry can be a link instead of a content switcher:
{ "dropdown": "Changelog", "href": "https://example.com/changelog" }
Selecting it opens the URL instead of switching sidebar content.

Products

The products field is an alias for dropdowns. It is normalized into dropdowns at config time:
{ "navigation": { "products": [ { "product": "Platform", "description": "Main product docs", "icon": "layers", "groups": [...] } ] } }

Dropdown fields

FieldTypeDescription
dropdownstringDisplay name in the selector
iconstringIcon next to the name
hiddenbooleanHide from the selector
hrefstringLink-only mode, navigates to URL
tabsarrayTabs within this dropdown
groupsarrayGroups within this dropdown
pagesarrayFlat pages within this dropdown