Source of docs.voight.xyz — built with Mintlify.
Every page is an .mdx file (Markdown + JSX). Edit any page with any text editor, commit, push — Mintlify auto-deploys within ~30 seconds.
Find the file matching the URL:
| URL | File |
|---|---|
docs.voight.xyz/ |
introduction.mdx |
docs.voight.xyz/quickstart |
quickstart.mdx |
docs.voight.xyz/concepts/agents |
concepts/agents.mdx |
docs.voight.xyz/privacy/overview |
privacy/overview.mdx |
| (etc.) | (mirrors the folder structure) |
Make changes, commit:
git add -p
git commit -m "docs: tweak quickstart wording"
git pushMintlify deploys automatically.
-
Create
your-new-page.mdxanywhere (root or inside a folder) -
Add the frontmatter at the top:
--- title: Your page title description: "Short description for SEO / search." --- Page content here.
-
Add it to
mint.jsonnavigationarray so it shows in the sidebar:{ "group": "Resources", "pages": ["pricing", "changelog", "your-new-page"] } -
Commit + push.
Edit mint.json navigation array. Each object has a group (the section header) and a pages array.
Edit mint.json colors block. Hex values supported. Mintlify uses primary for buttons + headings, light and dark for hover/active states.
npm install -g mintlify
cd /path/to/this/repo
mintlify dev
# Opens http://localhost:3000Live-reloads on file changes. Useful for big edits before pushing.
voight-docs/
├── mint.json ← Mintlify config — colors, navigation, branding
├── favicon.svg ← Browser tab icon
├── logo/
│ ├── light.svg ← Logo for light theme
│ └── dark.svg ← Logo for dark theme
├── images/ ← Inline images referenced from MDX
├── introduction.mdx ← Homepage at docs.voight.xyz/
├── quickstart.mdx
├── concepts/ ← What an agent / event / trace / session is
├── privacy/ ← The 3-level privacy model, PII patterns, data handling
├── sdk/ ← Claude Code / library / HTTP integration guides
├── api-reference/ ← Endpoint specs for /v1/events, /v1/agents, /v1/me/*
├── pricing.mdx
└── changelog.mdx
This repo is connected to Mintlify's free tier via GitHub. Pushing to main auto-deploys to docs.voight.xyz.
- Create the GitHub repo
voightxyz/voight-docs - Push this folder
- Sign in to mintlify.com with GitHub
- Install the Mintlify GitHub app on the
voightxyz/voight-docsrepo - Mintlify auto-detects
mint.jsonand starts deploying - In Mintlify dashboard → Settings → Custom Domain → add
docs.voight.xyz - In your DNS provider → add a CNAME
docs → cname.vercel-dns.com(or whatever Mintlify gives you) - Wait 5-10 min for SSL provisioning
Just commit + push. Mintlify deploys automatically. If something breaks, check Mintlify's dashboard for build logs.
The Voight product is proprietary. The docs content is published publicly at docs.voight.xyz but the source in this repo follows the same license as the rest of Voight.