The command-line utilities that keep the wiki honest โ validators, drift, RAG indexing, the demo and the export bundler, all one make target away.
One entry point for everything (run from automation/).
| Target | What it does | Command |
|---|---|---|
| sync | install/refresh deps with uv | make sync |
| demo | run the end-to-end pipeline on fixtures | make demo |
| test | run the unit test suite (pytest) | make test |
| validate | front-matter + link validators over the wiki | make validate |
| rag-demo | chunk the wiki, write a mock AI Search payload | make rag-demo |
| drift | print the documentation drift report (Teams-ready) | make drift |
| serve | run the auto-docs flow HTTP API (console at /) | make serve |
Three CI gates that fail the build before bad docs merge.
The scripts behind drift, RAG indexing, the demo and offline sharing.
Copy-paste from the repo root and watch it work.
cd automation make test # 27 tests, all green make demo # see a page drafted end-to-end make validate # front-matter + links across the wiki make drift # what's drifted from source
Neighbouring sections of the workspace.