This documentation site is English-only. The URL structure uses the /en/ prefix so that additional languages can be added later (e.g. /es/, /fr/) without changing existing links.
docs/
├── .vitepress/
│ └── config.js # VitePress configuration
├── en/ # English documentation
│ ├── index.md
│ ├── docs.md
│ ├── contact.md
│ ├── getting-started/
│ ├── CLI/
│ ├── plugins/
│ ├── rules/
│ └── architecture/ # (if present)
└── public/ # Shared assets
npm run devSite: http://localhost:5173/en/
npm run build
npm run previewAdd markdown files under docs/en/ in the appropriate section. Update the sidebar in docs/.vitepress/config.js (see sidebarEn).