| title | Architecture Map | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| sidebarTitle | Architecture Map | ||||||||
| description | Internal systems map for how content, tooling, validation, and automation interact | ||||||||
| keywords |
|
This is an internal systems map for how content, tooling, validation, and automation interact.
- Content source:
v2/pages/**,snippets/**,docs.json - Runtime UX: Mintlify dev/build + hosted docs deployment
- Local operator tooling:
lpd,.githooks/*,tools/scripts/*,tests/* - CI/automation:
.github/workflows/*,.github/scripts/*,snippets/automations/* - Governance docs:
README.md,docs-guide/*,contribute/CONTRIBUTING/*
flowchart TD
A["Author edits content (v2/pages, snippets)"] --> B["Local commands (lpd dev, lpd test)"]
B --> C["Pre-commit checks (.githooks/pre-commit)"]
C --> D["Unit + integration validation (tests/*)"]
D --> E["Index and metadata sync (tools/scripts/*)"]
E --> F["Pull request + CI workflows (.github/workflows)"]
F --> G["Deployment + runtime docs experience"]
H["External sources (forum/blog/youtube/releases)"] --> I["Automation scripts/workflows"]
I --> J["Generated data in snippets/automations + snippets/data"]
J --> A
- Markdown/MDX pages and snippets are the editable content primitives.
docs.jsondefines navigation and routing context.
lpdorchestrates setup/dev/tests/hooks/scripts.- Pre-commit hook runs fast safety gates and staged audits.
- Test runners validate style, MDX, links/imports, quality, docs navigation, and script docs.
- Workflows run changed-file quality checks and browser checks for PRs.
- Scheduled/manual workflows refresh external data and supporting assets.
- Template and intake workflows enforce issue/PR quality and labeling.
docs-guide/defines internal navigation source of truth.README.mdprovides high-level orientation and points to canonical docs-guide pages.
- Script metadata contract:
- Script headers -> script index generation -> docs-guide scripts catalog.
- Workflow/template contract:
.github/workflows/*+.github/ISSUE_TEMPLATE/*-> docs-guide generated indexes.
- Content validity contract:
- Content changes -> hooks/tests -> CI -> deployable docs.