Source for docs.dust.tt, built with Mintlify.
docs.json: site configuration and navigationindex.mdx: homepagedocs/user-documentation/: product documentation (getting started, agents, data sources, admins)docs/developer-platform/: developer platform docs and API reference (auto-generated fromdocs/developer-platform/dust-api-documentation/openapi.json)docs/changelog.mdx: product changelogbranding/: logos and favicon
Install the Mintlify CLI and run the local preview from the repo root:
npm i -g mint
mint devThe preview runs at http://localhost:3000.
- Pages are MDX with YAML frontmatter (
title,description); no H1 in the body - Internal links are root-relative, without the
.mdxextension (e.g./docs/user-documentation/agents/tools/notion) - API reference links use
/api-reference/{tag}/{endpoint-slug}(pages are generated at deploy time) - No UI screenshots (see decision #765)
- Callouts use Mintlify components:
<Info>,<Tip>,<Warning>,<Note>,<Check>,<Danger>
mint dev # parses all pages, catches MDX errors
lychee --offline --root-dir "$(pwd)" --fallback-extensions mdx 'docs/**/*.mdx' index.mdx # internal linksPushes to main trigger a Mintlify deployment automatically.