Add the Docusaurus viewer
A Lore project can start as Markdown only and gain a browsable website later. /lore:add-docusaurus does exactly that.
/lore:add-docusaurus
What it does
- Checks preconditions — you need a network connection, and the project must be docs-only (it has documentation but no viewer yet).
- Fetches the latest Docusaurus. The framework itself is pulled fresh with
create-docusaurus@latest— it is never bundled, so you always get the current release. - Imports the framework and discards the samples (the starter docs, blog, and pages) so they don't collide with your content.
- Overlays the Lore configuration and styling, including the RTL layer and self-hosted Persian font when your documentation language is right-to-left.
- Asks where the site will be deployed. That address becomes the origin of every canonical link and every entry in
sitemap.xml. If you don't know yet, say so — it fills inhttp://localhost:3000, which is obviously provisional, and tells you to change it before your first deploy. It never leaves a plausible-looking example domain in place, because that publishes a sitemap for an address nobody owns and nothing complains. - Wires the sidebar to mirror your existing
docs/tree, then installs, builds, and points you at the preview.
Result
A Docusaurus site wired to your existing docs, ready to preview:
npm start # dev server at http://localhost:3000
npm run build # production build — must pass before delivery
npm run serve # preview the production build
The production build is configured to fail on a broken link, not warn about one. The Definition of Done treats this build as its authoritative link check, and a warning gates nothing — so a site could go green with dead links in it while the documentation promised the opposite.
:::tip Keeping Docusaurus up to date
Because the viewer is a normal npm project, Docusaurus is a versioned dependency in its package.json. Update it deliberately with npm update (minor/patch) or by bumping @docusaurus/* and running npm install for a major, then re-running the build.
:::