Reference
The pages that the build pipeline keeps in sync with the source code, plus the architecture and env-var compendiums.
| Page | What it covers | Source |
|---|---|---|
| Architecture | Layered breakdown — engines, runtime, intelligence, API, MCP. | Hand-written. |
| Environment variables | Every MNEXUS_* knob, table form. | Mirrors Getting started → Environment. |
| CLI | Every mnexus <subcommand> and its flags. | Generated from the Click command tree at build time. |
| REPL slash commands | Every /<command> in the interactive REPL. | Generated from SLASH_COMMANDS at build time. |
| HTTP API | All 136+ FastAPI endpoints, grouped by URL prefix. | Generated from the FastAPI OpenAPI schema at build time. |
The generator is docs-site/scripts/gen_reference.py. Run it locally:
cd docs-site
npm run dev # predev hook runs the generator automaticallyOr, manually:
python3 docs-site/scripts/gen_reference.pyIf a flag or endpoint isn’t in the reference, it doesn’t exist — either add it to the source or stop looking.