@dogsbay/format-astro 0.2.0-beta.7 → 0.2.0-beta.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/project.js CHANGED
@@ -4,14 +4,29 @@
4
4
  * Takes ExportPage[] + NavItem[] and generates a complete Astro project
5
5
  * with static .astro pages using real Dogsbay components.
6
6
  */
7
- import { existsSync, mkdirSync, writeFileSync, readFileSync, cpSync, readdirSync, statSync, } from "node:fs";
7
+ import { existsSync, mkdirSync, writeFileSync, readFileSync, copyFileSync, cpSync, readdirSync, statSync, } from "node:fs";
8
8
  import { join, dirname, relative, resolve } from "node:path";
9
9
  import { fileURLToPath } from "node:url";
10
10
  import { treeToDogsbayMd } from "@dogsbay/format-dogsbay-md";
11
- import { treeToAstro } from "./serialize.js";
11
+ import { treeToAstro, TONE_CLASSES } from "./serialize.js";
12
12
  import { buildLlmsTxt, buildSectionLlmsTxt, buildLlmsFullTxt } from "./llms-txt.js";
13
- import { normalizeBasePath, basePathSegments, buildCurrentPath } from "./base-path.js";
14
- import { detectLeadingNodes } from "./lead.js";
13
+ import { buildSitemap, buildSitemapIndex } from "./sitemap.js";
14
+ import { normalizeBasePath, basePathSegments, buildCurrentPath, withBasePath, parseSiteUrl, combinePrefix, } from "./base-path.js";
15
+ /**
16
+ * Combined URL prefix = urlBase (Astro `base` from site.url path) +
17
+ * basePath (filesystem layout prefix). Every URL emitter (nav,
18
+ * sitemap, llms.txt, .md mirror, _headers, taxonomy) uses this for
19
+ * href output. Filesystem-layout consumers (mkdir, page output
20
+ * paths) keep using basePath alone — Astro's `base` config adds the
21
+ * urlBase prefix at route time.
22
+ *
23
+ * See plans/astro-base-from-site-url.md.
24
+ */
25
+ function combinedPrefix(options) {
26
+ const { urlBase } = parseSiteUrl(options.siteUrl);
27
+ return combinePrefix(urlBase, normalizeBasePath(options.basePath));
28
+ }
29
+ import { detectLeadingNodes, deriveDescription } from "./lead.js";
15
30
  /**
16
31
  * Recursively prefix all hrefs in a nav tree.
17
32
  * Turns `<basePath>/foo` into `<basePath>/{section}/foo`. The
@@ -97,6 +112,55 @@ function rewriteHref(href, prefix) {
97
112
  return href;
98
113
  return prefix + href;
99
114
  }
115
+ /**
116
+ * Rewrite image srcs in inline nodes + raw HTML to include the
117
+ * combined URL prefix.
118
+ *
119
+ * Astro auto-prefixes `<a href>` and image imports going through
120
+ * `<AstroImage>`, but raw `<img src="...">` HTML in template
121
+ * output is left untouched. The serializer emits raw `<img>` for
122
+ * inline images and falls back to it for non-optimized block
123
+ * images, so we have to prefix manually before serialization to
124
+ * make `/_assets/...` paths resolve under subpath-mounted deploys
125
+ * (GH Pages project pages, multi-mount Cloudflare).
126
+ *
127
+ * Symmetric with rewriteTreeHrefs — same skip-rules (external,
128
+ * anchors, already-prefixed). Block images keep their prefix
129
+ * stripped back off for the `imageMap[...]` lookup key (see
130
+ * paragraphToAstro in serialize.ts) so Astro's image optimization
131
+ * still finds the source.
132
+ */
133
+ function rewriteTreeImageSrcs(nodes, prefix) {
134
+ for (const node of nodes) {
135
+ if (node.inline) {
136
+ rewriteInlineImageSrcs(node.inline, prefix);
137
+ }
138
+ if (node.html) {
139
+ node.html = rewriteHtmlImageSrcs(node.html, prefix);
140
+ }
141
+ if (node.children) {
142
+ rewriteTreeImageSrcs(node.children, prefix);
143
+ }
144
+ }
145
+ }
146
+ function rewriteInlineImageSrcs(nodes, prefix) {
147
+ for (const node of nodes) {
148
+ if (node.type === "image" && typeof node.src === "string") {
149
+ node.src = rewriteHref(node.src, prefix);
150
+ }
151
+ else if (node.type === "link") {
152
+ // Links wrap inline children (which may include images) — same
153
+ // recursion shape as rewriteInlineHrefs.
154
+ rewriteInlineImageSrcs(node.children, prefix);
155
+ }
156
+ else if (node.type === "highlight" && node.children) {
157
+ rewriteInlineImageSrcs(node.children, prefix);
158
+ }
159
+ }
160
+ }
161
+ function rewriteHtmlImageSrcs(html, prefix) {
162
+ return html.replace(/(<img\b[^>]*\ssrc=")(\/[^"]+)"/g, (_match, before, src) => `${before}${rewriteHref(src, prefix)}"`);
163
+ }
100
164
  /**
101
165
  * Build a `wrangler.jsonc` for Cloudflare Workers Static Assets.
102
166
  *
@@ -147,6 +211,125 @@ function buildWranglerConfig(siteName, options) {
147
211
  lines.push(`}`);
148
212
  return lines.join("\n") + "\n";
149
213
  }
214
+ /**
215
+ * Build the GitHub Actions workflow YAML for `actions/deploy-pages`.
216
+ *
217
+ * The workflow:
218
+ * 1. Checks out the repo on every push to the default branch.
219
+ * 2. Installs node + pnpm at the Astro project directory, runs
220
+ * `dogsbay site build` (via `pnpm dlx` since Dogsbay is a
221
+ * global CLI, not a project dep), then `pnpm run build`
222
+ * (which runs `astro build && pagefind`).
223
+ * 3. Uploads `<astroDirRel>/dist` as a Pages artifact via
224
+ * `actions/upload-pages-artifact`.
225
+ * 4. Deploys via `actions/deploy-pages`.
226
+ *
227
+ * `astroDirRel` is the path of the Astro output relative to the
228
+ * repo root (typically "astro" — the default config has
229
+ * `output: ./astro`). Empty string is allowed when the project is
230
+ * flat (outputDir === projectDir); the workflow degrades naturally
231
+ * by omitting the `defaults: working-directory` block.
232
+ *
233
+ * Author edits — extra build steps, secrets, deploy gating — survive
234
+ * subsequent `dogsbay site build` runs because the file is written
235
+ * write-if-missing (see emitDeployArtifacts). To start over, delete
236
+ * the workflow file and rebuild.
237
+ *
238
+ * Note on basePath: GitHub Pages serves project sites at
239
+ * `https://<user>.github.io/<repo>/`. Authors who want their docs at
240
+ * the repo root should set `site.basePath: /<repo-name>` (or empty
241
+ * for user/org pages). The platform's basePath plumbing handles all
242
+ * URL rewriting; this workflow doesn't need to know about it.
243
+ */
244
+ function buildGitHubPagesWorkflow(astroDirRel) {
245
+ // When the Astro output IS the project root, drop the working-
246
+ // directory block and reference cache + artifact paths without a
247
+ // prefix. This is the flat-layout case (rare for site-init flows;
248
+ // common for `dogsbay convert` outputs that get manually wired up).
249
+ const isFlat = astroDirRel === "" || astroDirRel === ".";
250
+ const workingDirBlock = isFlat
251
+ ? ""
252
+ : `
253
+ defaults:
254
+ run:
255
+ working-directory: ${astroDirRel}`;
256
+ const cacheDep = isFlat
257
+ ? "pnpm-lock.yaml"
258
+ : `${astroDirRel}/pnpm-lock.yaml`;
259
+ const artifactPath = isFlat ? "dist" : `${astroDirRel}/dist`;
260
+ return `# Deploy to GitHub Pages.
261
+ # Generated by \`dogsbay site init --deploy=github-pages\` (or by
262
+ # adding \`deploy: { target: github-pages }\` to dogsbay.config.yml
263
+ # and running \`dogsbay site build\`). Author edits survive every
264
+ # subsequent build — the file is never overwritten. To regenerate
265
+ # from template, delete the file and rebuild.
266
+ #
267
+ # Repo settings: Settings → Pages → Source = "GitHub Actions".
268
+ name: Deploy to GitHub Pages
269
+
270
+ on:
271
+ push:
272
+ branches: [main]
273
+ workflow_dispatch:
274
+
275
+ permissions:
276
+ contents: read
277
+ pages: write
278
+ id-token: write
279
+
280
+ # Allow only one concurrent deployment, skipping queued runs.
281
+ concurrency:
282
+ group: pages
283
+ cancel-in-progress: false
284
+
285
+ jobs:
286
+ build:
287
+ runs-on: ubuntu-latest${workingDirBlock}
288
+ steps:
289
+ - uses: actions/checkout@v4
290
+
291
+ - uses: pnpm/action-setup@v4
292
+ with:
293
+ version: 10
294
+
295
+ - uses: actions/setup-node@v4
296
+ with:
297
+ # Astro 6 requires Node ^20.19.5 || >=22.12.0; pin 22 for
298
+ # forward-compat (Node 20 LTS is fine for Astro 5 sites
299
+ # but the Dogsbay scaffold targets Astro 6).
300
+ node-version: 22
301
+ cache: pnpm
302
+ cache-dependency-path: ${cacheDep}
303
+
304
+ - name: Install dependencies
305
+ run: pnpm install --frozen-lockfile
306
+
307
+ # \`dogsbay\` is a global CLI, not a project dep — pnpm dlx
308
+ # fetches it on demand. To pin a version, replace with e.g.
309
+ # \`pnpm dlx dogsbay@0.2.0-beta.18 site build\`.
310
+ - name: Build with Dogsbay
311
+ run: pnpm dlx dogsbay@beta site build
312
+
313
+ - name: Build Astro site
314
+ run: pnpm run build
315
+
316
+ - name: Upload Pages artifact
317
+ uses: actions/upload-pages-artifact@v3
318
+ with:
319
+ path: ${artifactPath}
320
+
321
+ deploy:
322
+ needs: build
323
+ runs-on: ubuntu-latest
324
+ environment:
325
+ name: github-pages
326
+ url: \${{ steps.deployment.outputs.page_url }}
327
+ steps:
328
+ - name: Deploy to GitHub Pages
329
+ id: deployment
330
+ uses: actions/deploy-pages@v4
331
+ `;
332
+ }
150
333
  /**
151
334
  * Construct the SiteConfig object that gets serialized to
152
335
  * `src/data/site.json`. Backward-compatible: existing fields keep their
@@ -156,8 +339,6 @@ function buildSiteConfig(siteName, options) {
156
339
  const cfg = {
157
340
  siteName,
158
341
  repoUrl: options.repoUrl || "",
159
- editUri: options.editUri || "blob/main/docs/",
160
- copyright: options.copyright || "",
161
342
  };
162
343
  if (options.siteUrl)
163
344
  cfg.siteUrl = options.siteUrl;
@@ -169,6 +350,15 @@ function buildSiteConfig(siteName, options) {
169
350
  cfg.twitterHandle = options.twitterHandle;
170
351
  if (options.themeColor)
171
352
  cfg.themeColor = options.themeColor;
353
+ // editUri + copyright follow the same omit-on-empty pattern as the
354
+ // optional fields above; previously they were always written
355
+ // (editUri defaulted to "blob/main/docs/", copyright to ""), which
356
+ // left zombie config in src/data/site.json. Downstream guards already
357
+ // treat empty / undefined as "don't render" so this is purely a tidy.
358
+ if (options.editUri)
359
+ cfg.editUri = options.editUri;
360
+ if (options.copyright)
361
+ cfg.copyright = options.copyright;
172
362
  if (options.brandKeywords && options.brandKeywords.length > 0) {
173
363
  cfg.brandKeywords = options.brandKeywords;
174
364
  }
@@ -187,11 +377,58 @@ function buildSiteConfig(siteName, options) {
187
377
  }
188
378
  if (options.taxonomyIndexPaths &&
189
379
  Object.keys(options.taxonomyIndexPaths).length > 0) {
190
- cfg.taxonomyIndexPaths = options.taxonomyIndexPaths;
380
+ // Bake basePath into every emitted indexPath so consumers
381
+ // (TypeBadge / StatusBadge / future components) compose hrefs
382
+ // like `${indexPath}/<value>/` and resolve under the configured
383
+ // site base. Without the prefix, `/by-type/tutorial/` 404s on
384
+ // any site with `site.basePath` set. Caller passes raw config
385
+ // values (`/by-type`, `/tags`, etc.) — basePath threading is
386
+ // this emitter's responsibility, matching how `page.url` is
387
+ // already prefixed in the taxonomy data file.
388
+ // Taxonomy index paths are baked into site.json so components
389
+ // (TagList, TaxonomyIndex, TypeBadge) emit correct hrefs at
390
+ // runtime. Use combined so these resolve under the host's
391
+ // served subpath.
392
+ const taxoPrefix = combinedPrefix(options);
393
+ cfg.taxonomyIndexPaths = Object.fromEntries(Object.entries(options.taxonomyIndexPaths).map(([name, raw]) => [
394
+ name,
395
+ withBasePath(taxoPrefix, raw),
396
+ ]));
191
397
  }
192
398
  if (options.taxonomyDisplay &&
193
399
  Object.keys(options.taxonomyDisplay).length > 0) {
194
- cfg.taxonomyDisplay = options.taxonomyDisplay;
400
+ // Flatten prefix labels into top-level entries so the
401
+ // search-facets resolver finds them after DocsLayout splits
402
+ // slash-nested tags into per-prefix Pagefind filter divs.
403
+ //
404
+ // Input:
405
+ // tags.prefixes = { difficulty: { label, color }, ... }
406
+ // tags.labels = { "difficulty/1": "Beginner", "difficulty/2": ... }
407
+ // Output additions (kept alongside the original `tags` entry):
408
+ // difficulty.labels = { "1": "Beginner", "2": ... }
409
+ //
410
+ // Resolver does `display[facetName].labels[value]` — facet name
411
+ // is now `difficulty`, value is `1`, → "Beginner". See
412
+ // plans/per-prefix-search-facets.md.
413
+ const flat = { ...options.taxonomyDisplay };
414
+ const tagsDisplay = options.taxonomyDisplay.tags;
415
+ if (tagsDisplay?.prefixes) {
416
+ for (const prefix of Object.keys(tagsDisplay.prefixes)) {
417
+ if (flat[prefix])
418
+ continue; // top-level entry wins
419
+ const leafLabels = {};
420
+ if (tagsDisplay.labels) {
421
+ const needle = `${prefix}/`;
422
+ for (const [slug, label] of Object.entries(tagsDisplay.labels)) {
423
+ if (slug.startsWith(needle)) {
424
+ leafLabels[slug.slice(needle.length)] = label;
425
+ }
426
+ }
427
+ }
428
+ flat[prefix] = { labels: leafLabels };
429
+ }
430
+ }
431
+ cfg.taxonomyDisplay = flat;
195
432
  }
196
433
  return cfg;
197
434
  }
@@ -257,6 +494,74 @@ function ensureDirectoryStructure(outputDir, basePath) {
257
494
  export function emitSiteConfig(outputDir, siteName, options) {
258
495
  mkdirSync(join(outputDir, "src", "data"), { recursive: true });
259
496
  writeFileSync(join(outputDir, "src", "data", "site.json"), JSON.stringify(buildSiteConfig(siteName, options), null, 2));
497
+ // Auto-generated companion to astro.config.mjs. Carries the
498
+ // site/base values derived from dogsbay.config.yml's site.url so
499
+ // changes propagate without --force-rescaffolding the main
500
+ // astro.config.mjs (which is scaffold-once and may have author
501
+ // edits — custom integrations, build hooks, etc.). The main
502
+ // config imports `dogsbaySite` + `dogsbayBase` from here.
503
+ // See plans/astro-base-from-site-url.md.
504
+ const { origin, urlBase: astroBase } = parseSiteUrl(options.siteUrl);
505
+ const hasSiteUrl = Boolean(options.siteUrl && /^https?:\/\//.test(options.siteUrl));
506
+ const dogsbaySiteJson = hasSiteUrl
507
+ ? JSON.stringify(origin ?? options.siteUrl)
508
+ : "undefined";
509
+ const dogsbayBaseJson = astroBase ? JSON.stringify(astroBase) : "undefined";
510
+ // build.inlineStylesheets — defaults to "auto" (Astro's own
511
+ // default; matches our docs-first bias since theme.css is ~120KB
512
+ // and externalizing it lets the file cache cross-page). Authors
513
+ // wanting "always" / "never" set it via dogsbay.config.yml's
514
+ // build.inlineStylesheets. See docs/perf-tuning.md.
515
+ const dogsbayInline = options.inlineStylesheets ?? "auto";
516
+ writeFileSync(join(outputDir, "astro.config.dogsbay.mjs"), [
517
+ "// Auto-generated by `dogsbay site build` — DO NOT EDIT.",
518
+ "// Tracks site.url + derived Astro base + build behaviour from",
519
+ "// dogsbay.config.yml. Edit dogsbay.config.yml and rebuild;",
520
+ "// edits to this file will be overwritten on the next build.",
521
+ `export const dogsbaySite = ${dogsbaySiteJson};`,
522
+ `export const dogsbayBase = ${dogsbayBaseJson};`,
523
+ `export const dogsbayInlineStylesheets = ${JSON.stringify(dogsbayInline)};`,
524
+ "",
525
+ ].join("\n"));
526
+ // Migration check: pre-beta.20 sites have an astro.config.mjs that
527
+ // doesn't import the companion. Without the import, the values
528
+ // emitted above are unused and Astro's `base` stays unset — the
529
+ // exact bug this work was meant to close. Warn loudly, with the
530
+ // patch the user needs to apply, until astro.config.mjs is
531
+ // updated. We don't auto-patch because the file may have author
532
+ // edits (custom integrations, build hooks).
533
+ const astroConfigPath = join(outputDir, "astro.config.mjs");
534
+ if (existsSync(astroConfigPath)) {
535
+ const astroConfigSrc = readFileSync(astroConfigPath, "utf-8");
536
+ if (!astroConfigSrc.includes("astro.config.dogsbay.mjs")) {
537
+ console.warn([
538
+ "",
539
+ " ⚠ astro.config.mjs is missing the dogsbay companion import.",
540
+ " Without it, Astro's `base` config stays unset and assets",
541
+ " served from a host subpath (GH Pages project pages,",
542
+ " multi-mount Cloudflare) will 404.",
543
+ "",
544
+ " Add these two lines to astro.config.mjs:",
545
+ "",
546
+ ' import {',
547
+ ' dogsbaySite,',
548
+ ' dogsbayBase,',
549
+ ' dogsbayInlineStylesheets,',
550
+ ' } from "./astro.config.dogsbay.mjs";',
551
+ "",
552
+ " export default defineConfig({",
553
+ " ...(dogsbaySite ? { site: dogsbaySite } : {}),",
554
+ " ...(dogsbayBase ? { base: dogsbayBase } : {}),",
555
+ " build: { inlineStylesheets: dogsbayInlineStylesheets },",
556
+ " // ...your existing config...",
557
+ " });",
558
+ "",
559
+ " OR regenerate from template (overwrites your edits):",
560
+ " dogsbay site init . --scaffold-only --force",
561
+ "",
562
+ ].join("\n"));
563
+ }
564
+ }
260
565
  }
261
566
  export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
262
567
  let scaffoldFilesSkipped = 0;
@@ -300,6 +605,7 @@ export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
300
605
  };
301
606
  // Per-deploy-target additions to package.json
302
607
  const isCloudflare = options.deploy === "cloudflare-workers";
608
+ const isGitHubPages = options.deploy === "github-pages";
303
609
  const deployScripts = isCloudflare
304
610
  ? { deploy: "pnpm build && wrangler deploy" }
305
611
  : {};
@@ -325,14 +631,25 @@ export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
325
631
  },
326
632
  dependencies: {
327
633
  astro: "^6.0.0",
328
- "@astrojs/sitemap": "^3.0.0",
634
+ // Sitemap is emitted directly by Dogsbay into
635
+ // public/<basePath>/sitemap-{index,0}.xml so multi-mount
636
+ // deploys don't collide at the host root. We deliberately
637
+ // do NOT depend on @astrojs/sitemap (it hardcodes output to
638
+ // dist/ root, which is what we're moving away from).
329
639
  // Pagefind is invoked from the build script (see scripts.build above).
330
640
  // Lives in dependencies (not devDependencies) so production builds
331
641
  // include it; the produced search index is shipped statically and
332
642
  // doesn't load this dep at runtime.
333
643
  pagefind: "^1.4.0",
334
644
  tailwindcss: "^4.0.0",
335
- "@tailwindcss/vite": "^4.0.0",
645
+ // Pinned to 4.2.x — `@tailwindcss/vite` 4.3.x ships an
646
+ // oxcResolvePlugin shape that breaks Astro 6's
647
+ // rolldown-vite ("Missing field tsconfigPaths in
648
+ // oxcResolvePlugin"). Surfaced during the FastAPI import
649
+ // (~150-page MkDocs site) on a fresh `dogsbay site init`.
650
+ // Drop the ~ when Astro 6 picks up a compatible rolldown
651
+ // build OR @tailwindcss/vite restores the prior shape.
652
+ "@tailwindcss/vite": "~4.2.2",
336
653
  "tailwind-variants": "^0.3.0",
337
654
  shiki: "^4.0.0",
338
655
  "@shikijs/transformers": "^4.0.0",
@@ -348,6 +665,15 @@ export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
348
665
  "@dogsbay/primitives": dogsbayDep("primitives"),
349
666
  "@dogsbay/icons": dogsbayDep("icons"),
350
667
  "@dogsbay/elements": dogsbayDep("elements"),
668
+ // Transitive of `@dogsbay/primitives` (via
669
+ // `@floating-ui/dom`). Listed at the top level because
670
+ // npm doesn't hoist the second-level transitive when
671
+ // `@dogsbay/primitives` is linked via `file:` (the
672
+ // `--local` monorepo mode + the canary publish flow on
673
+ // GH Pages CI both hit this). Surfaced during the
674
+ // FastAPI import: Rollup failed with "Cannot resolve
675
+ // @floating-ui/core" at astro build time.
676
+ "@floating-ui/core": "^1.7.0",
351
677
  },
352
678
  // Pin transitive Vite to 7. Vite 8 just released; Astro 6
353
679
  // peer-deps Vite 7 and prints a warning when 8 is hoisted.
@@ -374,6 +700,18 @@ export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
374
700
  scaffoldFilesSkipped++;
375
701
  }
376
702
  }
703
+ // GitHub Pages deploy artifacts — workflow + .nojekyll. The actual
704
+ // emission lives in `emitDeployArtifacts` so site-build can also
705
+ // call it on existing sites without going through scaffold (a user
706
+ // adds `deploy: github-pages` to dogsbay.config.yml and reruns
707
+ // `site build` to get the workflow). At scaffold-time we pass
708
+ // forceOverwrite=writeScaffold so `--force` regenerates from
709
+ // template; on regular builds it stays write-if-missing.
710
+ if (isGitHubPages) {
711
+ emitDeployArtifacts(outputDir, options, {
712
+ forceOverwrite: writeScaffold,
713
+ });
714
+ }
377
715
  // Generate astro.config.mjs
378
716
  // `preserveSymlinks: true` is used with --local to pin local file: deps to
379
717
  // their on-disk paths. Inside a pnpm workspace this breaks Astro's internal
@@ -385,52 +723,50 @@ export function emitSiteScaffold(outputDir, siteName, options, writeScaffold) {
385
723
  preserveSymlinks: true,
386
724
  },`
387
725
  : "";
388
- // Sitemap integration is conditional: requires an absolute site URL so
389
- // <loc> entries can be properly absolute. Without siteUrl, the sitemap
390
- // step is skipped (the import + integration call are simply omitted from
391
- // the generated config). Sitemap also filters out frontmatter-noindex pages.
392
- const hasSiteUrl = Boolean(options.siteUrl && /^https?:\/\//.test(options.siteUrl));
393
- const sitemapImport = hasSiteUrl ? `import sitemap from "@astrojs/sitemap";\n` : "";
394
- // Strip any path component from site.url before emitting. The
395
- // config validator already rejects `site.url` containing a path
396
- // when `basePath` is non-empty (canonical URLs would double-count
397
- // the prefix); this is a defensive normalisation for the case
398
- // where the validator is bypassed or basePath is empty.
726
+ // siteUrl gates absolute-URL emission (sitemap <loc> entries,
727
+ // canonical tags). Without one, both are skipped relative URLs
728
+ // are still correct, the sitemap is just not generated.
399
729
  //
400
- // Note: we deliberately do NOT emit Astro's `base:` field. With
401
- // the current file emission (pages live under
402
- // `src/pages/<basePath>/...`), adding `base` would cause Astro
403
- // to doubly-prefix every route. Switching to `base`-driven
404
- // routing is a separate refactor — see plans/configurable-base-path.md.
405
- let siteField = "";
406
- if (hasSiteUrl) {
407
- let originOnly;
408
- try {
409
- const u = new URL(options.siteUrl);
410
- originOnly = `${u.protocol}//${u.host}`;
411
- }
412
- catch {
413
- originOnly = options.siteUrl;
414
- }
415
- siteField = `\n site: ${JSON.stringify(originOnly)},`;
416
- }
417
- const integrationsField = hasSiteUrl ? `\n integrations: [sitemap()],` : "";
418
- // astro.config.mjs scaffold-once. Maintainer adds custom integrations.
419
- // The plugin-aliases import is for the Dogsbay plugin API: each
420
- // build emits `astro.config.plugins.mjs` exporting `pluginAliases`,
421
- // a Vite alias map for `virtual:dogsbay-plugin-config/<id>` modules.
422
- // When no plugins use defineClientConfig the map is empty and the
423
- // spread is a no-op. See plans/plugin-api.md.
730
+ // Sitemap is emitted directly by Dogsbay (see emitSitemapFiles)
731
+ // into public/<basePath>/sitemap-*.xml. We deliberately do NOT
732
+ // wire @astrojs/sitemap here; that integration hardcodes output
733
+ // to dist/ root, breaking multi-mount deploys.
734
+ const hasSiteUrl = Boolean(options.siteUrl && /^https?:\/\//.test(options.siteUrl));
735
+ // site.url's path component (if any) becomes Astro's `base`. The
736
+ // origin alone goes into `site`. This split lets dogsbay model
737
+ // both axes independently:
738
+ // - Astro's `base` (= urlBase) controls the URL prefix Astro
739
+ // bakes into HTML asset references (`<basePath>/_astro/...`)
740
+ // and the routes Astro generates from src/pages.
741
+ // - dogsbay's basePath controls the filesystem layout
742
+ // (`src/pages/<basePath>/...`).
743
+ // The two compose at emit time — combining for nav hrefs,
744
+ // sitemap, llms.txt, etc. See plans/astro-base-from-site-url.md.
745
+ const { origin, urlBase: astroBase } = parseSiteUrl(options.siteUrl);
746
+ // astro.config.mjs — scaffold-once, but the site/base values flow
747
+ // through a separate auto-generated file (`astro.config.dogsbay.mjs`,
748
+ // emitted unconditionally below) so dogsbay-derived values stay in
749
+ // sync with `dogsbay.config.yml` even on existing sites where the
750
+ // main config is preserved. Same pattern as
751
+ // `astro.config.plugins.mjs` the import line is the load-bearing
752
+ // bit; the auto-file is what changes.
424
753
  if (writeScaffold) {
425
754
  writeFileSync(join(outputDir, "astro.config.mjs"), `import { defineConfig } from "astro/config";
426
755
  import tailwindcss from "@tailwindcss/vite";
427
- ${sitemapImport}import { pluginAliases, pluginFsAllow } from "./astro.config.plugins.mjs";
756
+ import { pluginAliases, pluginFsAllow } from "./astro.config.plugins.mjs";
757
+ import {
758
+ dogsbaySite,
759
+ dogsbayBase,
760
+ dogsbayInlineStylesheets,
761
+ } from "./astro.config.dogsbay.mjs";
428
762
 
429
- export default defineConfig({${siteField}
763
+ export default defineConfig({
764
+ ...(dogsbaySite ? { site: dogsbaySite } : {}),
765
+ ...(dogsbayBase ? { base: dogsbayBase } : {}),
430
766
  output: "static",
431
767
  build: {
432
- inlineStylesheets: "always",
433
- },${integrationsField}
768
+ inlineStylesheets: dogsbayInlineStylesheets,
769
+ },
434
770
  vite: {
435
771
  plugins: [tailwindcss()],
436
772
  resolve: {
@@ -452,6 +788,9 @@ export default defineConfig({${siteField}
452
788
  else {
453
789
  scaffoldFilesSkipped++;
454
790
  }
791
+ // astro.config.dogsbay.mjs is emitted by emitSiteConfig (called
792
+ // above and on every site build) so site/base values stay in
793
+ // sync without a re-scaffold. See its definition for rationale.
455
794
  // Always seed an empty astro.config.plugins.mjs so the import in
456
795
  // astro.config.mjs resolves before the first plugin-emitting
457
796
  // build. Subsequent builds replace it via emitPluginRuntime.
@@ -522,7 +861,12 @@ export default defineConfig({${siteField}
522
861
  */
