What problem does it solve? The user-help-docs package renders the /docs help site inside qwksearch-web, but it cannot use fumadocs-mdx's standard codegen pipeline because the host deploys to Cloudflare Workers, where filesystem scans and runtime code generation are unavailable. This Skill explains the import.meta.glob architecture, the build-time MDX plugin, and the host-side wiring needed to keep /docs working. ## Core Features & Use Cases - Content management: Add or reorder help pages by creating MDX files in content/docs and registering slugs in meta.json, which controls ordering. - Build integration: Register helpDocsMdxPlugin() in the host's Vite and Vitest configs so MDX compiles at bundle time instead of request time. - Styling and search wiring: Configure the host's Tailwind entry with fumadocs-ui imports and @source directives, and mount searchServer at the route named by docsConfig.searchApi. - Use Case: When /docs renders as one unstyled column with no sidebar, diagnose the missing @source for fumadocs-ui/dist in the host's Tailwind entry rather than changing content. ## Quick Start Add a new help page to the /docs site and make sure it appears in the correct position in the navigation.