523
862
  export async function emitAstroPages(pages, nav, outputDir, options) {
524
863
  const siteName = options.siteName || "Documentation";
864
+ // basePath = filesystem layout prefix (where pages live under
865
+ // src/pages/...). combined = the URL prefix HTML hrefs need
866
+ // (urlBase + basePath). The two diverge whenever site.url has a
867
+ // path component (GH Pages project pages, multi-mount Cloudflare).
525
868
  const basePath = normalizeBasePath(options.basePath);
869
+ const combined = combinedPrefix(options);
526
870
  const baseSegments = basePathSegments(basePath);
527
871
  // Ensure dirs exist (callers may invoke us without going through the
528
872
  // full exportAstroProject orchestrator, e.g. dogsbay convert at Step 7).
@@ -543,13 +887,29 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
543
887
  // Remove existing entry for this section (full replace)
544
888
  existingNav = existingNav.filter((item) => item.label?.toLowerCase() !== siteName.toLowerCase()
545
889
  && item.label?.toLowerCase() !== section.toLowerCase());
546
- const prefixedNav = prefixNavHrefs(nav, section, basePath);
890
+ // Nav hrefs already carry the `combined` prefix (the importer
891
+ // emits them via fileToHref(file, hrefPrefix=combined)).
892
+ // prefixNavHrefs takes the existing prefix and weaves a section
893
+ // segment into it.
894
+ const prefixedNav = prefixNavHrefs(nav, section, combined);
547
895
  const sectionLabel = siteName
548
896
  || section.split("-").map(w => w.charAt(0).toUpperCase() + w.slice(1)).join(" ");
549
897
  existingNav.push({ label: sectionLabel, children: prefixedNav });
550
898
  outputNav = existingNav;
551
899
  }
552
900
  writeFileSync(join(outputDir, "src", "data", "nav.json"), JSON.stringify(outputNav, null, 2));
901
+ // Also publish nav.json under public/_dogsbay/ so the
902
+ // client-mode <DocsNavClient /> can fetch it at runtime
903
+ // (Astro copies public/ to dist/ as-is at build). The src/data
904
+ // copy stays for build-time imports (pagination, prev/next
905
+ // calculation in each page) — the public copy is the on-the-wire
906
+ // copy that the browser ever sees. Kept identical (same bytes,
907
+ // same shape); the duplicate is cheap (one file) and keeps the
908
+ // build-time and runtime worlds cleanly separated. See
909
+ // plans/client-rendered-nav.md.
910
+ const publicNavDir = join(outputDir, "public", "_dogsbay");
911
+ mkdirSync(publicNavDir, { recursive: true });
912
+ writeFileSync(join(publicNavDir, "nav.json"), JSON.stringify(outputNav));
553
913
  // Static assets (images etc.) — content-tier; always copy from the
554
914
  // user's source dir. If they removed an asset, we want it gone here
555
915
  // too. Skipped when sourceDir isn't supplied (programmatic callers
@@ -558,20 +918,81 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
558
918
  copyAssets(options.sourceDir, outputDir, options.imageOptimization);
559
919
  }
560
920
  let generated = 0;
921
+ // Tracks whether a real root home page (`content/index.md` → slug
922
+ // "index") was emitted. Drives the root-served-site redirect fallback
923
+ // below: a corpus whose nav root is e.g. `welcome/index` (OpenShift)
924
+ // has no `/` page, so without a redirect `/` 404s. See
925
+ // plans/dir-index-slug-nav-drop.md.
926
+ let rootIndexEmitted = false;
927
+ const generatedPaths = new Set();
561
928
  const pagesDir = join(outputDir, "src", "pages", ...baseSegments);
562
929
  const useImageOpt = options.imageOptimization ?? false;
563
- // hrefPrefix is the same string as basePath. rewriteHref handles the
564
- // empty-basePath case correctly: any link starting with "/" matches
565
- // the early-return guard, so root-relative links pass through
566
- // unrewritten when the site is served at host root.
567
- const hrefPrefix = basePath;
930
+ // hrefPrefix is the COMBINED prefix (urlBase + basePath) what
931
+ // rendered HTML hrefs need so internal links resolve under the
932
+ // host's served subpath AND under the dogsbay basePath. For
933
+ // simple host-apex deploys with basePath, urlBase is empty so
934
+ // combined === basePath (back-compat). For GH Pages project pages
935
+ // and multi-mount Cloudflare, combined adds the urlBase layer.
936
+ const hrefPrefix = combined;
937
+ // Route-exclusion gate. Two signals, either is enough:
938
+ // - frontmatter `_fragment: true` (loader-stamped — the importer
939
+ // knew this .md was include-only, not a navigable page)
940
+ // - excludeFromRoutes match against the slug (project-declared,
941
+ // in dogsbay.config.yml — for content under conventional
942
+ // fragment dirs like `modules/`, `_attributes/`, `snippets/`)
943
+ // Excluded pages stay on disk under content/ (so includes resolve)
944
+ // but don't produce .astro / .md.ts routes. See plans/build-at-scale.md.
945
+ //
946
+ // Match semantics:
947
+ // - A single-segment pattern (no `/`) matches ANY occurrence of
948
+ // that segment in the slug path. So `modules` excludes both
949
+ // `modules/foo` AND `welcome/modules/foo` AND
950
+ // `drupal-build/openshift-enterprise/ai/includes/x`. This is
951
+ // what AsciiBinder corpora want — fragment dirs symlink into
952
+ // section dirs so the same `includes/` etc. appears at many
953
+ // depths.
954
+ // - A multi-segment pattern (contains `/`) matches as a leading
955
+ // prefix (exact path-prefix). `welcome/_internal` excludes
956
+ // only that specific path tree, not arbitrary `_internal/`
957
+ // elsewhere.
958
+ const excludePatterns = (options.excludeFromRoutes ?? []).map((p) => p.replace(/^\/+/, "").replace(/\/+$/, ""));
959
+ function isExcludedSlug(slug) {
960
+ if (excludePatterns.length === 0)
961
+ return false;
962
+ const segments = slug.split("/");
963
+ for (const pattern of excludePatterns) {
964
+ if (pattern.includes("/")) {
965
+ // Multi-segment → leading-prefix match.
966
+ if (slug === pattern || slug.startsWith(pattern + "/"))
967
+ return true;
968
+ }
969
+ else {
970
+ // Single-segment → any-segment match.
971
+ if (segments.includes(pattern))
972
+ return true;
973
+ }
974
+ }
975
+ return false;
976
+ }
568
977
  for (const page of pages) {
569
978
  try {
979
+ // Skip excluded pages before any expensive work (tree rewrite,
980
+ // serialize, IO).
981
+ const isFragment = page.frontmatter && page.frontmatter._fragment === true;
982
+ if (isFragment || isExcludedSlug(page.slug)) {
983
+ continue;
984
+ }
570
985
  // Rewrite internal hrefs to match the output URL structure
571
986
  rewriteTreeHrefs(page.tree, hrefPrefix);
987
+ // Same for raw image srcs — Astro doesn't auto-prefix
988
+ // `<img src="/_assets/...">` so we do it here. Block images
989
+ // strip the prefix back off for the `imageMap[...]` lookup
990
+ // (see paragraphToAstro in serialize.ts).
991
+ rewriteTreeImageSrcs(page.tree, hrefPrefix);
572
992
  const result = treeToAstro(page.tree, {
573
993
  imageOptimization: useImageOpt,
574
994
  codeBlockTitle: options.codeBlockTitle ?? true,
995
+ combinedPrefix: hrefPrefix,
575
996
  });
576
997
  const imageSetup = useImageOpt ? [
577
998
  '',
@@ -585,11 +1006,26 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
585
1006
  ' imageMap[publicPath] = mod.default;',
586
1007
  '}',
587
1008
  ] : [];
588
- // Per-page meta from frontmatter
1009
+ // Per-page meta from frontmatter. When no description is authored,
1010
+ // derive one from the first prose paragraph so every page emits a
1011
+ // <meta name="description"> (Lighthouse flags pages without one).
1012
+ // See plans/auto-meta-description.md.
589
1013
  const fm = (page.frontmatter ?? {});
590
- const pageDescription = fm.description ?? "";
1014
+ const pageDescription = fm.description ||
1015
+ deriveDescription(page.tree) ||
1016
+ "";
591
1017
  const pageOgImage = fm.ogImage ?? "";
592
- const pageNoindex = fm.noindex === true || fm.draft === true;
1018
+ // Noindex / nofollow are independent meta directives. Site-level
1019
+ // forces both bits site-wide (staging / compliance lockdown);
1020
+ // page frontmatter can ESCALATE either bit independently but
1021
+ // cannot opt out of a site-level lockdown. `draft: true` keeps
1022
+ // its existing role as a noindex shorthand. See
1023
+ // plans/site-level-robots-meta.md.
1024
+ const pageNoindex = options.noindex === true ||
1025
+ fm.noindex === true ||
1026
+ fm.draft === true;
1027
+ const pageNofollow = options.nofollow === true ||
1028
+ fm.nofollow === true;
593
1029
  // Independent of noindex: pages can be excluded from in-site
594
1030
  // Pagefind search even when external SEs should index them
595
1031
  // (or vice versa). See DocsLayout's prop docs for the
@@ -608,7 +1044,28 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
608
1044
  const pageCategory = Array.isArray(pageMeta?.category)
609
1045
  ? pageMeta.category
610
1046
  : undefined;
611
- const tagsIndexPath = options.tagsIndexPath ?? "/tags";
1047
+ // Custom-taxonomy values lifted from frontmatter into
1048
+ // `meta.taxonomies` by the importer (see `parseMeta` in
1049
+ // `@dogsbay/types`). Surfaced to DocsLayout so it can emit one
1050
+ // `<div data-pagefind-filter="<name>:<value>">` per entry — this
1051
+ // is what makes user-declared taxonomies (`difficulty`, `team`,
1052
+ // anything not in the five built-ins) appear as visible facet
1053
+ // checkboxes in the search dialog. Without this passthrough
1054
+ // they're silently dropped after the importer.
1055
+ const pageTaxonomies = pageMeta?.taxonomies && Object.keys(pageMeta.taxonomies).length > 0
1056
+ ? pageMeta.taxonomies
1057
+ : undefined;
1058
+ // `tagsIndexPath` flows to `<TagList>` for chip hrefs
1059
+ // (`${indexPath}/${tag}/`). Caller passes the raw config value
1060
+ // (e.g. `/tags`); we bake the COMBINED prefix (urlBase from
1061
+ // site.url's path + basePath) here so chips resolve under both
1062
+ // the host's served subpath AND the dogsbay basePath. With
1063
+ // basePath alone, chips 404 on GH Pages project deploys
1064
+ // (basePath="" + non-empty urlBase) — same shape as the
1065
+ // typeBadgeHref / statusBadgeHref composition in DocsLayout,
1066
+ // which already reads combined-prefixed values out of
1067
+ // siteConfig.taxonomyIndexPaths (baked in buildSiteConfig).
1068
+ const tagsIndexPath = withBasePath(combined, options.tagsIndexPath ?? "/tags");
612
1069
  // Auto-lede detection. If the markdown body doesn't already
613
1070
  // start with an H1 / leading paragraph, we ask DocsLayout to
614
1071
  // render the frontmatter title / description at the top of
@@ -640,12 +1097,20 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
640
1097
  // available via other means. The "Open in" deep links work
641
1098
  // regardless of mirror availability — agents that can't fetch
642
1099
  // the page just see the URL in their chat.
1100
+ // pageHrefBase uses combined (urlBase + basePath) so the URL
1101
+ // resolves correctly when the host serves dist/ at a subpath
1102
+ // (GH Pages project page, multi-mount Cloudflare).
643
1103
  const pageHrefBase = section
644
- ? (basePath ? `${basePath}/${section}/${page.slug}` : `/${section}/${page.slug}`)
645
- : (basePath ? `${basePath}/${page.slug}` : `/${page.slug}`);
1104
+ ? (combined ? `${combined}/${section}/${page.slug}` : `/${section}/${page.slug}`)
1105
+ : (combined ? `${combined}/${page.slug}` : `/${page.slug}`);
646
1106
  const pageMdHref = `${pageHrefBase}.md`;
647
- const pageMdAbsoluteUrl = options.siteUrl
648
- ? options.siteUrl.replace(/\/$/, "") + pageMdHref
1107
+ // For absolute URLs (the "Copy as MD" deep link), use the
1108
+ // origin (no path) + the full combined path; siteUrl alone
1109
+ // would double-include the urlBase since pageHrefBase already
1110
+ // contains it.
1111
+ const { origin } = parseSiteUrl(options.siteUrl);
1112
+ const pageMdAbsoluteUrl = origin
1113
+ ? origin + pageMdHref
649
1114
  : pageMdHref;
650
1115
  // Markdown body for the Copy button. Reuse the same serializer
651
1116
  // that produces the .md mirror so what the user copies matches
@@ -687,7 +1152,10 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
687
1152
  "",
688
1153
  `const headings = ${JSON.stringify(page.headings || [])};`,
689
1154
  `const nav = navData;`,
690
- `const currentPath = "${buildCurrentPath(basePath, section, page.slug)}";`,
1155
+ // currentPath uses combined so it matches nav.json hrefs
1156
+ // (which are also combined-prefixed). getPagination compares
1157
+ // them as strings; mismatched prefixes break prev/next.
1158
+ `const currentPath = "${buildCurrentPath(combined, section, page.slug)}";`,
691
1159
  // Filter nav to the current (locale, version) bucket
692
1160
  // before computing prev/next — without this, pagination
693
1161
  // walks the global nav and a "Next" link can leak from
@@ -705,12 +1173,14 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
705
1173
  `const description = ${JSON.stringify(pageDescription)} || undefined;`,
706
1174
  `const ogImage = ${JSON.stringify(pageOgImage)} || undefined;`,
707
1175
  `const noindex = ${JSON.stringify(pageNoindex)};`,
1176
+ `const nofollow = ${JSON.stringify(pageNofollow)};`,
708
1177
  `const excludeFromSearch = ${JSON.stringify(pageExcludeFromSearch)};`,
709
1178
  `const pageTags = ${JSON.stringify(pageTags ?? null)};`,
710
1179
  `const pageStatus = ${JSON.stringify(pageStatus ?? null)};`,
711
1180
  `const pageType = ${JSON.stringify(pageTypeStr ?? null)};`,
712
1181
  `const pageAudience = ${JSON.stringify(pageAudience ?? null)};`,
713
1182
  `const pageCategory = ${JSON.stringify(pageCategory ?? null)};`,
1183
+ `const pageTaxonomies = ${JSON.stringify(pageTaxonomies ?? null)};`,
714
1184
  `const tagsIndexPath = ${JSON.stringify(tagsIndexPath)};`,
715
1185
  `const llmActionsProps = ${JSON.stringify(llmActionsEnabled
716
1186
  ? {
@@ -741,6 +1211,7 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
741
1211
  ` twitterHandle={siteConfig.twitterHandle || undefined}`,
742
1212
  ` themeColor={siteConfig.themeColor || undefined}`,
743
1213
  ` noindex={noindex}`,
1214
+ ` nofollow={nofollow}`,
744
1215
  ` excludeFromSearch={excludeFromSearch}`,
745
1216
  ` plausibleDomain={siteConfig.plausible?.domain}`,
746
1217
  ` plausibleScriptUrl={siteConfig.plausible?.scriptUrl}`,
@@ -756,12 +1227,39 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
756
1227
  ` pageType={pageType ?? undefined}`,
757
1228
  ` audience={pageAudience ?? undefined}`,
758
1229
  ` category={pageCategory ?? undefined}`,
1230
+ ` taxonomies={pageTaxonomies ?? undefined}`,
759
1231
  ` autoH1={${autoH1}}`,
760
1232
  ` autoLede={${autoLede}}`,
761
1233
  ` llmActions={llmActionsProps}`,
762
1234
  ` multiSource={${JSON.stringify(page.multiSource ?? null)} ?? undefined}`,
763
1235
  ` switcherMap={switcherMapData}`,
764
- ` basePath={${JSON.stringify(basePath || "/docs")}}`,
1236
+ // basePath here is the COMBINED URL prefix (urlBase from
1237
+ // site.url's path + dogsbay basePath). DocsLayout uses it
1238
+ // for switcher links, the footer llms.txt link, and the
1239
+ // <head> alternate link — all three need the full URL
1240
+ // prefix the host actually serves under. Empty string is
1241
+ // valid (root-served sites with no urlBase or basePath);
1242
+ // don't fall back to "/docs" — that would 404 for those.
1243
+ ` basePath={${JSON.stringify(combined)}}`,
1244
+ // navMode — controls whether DocsLayout server-renders the
1245
+ // full sidebar nav tree per page (`ssr-full`) or emits a
1246
+ // client-hydrated placeholder (`client`, default). The
1247
+ // client mode shrinks per-page HTML dramatically at scale.
1248
+ // See plans/client-rendered-nav.md.
1249
+ ` navMode={${JSON.stringify(options.navMode ?? "client")}}`,
1250
+ // Pagefind index URL — must include the combined prefix or
1251
+ // the loader 404s on subpath-mounted deploys. The pagefind
1252
+ // CLI writes to <astroOutput>/dist/pagefind/ which Astro
1253
+ // serves under its `base` (= urlBase); dogsbay's basePath
1254
+ // adds the second prefix layer. Empty combined → `/pagefind/`.
1255
+ ` pagefindUrl={${JSON.stringify(combined ? `${combined}/pagefind/` : "/pagefind/")}}`,
1256
+ // Favicon — composed with combined prefix so the
1257
+ // <link rel="icon"> resolves on subpath-mounted deploys.
1258
+ // Authors who want a different favicon override via the
1259
+ // `favicon` slot on DocsLayout, or drop the file at
1260
+ // `public/favicon.ico` in their Astro project (which is
1261
+ // what the default points at).
1262
+ ` favicon={${JSON.stringify(combined ? `${combined}/favicon.ico` : "/favicon.ico")}}`,
765
1263
  ` wideLayout={${wideLayout}}`,
766
1264
  `>`,
767
1265
  ` <MarkdownContentStack>`,
@@ -798,6 +1296,9 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
798
1296
  mkdirSync(dirname(pagePath), { recursive: true });
799
1297
  writeFileSync(pagePath, pageLines.join("\n") + "\n");
800
1298
  generated++;
1299
+ if (!section && page.slug === "index")
1300
+ rootIndexEmitted = true;
1301
+ generatedPaths.add(relative(outputDir, pagePath));
801
1302
  // Companion .md endpoint for content negotiation. Prerendered, so
802
1303
  // it's served as a static asset at runtime — no Worker overhead.
803
1304
  //
@@ -833,14 +1334,55 @@ export async function emitAstroPages(pages, nav, outputDir, options) {
833
1334
  }
834
1335
  }
835
1336
  // Generate index redirect at src/pages/index.astro — sends `/` to the
836
- // first nav href. Skipped when basePath is empty: with root-served
837
- // sites, src/pages/index.astro is the actual home page (not a
838
- // redirect target), and writing a redirect would clobber it.
839
- if (basePath !== "") {
840
- const firstHref = findFirstNavHref(nav, basePath);
841
- writeFileSync(join(outputDir, "src", "pages", "index.astro"), `---\nreturn Astro.redirect("${firstHref}");\n---\n`);
842
- }
843
- return { generated, outputNav };
1337
+ // first nav href. Two cases need it:
1338
+ // - basePath set: `/` (host apex) isn't a content page, so redirect
1339
+ // into the basePath subtree.
1340
+ // - basePath empty BUT no root home page emitted (no
1341
+ // `content/index.md`): the corpus's entry point is a nested page
1342
+ // (e.g. OpenShift's `welcome/index`), so `/` would 404 without a
1343
+ // redirect. Only emit here for non-section builds and never when a
1344
+ // real root index page exists (writing a redirect would clobber it).
1345
+ const firstHref = findFirstNavHref(nav, basePath);
1346
+ const needsRootRedirect = basePath !== "" ||
1347
+ (!section && !rootIndexEmitted && firstHref !== "");
1348
+ if (needsRootRedirect) {
1349
+ const indexPath = join(outputDir, "src", "pages", "index.astro");
1350
+ writeFileSync(indexPath, `---\nreturn Astro.redirect("${firstHref}");\n---\n`);
1351
+ generatedPaths.add(relative(outputDir, indexPath));
1352
+ }
1353
+ return { generated, outputNav, generatedPaths };
1354
+ }
1355
+ /**
1356
+ * Copy each passthrough `.astro` source to its computed output path.
1357
+ * Aborts with a clear error if the destination is already in
1358
+ * `generatedPaths` (a generated page from `emitAstroPages` would
1359
+ * silently overwrite the hand-authored file otherwise).
1360
+ */
1361
+ export function emitPassthroughAstroPages(copies, outputDir, generatedPaths) {
1362
+ if (copies.length === 0)
1363
+ return { copied: 0 };
1364
+ // Collision detection — a generated page and a passthrough page
1365
+ // would write to the same file. Refuse to overwrite; tell the
1366
+ // author exactly which two files conflict.
1367
+ const collisions = [];
1368
+ for (const copy of copies) {
1369
+ if (generatedPaths.has(copy.outputRelPath)) {
1370
+ collisions.push(copy.outputRelPath);
1371
+ }
1372
+ }
1373
+ if (collisions.length > 0) {
1374
+ throw new Error(`Passthrough Astro page collides with a generated page:\n` +
1375
+ collisions.map((c) => ` - ${c}`).join("\n") + "\n" +
1376
+ `Rename the .astro source or remove the colliding entry from nav.yml.`);
1377
+ }
1378
+ let copied = 0;
1379
+ for (const copy of copies) {
1380
+ const dest = join(outputDir, copy.outputRelPath);
1381
+ mkdirSync(dirname(dest), { recursive: true });
1382
+ copyFileSync(copy.sourceAbs, dest);
1383
+ copied++;
1384
+ }
1385
+ return { copied };
844
1386
  }
845
1387
  // ─── Tier 1: config-derived ─────────────────────────────────────────────
846
1388
  // Files driven entirely by config + flags. Always regenerated; site
@@ -856,6 +1398,54 @@ export function emitConfigDerivedFiles(outputDir, options) {
856
1398
  const hasSiteUrl = Boolean(options.siteUrl && /^https?:\/\//.test(options.siteUrl));
857
1399
  writeFileSync(join(outputDir, "public", "robots.txt"), buildRobotsTxt(options, hasSiteUrl));
858
1400
  }
1401
+ /**
1402
+ * Per-deploy-target artifact emission.
1403
+ *
1404
+ * Called from `emitSiteScaffold` (with `forceOverwrite=writeScaffold`
1405
+ * so `--force` regenerates from template) and from `dogsbay site
1406
+ * build` (with `forceOverwrite=false` so an existing site can adopt
1407
+ * a deploy target by editing config and rebuilding — the missing
1408
+ * artifact gets created on the next build).
1409
+ *
1410
+ * Emit policy is the union: write when forced OR when the file is
1411
+ * missing. Author edits to e.g. the workflow YAML survive every
1412
+ * regular build.
1413
+ *
1414
+ * Currently handles `github-pages` (workflow + .nojekyll). The
1415
+ * existing `cloudflare-workers` artifacts (wrangler.jsonc + package
1416
+ * scripts) stay in the scaffold-only path because they overlap with
1417
+ * scaffold-only files (package.json scripts, devDependencies). A
1418
+ * future refactor could fold them in here too.
1419
+ */
1420
+ export function emitDeployArtifacts(outputDir, options, opts = { forceOverwrite: false }) {
1421
+ if (options.deploy === "github-pages") {
1422
+ // GitHub reads workflows from <repo-root>/.github/workflows/, NOT
1423
+ // from inside subdirectories. Use projectDir (the repo root) for
1424
+ // the workflow file; fall back to outputDir when unset (flat
1425
+ // `dogsbay convert` flows where the Astro project IS the repo).
1426
+ const projectDir = options.projectDir ?? outputDir;
1427
+ // Path of the Astro output relative to the project root. Used by
1428
+ // the workflow's working-directory + cache-dependency-path so
1429
+ // pnpm install / pnpm run build target the right place. Empty
1430
+ // string when outputDir === projectDir (flat layout).
1431
+ const astroDirRel = relative(projectDir, outputDir).replace(/\\/g, "/");
1432
+ const workflowPath = join(projectDir, ".github", "workflows", "deploy.yml");
1433
+ if (opts.forceOverwrite || !existsSync(workflowPath)) {
1434
+ mkdirSync(dirname(workflowPath), { recursive: true });
1435
+ writeFileSync(workflowPath, buildGitHubPagesWorkflow(astroDirRel));
1436
+ }
1437
+ // .nojekyll — must exist in the deployed artifact root so GH
1438
+ // Pages skips Jekyll's `_underscored-paths` filter (Astro's
1439
+ // `_astro/` chunk dir gets eaten otherwise). Lives inside the
1440
+ // Astro project's `public/` so it's copied into `dist/` at
1441
+ // build time.
1442
+ const nojekyllPath = join(outputDir, "public", ".nojekyll");
1443
+ mkdirSync(dirname(nojekyllPath), { recursive: true });
1444
+ if (opts.forceOverwrite || !existsSync(nojekyllPath)) {
1445
+ writeFileSync(nojekyllPath, "");
1446
+ }
1447
+ }
1448
+ }
859
1449
  /**
860
1450
  * Emit `src/data/switcherMap.json` describing per-page
861
1451
  * version + locale equivalents. Always writes the file —
@@ -872,7 +1462,10 @@ export function emitConfigDerivedFiles(outputDir, options) {
872
1462
  * baseline page in a multi-version site).
873
1463
  */
874
1464
  export function emitSwitcherMap(pages, outputDir, options) {
875
- const basePath = normalizeBasePath(options.basePath);
1465
+ // Switcher URLs use combined so the link the dropdown emits
1466
+ // resolves under the host's served subpath (GH Pages project
1467
+ // pages, multi-mount Cloudflare).
1468
+ const combined = combinedPrefix(options);
876
1469
  const dataDir = join(outputDir, "src", "data");
877
1470
  const outPath = join(dataDir, "switcherMap.json");
878
1471
  // Detect axis activation by inspecting the data the loader
@@ -911,7 +1504,7 @@ export function emitSwitcherMap(pages, outputDir, options) {
911
1504
  const variant = {
912
1505
  ...(ms.locale !== undefined ? { locale: ms.locale } : {}),
913
1506
  ...(ms.version !== undefined ? { version: ms.version } : {}),
914
- url: `${basePath}/${page.slug}`,
1507
+ url: `${combined}/${page.slug}`,
915
1508
  };
916
1509
  if (!byLogicalKey[key])
917
1510
  byLogicalKey[key] = [];
@@ -989,6 +1582,10 @@ export function emitMissingTranslationStubs(pages, outputDir, options) {
989
1582
  return;
990
1583
  const basePath = normalizeBasePath(options.basePath);
991
1584
  const baseSegments = basePathSegments(basePath);
1585
+ // combined drives the redirect URL (the user-facing path they
1586
+ // get bounced to); basePath stays the filesystem path under
1587
+ // src/pages/ where the stub lives.
1588
+ const combined = combinedPrefix(options);
992
1589
  // Index existing pages by (slug after locale segment) so we
993
1590
  // can detect missing translations cheaply. Key shape:
994
1591
  // `<other-axis-prefix>/<originalSlug>` where other-axis-prefix
@@ -1022,7 +1619,7 @@ export function emitMissingTranslationStubs(pages, outputDir, options) {
1022
1619
  const targetUrl = `${basePath}/${targetSlug}`;
1023
1620
  if (existingByUrl.has(targetUrl))
1024
1621
  continue; // already translated
1025
- const defaultUrl = `${basePath}/${defaultPage.slug}`;
1622
+ const defaultUrl = `${combined}/${defaultPage.slug}`;
1026
1623
  const filePath = join(outputDir, "src", "pages", ...baseSegments, ...targetSlug.split("/"));
1027
1624
  // Ensure parent dir exists; write a redirect-stub Astro
1028
1625
  // file. Adding `.astro` to the leaf turns it into a
@@ -1064,10 +1661,20 @@ export function emitAgentReadinessFiles(pages, outputNav, outputDir, siteName, o
1064
1661
  if (options.llmsTxt !== false) {
1065
1662
  emitLlmsTxtFiles(outputDir, siteName, options, outputNav, pages);
1066
1663
  // public/_headers — Cloudflare Workers / Pages convention. Adds an
1067
- // RFC 8288 Link header pointing agents at /llms.txt without parsing
1068
- // HTML. Emitted alongside llms.txt so the two files travel together.
1664
+ // RFC 8288 Link header pointing agents at this mount's llms.txt
1665
+ // (basePath-prefixed) without parsing HTML. Emitted alongside
1666
+ // llms.txt so the two files travel together.
1069
1667
  mkdirSync(join(outputDir, "public"), { recursive: true });
1070
- writeFileSync(join(outputDir, "public", "_headers"), buildHeadersFile());
1668
+ // _headers Link header points at the per-mount llms.txt at
1669
+ // <combined>/llms.txt — the URL agents would actually fetch.
1670
+ writeFileSync(join(outputDir, "public", "_headers"), buildHeadersFile(combinedPrefix(options)));
1671
+ }
1672
+ // Sitemap — emitted by Dogsbay (not @astrojs/sitemap) into
1673
+ // public/<basePath>/sitemap-{index,0}.xml so multi-mount deploys
1674
+ // don't collide at host root. Gated on a valid http(s) siteUrl
1675
+ // because <loc> entries must be absolute.
1676
+ if (options.siteUrl && /^https?:\/\//.test(options.siteUrl)) {
1677
+ emitSitemapFiles(outputDir, options, pages);
1071
1678
  }
1072
1679
  // src/middleware.ts — Tier 1 (always update). Drives both the
1073
1680
  // `Accept: text/markdown` content-negotiation rewrite (via
@@ -1086,12 +1693,29 @@ export function emitAgentReadinessFiles(pages, outputNav, outputDir, siteName, o
1086
1693
  const localeRedirectOn = options.defaultLocale !== undefined && knownLocales.length >= 2;
1087
1694
  const axisRedirectOn = versionRedirectOn || localeRedirectOn;
1088
1695
  if (mdMirrorOn || axisRedirectOn) {
1696
+ // Taxonomy index paths share a single global namespace across
1697
+ // locales / versions (one `/tags/` for the whole site, not one
1698
+ // per locale). The redirect helper has to know to skip them or
1699
+ // it will 302 chip hrefs to non-existent locale-prefixed routes.
1700
+ // Strip leading `/` and pull just the first segment so a config
1701
+ // like `/tags` becomes the global-prefix entry `tags`.
1702
+ const globalPrefixes = [];
1703
+ if (options.taxonomyIndexPaths) {
1704
+ for (const raw of Object.values(options.taxonomyIndexPaths)) {
1705
+ const first = raw.replace(/^\/+/, "").split("/")[0];
1706
+ if (first)
1707
+ globalPrefixes.push(first);
1708
+ }
1709
+ }
1089
1710
  mkdirSync(join(outputDir, "src"), { recursive: true });
1090
1711
  writeFileSync(join(outputDir, "src", "middleware.ts"), buildMiddlewareSource({
1091
1712
  mdMirror: mdMirrorOn,
1092
1713
  axisRedirect: axisRedirectOn
1093
1714
  ? {
1094
- basePath: normalizeBasePath(options.basePath),
1715
+ // Middleware compares paths against the request URL,
1716
+ // which carries the host's served subpath — so use the
1717
+ // combined prefix here.
1718
+ basePath: combinedPrefix(options),
1095
1719
  ...(versionRedirectOn
1096
1720
  ? {
1097
1721
  defaultVersion: options.defaultVersion,
@@ -1104,6 +1728,7 @@ export function emitAgentReadinessFiles(pages, outputNav, outputDir, siteName, o
1104
1728
  knownLocales,
1105
1729
  }
1106
1730
  : {}),
1731
+ ...(globalPrefixes.length > 0 ? { globalPrefixes } : {}),
1107
1732
  }
1108
1733
  : undefined,
1109
1734
  }));
@@ -1164,21 +1789,49 @@ function buildRobotsTxt(options, hasSiteUrl) {
1164
1789
  const aiInput = options.aiInput ?? "yes";
1165
1790
  const aiTrain = options.aiTrain ?? "no";
1166
1791
  const contentSignal = `Content-Signal: search=${search}, ai-input=${aiInput}, ai-train=${aiTrain}\n`;
1167
- const sitemap = hasSiteUrl
1168
- ? `Sitemap: ${options.siteUrl.replace(/\/$/, "")}/sitemap-index.xml\n`
1792
+ // Per-mount sitemap path: each Dogsbay site emits its sitemap
1793
+ // index under <basePath>/, so robots.txt must point there too.
1794
+ // (Multi-mount deploys end up with one robots.txt per site at
1795
+ // their respective hosts / paths; each correctly references its
1796
+ // own mount's sitemap-index.)
1797
+ // Sitemap URL = origin + combined + /sitemap-index.xml. Use the
1798
+ // origin (no path) from site.url and the combined prefix (urlBase
1799
+ // + basePath); siteUrl could itself include a path component when
1800
+ // hosting on a subpath (GH Pages project page), so we strip it
1801
+ // here to avoid double-counting.
1802
+ const { origin } = parseSiteUrl(options.siteUrl);
1803
+ const combined = combinedPrefix(options);
1804
+ const sitemap = hasSiteUrl && origin
1805
+ ? `Sitemap: ${origin}${withBasePath(combined, "/sitemap-index.xml")}\n`
1169
1806
  : "";
1170
- return `User-agent: *\nAllow: /\n${contentSignal}${sitemap}`;
1807
+ // Llms-Txt: line — non-standard but follows the same shape as
1808
+ // `Sitemap:`. Crawlers and agents that scan robots.txt before
1809
+ // fetching pages get a direct pointer at the per-mount llms.txt.
1810
+ // RFC 9309 explicitly permits unknown directives ("intentionally
1811
+ // permissive of such future extensions") so this is harmless to
1812
+ // standards-compliant parsers. Emitted alongside Sitemap when
1813
+ // siteUrl is set; absolute URLs only (relative paths would be
1814
+ // ambiguous without a base).
1815
+ const llmsTxt = options.llmsTxt !== false && hasSiteUrl && origin
1816
+ ? `Llms-Txt: ${origin}${withBasePath(combined, "/llms.txt")}\n`
1817
+ : "";
1818
+ return `User-agent: *\nAllow: /\n${contentSignal}${sitemap}${llmsTxt}`;
1171
1819
  }
1172
1820
  /**
1173
1821
  * Build the contents of `public/_headers` (Cloudflare Pages / Workers
1174
1822
  * Static Assets convention). Emits a global RFC 8288 Link header
1175
- * pointing at the site's llms.txt index, so agents don't need to
1823
+ * pointing at this mount's llms.txt index, so agents don't need to
1176
1824
  * parse HTML to discover the LLM-friendly content listing.
1825
+ *
1826
+ * The Link target is basePath-prefixed (`</docs/llms.txt>` for a
1827
+ * `/docs` mount) — matches where the platform actually emits
1828
+ * llms.txt under the per-mount layout.
1177
1829
  */
1178
- function buildHeadersFile() {
1830
+ function buildHeadersFile(basePath) {
1831
+ const llmsHref = withBasePath(basePath, "/llms.txt");
1179
1832
  return [
1180
1833
  "/*",
1181
- ' Link: </llms.txt>; rel="describedby"; type="text/plain"',
1834
+ ` Link: <${llmsHref}>; rel="describedby"; type="text/plain"`,
1182
1835
  "",
1183
1836
  ].join("\n");
1184
1837
  }
@@ -1187,20 +1840,28 @@ function buildMiddlewareSource(config) {
1187
1840
  "// AUTO-GENERATED by `dogsbay site build` — do not edit.",
1188
1841
  "// Composes the docs-layout middleware helpers.",
1189
1842
  "//",
1190
- "// Markdown content negotiation:",
1191
- "// This middleware fires on every request, but in Astro's static",
1192
- "// prerender mode (output: \"static\") request headers are NOT",
1193
- "// forwarded Astro warns about \"Astro.request.headers was used",
1194
- "// when rendering...\" and serves a prerendered HTML response.",
1195
- "// That means `Accept: text/markdown` negotiation only kicks in",
1196
- "// under SSR (output: \"server\") or via an edge function on the",
1197
- "// deployment layer (Cloudflare Worker, Netlify Edge, etc.).",
1198
- "// For pure-static deploys, agents should follow the page's",
1199
- "// <link rel=\"alternate\" type=\"text/markdown\"> href to fetch",
1200
- "// the .md mirror directly (e.g. /docs.md).",
1843
+ "// Static-prerender guard:",
1844
+ "// In Astro's static output mode, this middleware is invoked",
1845
+ "// for every prerendered route at build time. Reading",
1846
+ "// `context.request.headers` there triggers an Astro warning",
1847
+ "// per page (\"Astro.request.headers was used during static",
1848
+ "// render\"), which floods `dogsbay site build` / `site preview`",
1849
+ "// output. Worse, the negotiation can't actually happen at",
1850
+ "// build time there's no runtime client whose Accept header",
1851
+ "// we'd be honoring.",
1852
+ "//",
1853
+ "// We guard with `context.isPrerendered` so prerendered routes",
1854
+ "// short-circuit to `next()` immediately. At runtime in static",
1855
+ "// deploys, middleware doesn't fire at all (no server); at",
1856
+ "// runtime in SSR / hybrid deploys, only dynamic routes fire,",
1857
+ "// which is exactly when negotiation makes sense.",
1201
1858
  "//",
1202
- "// The Cloudflare-Worker-driven full fix is tracked in",
1203
- "// plans/cloudflare-deploy-content-negotiation.md.",
1859
+ "// Markdown content negotiation:",
1860
+ "// For pure-static deploys, `Accept: text/markdown` is honored",
1861
+ "// by the platform (Cloudflare _headers + Worker, Netlify Edge",
1862
+ "// functions). Agents that can't send Accept headers should",
1863
+ "// follow the page's <link rel=\"alternate\" type=\"text/markdown\">",
1864
+ "// to fetch the .md mirror directly (e.g. /docs.md).",
1204
1865
  'import { defineMiddleware } from "astro:middleware";',
1205
1866
  ];
1206
1867
  if (config.mdMirror) {
@@ -1214,6 +1875,11 @@ function buildMiddlewareSource(config) {
1214
1875
  lines.push(`const AXIS_REDIRECT_CONFIG = ${JSON.stringify(config.axisRedirect, null, 2)};`, "");
1215
1876
  }
1216
1877
  lines.push("export const onRequest = defineMiddleware((context, next) => {");
1878
+ // Skip prerendered routes — see file-top comment for the rationale.
1879
+ // Avoids per-page Astro.request.headers warnings during build, and
1880
+ // matches runtime semantics (middleware doesn't fire on prerendered
1881
+ // routes when deployed).
1882
+ lines.push(" if (context.isPrerendered) return next();");
1217
1883
  lines.push(" const url = new URL(context.request.url);");
1218
1884
  if (config.mdMirror) {
1219
1885
  lines.push(' const accept = context.request.headers.get("accept");', " const mdTarget = shouldRewriteToMarkdown(accept, url.pathname);", " if (mdTarget) return context.rewrite(mdTarget);");
@@ -1245,8 +1911,18 @@ function buildMdEndpoint(page, sourceRel) {
1245
1911
  ].join("\n");
1246
1912
  }
1247
1913
  /**
1248
- * Emit `public/llms.txt`, `public/llms-full.txt`, and per-section
1249
- * `public/<dir>/llms.txt` files for the site.
1914
+ * Emit per-mount llms.txt + llms-full.txt + per-section indexes.
1915
+ *
1916
+ * Files live under `public/<basePath>/...` so multiple Dogsbay sites
1917
+ * can mount on the same host (`/docs/llms.txt` + `/api/llms.txt` +
1918
+ * `/handbook/llms.txt`) without colliding at the root. When basePath
1919
+ * is empty, this collapses to `public/llms.txt` — the single-site
1920
+ * llmstxt.org-spec layout.
1921
+ *
1922
+ * The host root `/llms.txt` is intentionally NOT emitted by the
1923
+ * platform: it's the user's umbrella file, analogous to
1924
+ * `sitemap-index.xml`. Multi-mount deploys hand-write a top-level
1925
+ * `/llms.txt` that links to each per-mount index.
1250
1926
  *
1251
1927
  * Per-section files are written for every top-level nav group that
1252
1928
  * resolves to a site directory (either via `group.href` or via the
@@ -1258,26 +1934,92 @@ function emitLlmsTxtFiles(outputDir, siteName, options, nav, pages) {
1258
1934
  description: options.description,
1259
1935
  siteUrl: options.siteUrl,
1260
1936
  };
1261
- const publicDir = join(outputDir, "public");
1262
- mkdirSync(publicDir, { recursive: true });
1263
- const hrefPrefix = normalizeBasePath(options.basePath);
1264
- writeFileSync(join(publicDir, "llms.txt"), buildLlmsTxt(siteConfig, nav, pages, { hrefPrefix }));
1265
- writeFileSync(join(publicDir, "llms-full.txt"), buildLlmsFullTxt(siteConfig, nav, pages, {
1937
+ // hrefPrefix is the COMBINED prefix — used for the URL paths that
1938
+ // appear inside the llms.txt body (so agents fetch the correct
1939
+ // host-relative URLs). Filesystem layout uses basePath alone:
1940
+ // `public/<basePath>/llms.txt` matches the existing per-mount
1941
+ // delivery shape.
1942
+ const hrefPrefix = combinedPrefix(options);
1943
+ const basePath = normalizeBasePath(options.basePath);
1944
+ const baseSegments = basePathSegments(basePath);
1945
+ const mountDir = join(outputDir, "public", ...baseSegments);
1946
+ mkdirSync(mountDir, { recursive: true });
1947
+ writeFileSync(join(mountDir, "llms.txt"), buildLlmsTxt(siteConfig, nav, pages, { hrefPrefix }));
1948
+ writeFileSync(join(mountDir, "llms-full.txt"), buildLlmsFullTxt(siteConfig, nav, pages, {
1266
1949
  summary: "body",
1267
1950
  serializePage: serializePageMd,
1268
1951
  hrefPrefix,
1269
1952
  }));
1953
+ // Per-section files. `deriveSectionDir` returns a host-absolute
1954
+ // path derived from nav hrefs, which since the combined-prefix
1955
+ // refactor (commit 132891e) include urlBase + basePath — NOT just
1956
+ // basePath. So joining its return onto public/ directly would
1957
+ // double-prefix into `public/<urlBase>/<basePath>/<section>/llms.txt`,
1958
+ // which then serves at `<urlBase>/<urlBase>/<basePath>/<section>/...`
1959
+ // once Astro's base prefix is applied at request time.
1960
+ //
1961
+ // Strip the combined prefix off the section dir to get just the
1962
+ // section tail, then re-prepend basePath via mountDir. Result:
1963
+ // `public/<basePath>/<section>/llms.txt`, served under the deploy's
1964
+ // base mount as `<urlBase>/<basePath>/<section>/llms.txt`.
1965
+ const combinedSegs = hrefPrefix.replace(/^\//, "");
1270
1966
  for (const group of nav) {
1271
1967
  if (!group.children || group.children.length === 0)
1272
1968
  continue;
1273
1969
  const dir = deriveSectionDir(group);
1274
1970
  if (!dir)
1275
1971
  continue;
1276
- const sectionPath = join(publicDir, dir, "llms.txt");
1972
+ let relDir;
1973
+ if (combinedSegs && dir === combinedSegs) {
1974
+ relDir = "";
1975
+ }
1976
+ else if (combinedSegs && dir.startsWith(`${combinedSegs}/`)) {
1977
+ relDir = dir.slice(combinedSegs.length + 1);
1978
+ }
1979
+ else {
1980
+ // Defensive: if for some reason the dir doesn't carry the
1981
+ // combined prefix (older importer, manual nav.yml, etc.), fall
1982
+ // back to the raw value rather than rooting at /.
1983
+ relDir = dir;
1984
+ }
1985
+ const sectionPath = relDir
1986
+ ? join(mountDir, relDir, "llms.txt")
1987
+ : join(mountDir, "llms.txt");
1277
1988
  mkdirSync(dirname(sectionPath), { recursive: true });
1278
1989
  writeFileSync(sectionPath, buildSectionLlmsTxt(siteConfig, group, pages, { hrefPrefix }));
1279
1990
  }
1280
1991
  }
1992
+ /**
1993
+ * Emit per-mount sitemap files.
1994
+ *
1995
+ * Writes `public/<basePath>/sitemap-index.xml` + `sitemap-0.xml`.
1996
+ * The index lists the single sub-sitemap today; future splits add
1997
+ * more sub-sitemap entries as the page count grows past
1998
+ * sitemaps.org's 50K-URL recommendation.
1999
+ *
2000
+ * Caller has already guarded on a valid http(s) `siteUrl` — without
2001
+ * one, `<loc>` entries can't be absolute and crawlers reject the
2002
+ * file. Skip emission rather than write a broken sitemap.
2003
+ */
2004
+ function emitSitemapFiles(outputDir, options, pages) {
2005
+ // Filesystem path uses basePath (sitemap files live in
2006
+ // public/<basePath>/sitemap-*.xml). The URL prefix encoded into
2007
+ // each <loc> uses combined so the absolute URLs resolve under the
2008
+ // host's served subpath. buildSitemap strips path off siteUrl
2009
+ // internally, so passing siteUrl + combined as basePath gives
2010
+ // origin + combined as the final URL.
2011
+ const basePath = normalizeBasePath(options.basePath);
2012
+ const combined = combinedPrefix(options);
2013
+ const baseSegments = basePathSegments(basePath);
2014
+ const mountDir = join(outputDir, "public", ...baseSegments);
2015
+ mkdirSync(mountDir, { recursive: true });
2016
+ writeFileSync(join(mountDir, "sitemap-0.xml"), buildSitemap(pages, {
2017
+ siteUrl: options.siteUrl,
2018
+ basePath: combined,
2019
+ siteNoindex: options.noindex === true,
2020
+ }));
2021
+ writeFileSync(join(mountDir, "sitemap-index.xml"), buildSitemapIndex({ siteUrl: options.siteUrl, basePath: combined }));
2022
+ }
1281
2023
  /**
1282
2024
  * Pick a directory under `public/` for a top-level nav group. Prefers
1283
2025
  * the group's own href (already a `/docs/x/y` path); otherwise falls
@@ -1355,6 +2097,11 @@ function copyComponents(outputDir) {
1355
2097
  "response-tabs", "schema-viewer", "code-samples", "copy-button",
1356
2098
  "markdown-example",
1357
2099
  "accordion", "link-card", "avatar", "math",
2100
+ // Icon resolves @ui/icon/Icon.astro → built-time SVG inlining
2101
+ // via @dogsbay/icons. Used by `:::cards` `{icon=...}` and the
2102
+ // inline `:icon[name]` directive. Without this entry every page
2103
+ // emitting the icon import 500s with "module not found".
2104
+ "icon",
1358
2105
  ];
1359
2106
  for (const name of needed) {
1360
2107
  const src = join(componentsSource, name);
@@ -1409,6 +2156,32 @@ function copyAssets(sourceDir, outputDir, imageOptimization) {
1409
2156
  catch { /* source may not exist */ }
1410
2157
  }
1411
2158
  // ── CSS generation (ported from import-mkdocs.ts) ───────
2159
+ /**
2160
+ * Build the `@source inline("...")` directive that pins the
2161
+ * grid-tone palette into the generated stylesheet.
2162
+ *
2163
+ * Why we need it: tone classes like `bg-primary/10` only appear in
2164
+ * `.astro` pages emitted by Dogsbay's grid-item serializer. When
2165
+ * Tailwind's content scanner doesn't pick them up — because the
2166
+ * page lives outside the default scan globs, or because a class
2167
+ * is composed at the boundary of an interpolation — they get
2168
+ * purged. Result observed in dogsbay-docs-markdown audit: half
2169
+ * the grid demo cells render with no background. Pinning forces
2170
+ * generation regardless of scanner reach.
2171
+ *
2172
+ * Single source of truth: derived from TONE_CLASSES so any new
2173
+ * tone added to the palette is automatically safelisted.
2174
+ */
2175
+ function buildToneSafelist() {
2176
+ const seen = new Set();
2177
+ for (const classes of Object.values(TONE_CLASSES)) {
2178
+ for (const cls of classes.split(/\s+/)) {
2179
+ if (cls)
2180
+ seen.add(cls);
2181
+ }
2182
+ }
2183
+ return [...seen].sort().join(" ");
2184
+ }
1412
2185
  function generateGlobalCss() {
1413
2186
  return `@import "tailwindcss";
1414
2187
  @import "./theme.css";
@@ -1417,6 +2190,14 @@ function generateGlobalCss() {
1417
2190
  @source "../../node_modules/@dogsbay/ui/src";
1418
2191
  @source "../../node_modules/@dogsbay/docs-layout/src";
1419
2192
 
2193
+ /* Pin the grid-tone palette. These classes are emitted into
2194
+ markdown-generated .astro pages by the grid-item serializer
2195
+ (TONE_CLASSES in @dogsbay/format-astro). Without inlining,
2196
+ opacity-modified utilities like bg-primary/10 get purged when
2197
+ Tailwind doesn't see them in the scanned globs, leaving grid
2198
+ demo cells with no visible background. */
2199
+ @source inline("${buildToneSafelist()}");
2200
+
1420
2201
  /* Prose typography for rendered content */
1421
2202
  .docs-prose {
1422
2203
  line-height: 1.7;
@@ -1463,6 +2244,33 @@ function generateGlobalCss() {
1463
2244
  & dl { margin: 1rem 0; }
1464
2245
  & dt { font-weight: 600; margin-top: 0.75rem; }
1465
2246
  & dd { margin-left: 1.5rem; color: var(--muted-foreground); }
2247
+
2248
+ /* AsciiDoc block roles ([role="x"] / [.x]) preserved as classes (#384).
2249
+ _abstract marks a module's lead/intro paragraph; .lead/.small are
2250
+ Asciidoctor built-ins; _additional-resources marks the trailing
2251
+ "Additional resources" section heading. */
2252
+ & ._abstract, & .abstract, & .lead {
2253
+ font-size: 1.05rem;
2254
+ line-height: 1.6;
2255
+ color: var(--muted-foreground);
2256
+ }
2257
+ & .small { font-size: 0.875rem; }
2258
+ & h2._additional-resources, & h3._additional-resources {
2259
+ font-size: 1.15rem;
2260
+ margin-top: 2rem;
2261
+ }
2262
+
2263
+ /* Related resources (#384 R3): [role="_additional-resources"] + .Title +
2264
+ list folds to a <section class="related-resources"> (→ DITA related-links). */
2265
+ & .related-resources {
2266
+ margin-top: 2rem;
2267
+ padding-top: 1rem;
2268
+ border-top: 1px solid var(--border);
2269
+ }
2270
+ & .related-resources-title {
2271
+ font-weight: 600;
2272
+ margin: 0 0 0.5rem;
2273
+ }
1466
2274
  }
1467
2275
 
1468
2276
  @utility scrollbar-none {