Skip to content

docs(ui): replace 49 hand-rolled docs.*.tsx thin routes with one dynamic docs.$slug.tsx route#8182

Merged
JSONbored merged 1 commit into
mainfrom
docs-ui/collapse-per-page-routes-into-dynamic-slug
Jul 23, 2026
Merged

docs(ui): replace 49 hand-rolled docs.*.tsx thin routes with one dynamic docs.$slug.tsx route#8182
JSONbored merged 1 commit into
mainfrom
docs-ui/collapse-per-page-routes-into-dynamic-slug

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Every docs page carried an identical hand-rolled TanStack route file: a loader calling getDocPage, head/og meta duplicating the .mdx frontmatter's own title/description, and the same DocsPage + Suspense/LoadingState body. Adding a page meant touching 5+ files and regenerating the route tree; two tests pinned the route-file count and had to be bumped on every addition.

  • One dynamic docs.$slug.tsx route replaces all 49 per-page files. title/description come from frontmatter (already did); eyebrow (the one real per-page datum, previously a hand-copied JSX prop) moves into frontmatter too, via a new required field in source.config.ts's page schema.
  • docs.index.tsx (a real static page) and docs.fumadocs-spike-api-reference.tsx (a standalone Scalar widget, not DocsPage/MDX at all) stay as their own routes -- audited, neither is boilerplate this replaces.
  • Every literal to="/docs/<slug>" Link across the app (nav sidebar, footer, header dropdown, home page, install flow, agents/miners/maintainers pages) now uses the typed to="/docs/$slug" params={{ slug }} form instead -- done properly with real params, not a type-erasing cast, including fixing two pre-existing as "/docs" casts in docs-nav.tsx/docs.index.tsx found along the way.
  • docs.miner-coding-agent.tsx's three exported data arrays (asserted against by a test, unrelated to routing) moved to src/lib/miner-coding-agent-docs-data.ts; their test moved alongside them.
  • The two route-file-count-pinning tests (docs-source-server-isolation, docs-routes-loading-state) now assert the single dynamic route's shape instead of a per-page count.
  • Three test-only Link mocks (docs.ams-observability-callout, install, install.permissions) updated to interpolate $-params the same way the real router resolves them, so their href assertions stay faithful.
  • Fixed a pre-existing tab/space whitespace inconsistency in self-hosting-security.mdx's Caddyfile sample that git diff --check caught once this PR's diff touched a nearby line.

Reopened as a fresh PR (was #8181, which GitHub blocked from reopening after a force-push while closed -- an intentional GitHub safety restriction, not an error).

Closes #8151.

Test plan

  • npm run --workspace apps/loopover-ui typecheck -- clean, zero errors (25 real type errors from the route collapse fixed with proper params, not casts).
  • npm run --workspace apps/loopover-ui lint -- 0 errors (pre-existing repo-wide react-refresh/only-export-components warnings on route files, unrelated to this change).
  • Full apps/loopover-ui test suite: 509/509 passing across 81 files.
  • npm run docs:drift-check -- clean.
  • npm run --workspace apps/loopover-ui build -- production build succeeds.
  • git diff --check -- clean.
  • Verified live in the browser: a real docs page (/docs/quickstart) renders correct title/eyebrow/description/MDX content; sidebar nav renders and highlights the active page; client-side navigation between docs pages works; a nonexistent slug renders a real 404 with a "Go home" link; the docs index (/docs) and the untouched Scalar API reference route (/docs/fumadocs-spike-api-reference) both still work.
  • Touched paths are under apps/**, outside coverage.include, so Codecov does not gate this patch (per the issue's own Test Coverage Requirements note).

@JSONbored JSONbored self-assigned this Jul 23, 2026
@JSONbored
JSONbored force-pushed the docs-ui/collapse-per-page-routes-into-dynamic-slug branch from 32e8b17 to e792fdf Compare July 23, 2026 09:16
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 23, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui 8dd7fb1 Commit Preview URL

Branch Preview URL
Jul 23 2026, 09:35 AM

@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@loopover-orb loopover-orb Bot added the gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. label Jul 23, 2026
@loopover-orb

loopover-orb Bot commented Jul 23, 2026

Copy link
Copy Markdown
Contributor

Caution

🛑 LoopOver review result - fixes required

Review updated: 2026-07-23 09:21:51 UTC

123 files · 1 AI reviewer · no blockers · CI failing · blocked

🛑 Suggested Action - Manual Review

Review summary
This PR consolidates 49 hand-rolled docs.<slug>.tsx routes into a single dynamic docs.$slug.tsx route, moving eyebrow into frontmatter (with a new required zod field in source.config.ts), and updates every /docs/<slug> Link across the app to the typed to="/docs/$slug" params={{slug}} form. The migration is consistent and thorough: nav, footer, header dropdown, home page, install flow, agents/miners/maintainers pages, and even the ams-observability-callout and miner-coding-agent test-only mocks were updated in lockstep, and the routeTree.gen.ts diff is a coherent regeneration reflecting the route consolidation. This closes issue #8151 directly, is well-scoped operator/DX work rather than new feature surface, and the data moved out of miner-coding-agent.tsx into a separate data file with its test relocated alongside it is a clean, non-lossy extraction.

Nits — 6 non-blocking
  • docs-nav.tsx's `DocsNavLink` special-cases `to === "/docs"` inline; consider making the docsNav item type explicit about which entries are the index vs. a slug instead of string-slicing `to.slice("/docs/".length)` at render time (apps/loopover-ui/src/components/site/docs-nav.tsx).
  • site-footer.tsx's `cols` array mixes `to` and `docSlug` shapes in one array causing a `"docSlug" in l` branch at render time for every link — a discriminated union with a single render helper (like docs-nav.tsx's `DocsNavLink`) would avoid repeating the two-branch Link JSX in place (apps/loopover-ui/src/components/site/site-footer.tsx).
  • The new `eyebrow` zod field is `z.string()` with no `.min(1)`, so an empty-string eyebrow in frontmatter would pass validation and render as a blank badge (apps/loopover-ui/source.config.ts).
  • Consider adding a lint/test guard that fails if a content/docs/*.mdx page is missing eyebrow, price this in beyond just the required zod field, since the comment states this should be caught at build time — confirm fumadocs-mdx's build actually fails loudly here.
  • In docs-nav.tsx, a small type change (e.g. `{ kind: 'index' } | { kind: 'slug', slug: string }`) would remove the fragile `/docs/` prefix slicing and make the two Link branches exhaustive by type rather than by string comparison.
  • PR author also opened the linked issue — Link an issue that was opened by a different contributor, or provide a rationale for why this self-authored issue represents genuine discovery work.

CI checks failing

  • validate
  • validate-code

Decision drivers

  • ✅ Code review — No blockers (1 reviewer)
  • ✅ Gate result — Passing (No configured blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ✅ Linked #8151
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (1 linked issue).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 14 registered-repo PR(s), 14 merged, 253 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 14 PR(s), 253 issue(s).
Improvement ✅ Minor risk: clean · value: minor · LLM: significant
Linked issue satisfaction

Addressed
The PR adds a single docs.$slug.tsx dynamic route with loader, notFound handling, and frontmatter-derived head meta, removes the 49 per-page route files, updates all internal Links to typed dynamic params, and replaces the two count-pinning tests with shape assertions on the dynamic route as requested.

Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is configured for direct PR review.
  • Public profile languages: Python, TypeScript, Ruby, Go, JavaScript, MDX, Shell, Solidity
  • Official Gittensor activity: 14 PR(s), 253 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask &lt;question&gt; answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat &lt;question&gt; answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/agents desktop before /agents
before /agents
after /agents
after /agents
/agents mobile before /agents (mobile)
before /agents (mobile)
after /agents (mobile)
after /agents (mobile)
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/agents before /agents (scroll)
before /agents (scroll)
after /agents (scroll)
after /agents (scroll)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@loopover-orb loopover-orb Bot added the manual-review Gittensor contributor context label Jul 23, 2026
JSONbored added a commit that referenced this pull request Jul 23, 2026
…celled() (#8189)

An earlier, unrelated step failing anywhere in validate-code's long chain of
drift checks (migrations, schema, env-reference, docs, manifest, engine-parity,
branding, .nvmrc, release-manifest, observability, the MCP version audit) --
without continue-on-error -- skips every step after it by GitHub Actions' own
default. "UI tests (ui-miner)" and "UI tests (miner-extension)" already had a
!cancelled() guard for exactly this reason, but "Build UI-kit package",
"Generate docs content collections", "UI lint", "UI typecheck", "UI tests
(ui)", "Extension lint", "Extension typecheck", and "UI build" didn't.

Confirmed live: a same-day MCP release tripped the version-audit step, which
skipped "Build UI-kit package" entirely (no guard), and "UI tests (ui-miner)"
(guarded, so it still ran) then failed with a confusing "Failed to resolve
import '@loopover/ui-kit/components/...'" that looked like a real code
regression instead of a skipped upstream build (PR #8182).

The job as a whole still fails if any step fails -- this only stops one
unrelated failure from masking every UI-specific result behind it, matching
the resilience the two guarded test steps already had.
…mic docs.$slug.tsx route

Every docs page carried an identical hand-rolled TanStack route file: a loader
calling getDocPage, head/og meta duplicating the .mdx frontmatter's own
title/description, and the same DocsPage + Suspense/LoadingState body. Adding
a page meant touching 5+ files and regenerating the route tree; two tests
pinned the route-file count and had to be bumped on every addition.

- One dynamic docs.$slug.tsx route replaces all 49 per-page files. title/
  description come from frontmatter (already did); eyebrow (the one real
  per-page datum, previously a hand-copied JSX prop) moves into frontmatter
  too, via a new required field in source.config.ts's page schema.
- docs.index.tsx (a real static page) and docs.fumadocs-spike-api-reference.tsx
  (a standalone Scalar widget, not DocsPage/MDX at all) stay as their own
  routes -- audited, neither is boilerplate this replaces.
- Every literal `to="/docs/<slug>"` Link across the app (nav sidebar, footer,
  header dropdown, home page, install flow, agents/miners/maintainers pages)
  now uses the typed `to="/docs/$slug" params={{ slug }}` form instead --
  done properly with real params, not a type-erasing cast, including fixing
  two pre-existing `as "/docs"` casts in docs-nav.tsx/docs.index.tsx found
  along the way.
- docs.miner-coding-agent.tsx's three exported data arrays (asserted against
  by a test, unrelated to routing) moved to
  src/lib/miner-coding-agent-docs-data.ts; their test moved alongside them.
- The two route-file-count-pinning tests (docs-source-server-isolation,
  docs-routes-loading-state) now assert the single dynamic route's shape
  instead of a per-page count.
- Three test-only `Link` mocks (docs.ams-observability-callout,
  install, install.permissions) updated to interpolate $-params the same
  way the real router resolves them, so their href assertions stay faithful.

Verified in the browser: real docs pages render correctly (title/eyebrow/
description/MDX content), sidebar nav renders + highlights the active page,
client-side navigation works, a nonexistent slug renders a real 404, the
docs index and the untouched Scalar API route both still work.

Closes #8151.
@JSONbored
JSONbored force-pushed the docs-ui/collapse-per-page-routes-into-dynamic-slug branch from e792fdf to 8dd7fb1 Compare July 23, 2026 09:32
@codecov

codecov Bot commented Jul 23, 2026

Copy link
Copy Markdown

Bundle Report

Changes will decrease total bundle size by 69.75kB (-0.94%) ⬇️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.38MB -69.75kB (-0.94%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-DVKvnOXW.js (New) 2.17MB 2.17MB 100.0% 🚀
assets/tanstack-vendor-BMwJ15Td.js (New) 739.41kB 739.41kB 100.0% 🚀
assets/docs.fumadocs-spike-api-reference-CC2gTBI8.js (New) 442.92kB 442.92kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-nnV-E1Dr.js (New) 201.71kB 201.71kB 100.0% 🚀
assets/modal-DubLrcQG.js (New) 184.38kB 184.38kB 100.0% 🚀
assets/client-Do0Cn-m0.js (New) 146.06kB 146.06kB 100.0% 🚀
assets/self-hosting-operations-ChT3S0wX.js (New) 128.89kB 128.89kB 100.0% 🚀
assets/self-hosting-configuration-C9DpQOnR.js (New) 81.92kB 81.92kB 100.0% 🚀
assets/maintainer-panel-CFsc2nIB.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/tuning-DQ-Go4IW.js (New) 65.45kB 65.45kB 100.0% 🚀
assets/ui-vendor-DzKWV1oI.js (New) 57.04kB 57.04kB 100.0% 🚀
assets/self-hosting-release-checklist-DwPT2elm.js (New) 51.82kB 51.82kB 100.0% 🚀
assets/self-hosting-security-UjkCSBML.js (New) 44.56kB 44.56kB 100.0% 🚀
assets/github-app-BWDeFj4K.js (New) 36.16kB 36.16kB 100.0% 🚀
assets/routes-dwhJsmdM.js (New) 34.98kB 34.98kB 100.0% 🚀
assets/self-hosting-troubleshooting-b0kPebbU.js (New) 33.56kB 33.56kB 100.0% 🚀
assets/how-reviews-work-DNkrnbRy.js (New) 33.09kB 33.09kB 100.0% 🚀
assets/self-hosting-github-app-BJ_j4TSx.js (New) 32.78kB 32.78kB 100.0% 🚀
assets/ams-operations-runbook-qJrg5R9n.js (New) 30.02kB 30.02kB 100.0% 🚀
assets/ams-deployment-Cj7LiqsC.js (New) 28.59kB 28.59kB 100.0% 🚀
assets/maintainer-self-hosting-z7sUiW6i.js (New) 27.91kB 27.91kB 100.0% 🚀
assets/owner-panel-Bcdv81u6.js (New) 27.36kB 27.36kB 100.0% 🚀
assets/app-DRrxgHHz.js (New) 25.7kB 25.7kB 100.0% 🚀
assets/ams-discovery-plane-Dj14_GP0.js (New) 25.18kB 25.18kB 100.0% 🚀
assets/privacy-security-B2YQoqgW.js (New) 24.7kB 24.7kB 100.0% 🚀
assets/ams-config-precedence-fFZf8PLV.js (New) 24.19kB 24.19kB 100.0% 🚀
assets/self-hosting-quickstart-oAknXVVp.js (New) 24.1kB 24.1kB 100.0% 🚀
assets/app.runs-CmXX3AFB.js (New) 23.56kB 23.56kB 100.0% 🚀
assets/ams-kill-switch-incident-DNGTSquM.js (New) 23.44kB 23.44kB 100.0% 🚀
assets/miner-panel-BLJoX9VX.js (New) 20.28kB 20.28kB 100.0% 🚀
assets/ams-observability-Bz_7N2Ol.js (New) 20.08kB 20.08kB 100.0% 🚀
assets/maintainer-install-trust-sfWxUO6-.js (New) 20.04kB 20.04kB 100.0% 🚀
assets/ams-goal-spec-JUuH4Mqf.js (New) 19.77kB 19.77kB 100.0% 🚀
assets/self-hosting-backup-scaling-Cfyh-oWs.js (New) 18.95kB 18.95kB 100.0% 🚀
assets/federated-fleet-intelligence-CmLggC4I.js (New) 18.7kB 18.7kB 100.0% 🚀
assets/beta-onboarding-BYeuZvHa.js (New) 17.58kB 17.58kB 100.0% 🚀
assets/api._op-DSdCmLAt.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-BgJNLgm_.js (New) 16.65kB 16.65kB 100.0% 🚀
assets/self-hosting-rees-BQ-HWZaW.js (New) 15.66kB 15.66kB 100.0% 🚀
assets/miner-quickstart-BzFG0vVg.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/app.index-BDfLkEja.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/self-hosting-ai-providers-Dgq8ODV3.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/docs._slug-Br9-j0eU.js (New) 15.22kB 15.22kB 100.0% 🚀
assets/backtest-calibration-DCMstYSV.js (New) 14.54kB 14.54kB 100.0% 🚀
assets/playground-panel-CssZBugw.js (New) 14.49kB 14.49kB 100.0% 🚀
assets/ams-sizing-DlQ2Tpal.js (New) 14.17kB 14.17kB 100.0% 🚀
assets/owner-checklist-CjuMsObK.js (New) 14.12kB 14.12kB 100.0% 🚀
assets/self-hosting-unified-ams-orb-CrZoaCQM.js (New) 12.04kB 12.04kB 100.0% 🚀
assets/self-hosting-releases-DjC-Ptjv.js (New) 12.03kB 12.03kB 100.0% 🚀
assets/ams-unattended-scheduling-ClEtb3ef.js (New) 11.58kB 11.58kB 100.0% 🚀
assets/miner-coding-agent-J4h0i7XI.js (New) 11.38kB 11.38kB 100.0% 🚀
assets/capacity-n7e4TsnD.js (New) 10.51kB 10.51kB 100.0% 🚀
assets/troubleshooting-C6ufsv7S.js (New) 10.34kB 10.34kB 100.0% 🚀
assets/app.audit-Da9mzJBk.js (New) 10.11kB 10.11kB 100.0% 🚀
assets/app.config-generator-CapWoleK.js (New) 10.09kB 10.09kB 100.0% 🚀
assets/extension-CRIAlEtF.js (New) 10.04kB 10.04kB 100.0% 🚀
assets/fairness-Mf07FJxn.js (New) 8.34kB 8.34kB 100.0% 🚀
assets/scoreability-Dqd9Qy-v.js (New) 8.28kB 8.28kB 100.0% 🚀
assets/self-hosting-rees-analyzers-Du3aZ2LN.js (New) 8.25kB 8.25kB 100.0% 🚀
assets/maintainers-D8ojGNv_.js (New) 8.09kB 8.09kB 100.0% 🚀
assets/miners-XsO65sNC.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-BVFtpo-q.js (New) 7.8kB 7.8kB 100.0% 🚀
assets/self-hosting-rag-CPhlUZja.js (New) 7.77kB 7.77kB 100.0% 🚀
assets/ams-fleet-manifest-CfUTl8H8.js (New) 7.39kB 7.39kB 100.0% 🚀
assets/commands-panel-Bib47Pnn.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-DQpmVxC9.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/ams-env-reference-BzlXtCIu.js (New) 6.51kB 6.51kB 100.0% 🚀
assets/ai-summaries-Djnk1JOE.js (New) 6.46kB 6.46kB 100.0% 🚀
assets/roadmap-WoB0dnzA.js (New) 6.33kB 6.33kB 100.0% 🚀
assets/digest-panel-ZgNd7a8M.js (New) 6.18kB 6.18kB 100.0% 🚀
assets/repos._owner._repo.quality-CDD0uRED.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs.index-BR9MMW2e.js (New) 5.73kB 5.73kB 100.0% 🚀
assets/docs-nav-C3GvxRzr.js (New) 5.53kB 5.53kB 100.0% 🚀
assets/loopover-commands-D_BJY3Ef.js (New) 5.31kB 5.31kB 100.0% 🚀
assets/branch-analysis-CatBr8Ig.js (New) 5.29kB 5.29kB 100.0% 🚀
assets/mcp-clients-SI7ggdqB.js (New) 5.2kB 5.2kB 100.0% 🚀
assets/miner-workflow-BhYy7u0P.js (New) 4.91kB 4.91kB 100.0% 🚀
assets/api.index-C2_YYeuE.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/quickstart-fck6FbOm.js (New) 4.32kB 4.32kB 100.0% 🚀
assets/upstream-drift-DO1Hc7Kt.js (New) 3.98kB 3.98kB 100.0% 🚀
assets/docs-CA6nPQNT.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-Duj47ovc.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-BHmq1ZDu.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-DXnvVZC2.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench--_c5xuwl.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/session-DkSZylbC.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tooltip-CXWeVMTF.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tabs-BNz7-hZv.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-DCLBrE_1.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-65ZfMb7R.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-DyHQGxuB.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-DRZHUWGo.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/sparkles-Du_8MKRg.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/app.owner-ZJt37xYv.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-BFEkep-8.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-BYtbYwxL.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/reveal-CxA22U9V.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-DY_eaSU4.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-Dg5qWtr3.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-B0PBZvas.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-DkGtqDA5.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-S_UjeAkN.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-CcPTKp5E.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-Bh9JcPcq.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-b5b1cXff.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-BhE0PZFx.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/wrench-C1Y4eRaK.js (New) 303 bytes 303 bytes 100.0% 🚀
assets/list-checks-CgjAAGHA.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/shield-LX2DNh_C.js (New) 272 bytes 272 bytes 100.0% 🚀
assets/workflow-BoqFB9A4.js (New) 265 bytes 265 bytes 100.0% 🚀
assets/compass-CgMmqy7R.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-Cp3th98K.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/activity-CUPVQxhh.js (New) 234 bytes 234 bytes 100.0% 🚀
assets/message-square-BM1WLK33.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-BjVRSHZQ.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-BRJH6UeY.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-BIbhl_Fm.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-BAhqJOYk.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-DwNGgkZl.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/circle-BCd49sFN.js (New) 130 bytes 130 bytes 100.0% 🚀
assets/add-scalar-classes-skwtr86D.js (Deleted) -2.17MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-CQ62R7uP.js (Deleted) -812.72kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-BEMElPeZ.js (Deleted) -442.92kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-CoYN8rV2.js (Deleted) -201.71kB 0 bytes -100.0% 🗑️
assets/modal-n0_W79T7.js (Deleted) -184.38kB 0 bytes -100.0% 🗑️
assets/client-B_Zq-lxZ.js (Deleted) -146.06kB 0 bytes -100.0% 🗑️
assets/self-hosting-operations-D6ssSC0V.js (Deleted) -128.92kB 0 bytes -100.0% 🗑️
assets/self-hosting-configuration-CILDH_MR.js (Deleted) -81.9kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-DNwJaKRT.js (Deleted) -78.96kB 0 bytes -100.0% 🗑️
assets/tuning-CCQKmR9N.js (Deleted) -65.43kB 0 bytes -100.0% 🗑️
assets/ui-vendor-zM9W8hnl.js (Deleted) -57.04kB 0 bytes -100.0% 🗑️
assets/self-hosting-release-checklist-Dphbwx0x.js (Deleted) -51.79kB 0 bytes -100.0% 🗑️
assets/self-hosting-security-Bse8Y5lc.js (Deleted) -44.54kB 0 bytes -100.0% 🗑️
assets/github-app-BdwQjGgm.js (Deleted) -36.18kB 0 bytes -100.0% 🗑️
assets/routes-CVOsAkuH.js (Deleted) -34.83kB 0 bytes -100.0% 🗑️
assets/self-hosting-troubleshooting-D0gHGJxT.js (Deleted) -33.53kB 0 bytes -100.0% 🗑️
assets/how-reviews-work-C1lka94T.js (Deleted) -33.07kB 0 bytes -100.0% 🗑️
assets/self-hosting-github-app-BwPT0UUI.js (Deleted) -32.76kB 0 bytes -100.0% 🗑️
assets/ams-operations-runbook-D0GUTarD.js (Deleted) -29.99kB 0 bytes -100.0% 🗑️
assets/ams-deployment-CGi105GM.js (Deleted) -28.57kB 0 bytes -100.0% 🗑️
assets/maintainer-self-hosting-C9R9rA-D.js (Deleted) -27.89kB 0 bytes -100.0% 🗑️
assets/owner-panel-B0njVMeb.js (Deleted) -27.36kB 0 bytes -100.0% 🗑️
assets/app-BhFbgJXo.js (Deleted) -25.7kB 0 bytes -100.0% 🗑️
assets/ams-discovery-plane-BtWJ9Dmo.js (Deleted) -25.16kB 0 bytes -100.0% 🗑️
assets/privacy-security-WIj9-Fg7.js (Deleted) -24.77kB 0 bytes -100.0% 🗑️
assets/self-hosting-quickstart-Bx000N7y.js (Deleted) -24.22kB 0 bytes -100.0% 🗑️
assets/ams-config-precedence-BtcEO-BB.js (Deleted) -24.17kB 0 bytes -100.0% 🗑️
assets/app.runs-D97kljae.js (Deleted) -23.56kB 0 bytes -100.0% 🗑️
assets/ams-kill-switch-incident-Cm8fmnpk.js (Deleted) -23.41kB 0 bytes -100.0% 🗑️
assets/miner-panel-CO-UFwsN.js (Deleted) -20.25kB 0 bytes -100.0% 🗑️
assets/ams-observability-DypmhEc5.js (Deleted) -20.06kB 0 bytes -100.0% 🗑️
assets/maintainer-install-trust-Cj9HizN_.js (Deleted) -20.02kB 0 bytes -100.0% 🗑️
assets/ams-goal-spec-DrBhPLnG.js (Deleted) -19.74kB 0 bytes -100.0% 🗑️
assets/self-hosting-backup-scaling-ByHjMGsT.js (Deleted) -18.93kB 0 bytes -100.0% 🗑️
assets/federated-fleet-intelligence-Di2WhbEk.js (Deleted) -18.67kB 0 bytes -100.0% 🗑️
assets/beta-onboarding-BMG7n3-A.js (Deleted) -17.56kB 0 bytes -100.0% 🗑️
assets/api._op--3n9V_LB.js (Deleted) -17.55kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-CVlnIeTf.js (Deleted) -16.63kB 0 bytes -100.0% 🗑️
assets/self-hosting-rees-ClrKb8Z4.js (Deleted) -15.63kB 0 bytes -100.0% 🗑️
assets/app.index-17Uoi2xf.js (Deleted) -15.62kB 0 bytes -100.0% 🗑️
assets/miner-quickstart-CJE89TkP.js (Deleted) -15.6kB 0 bytes -100.0% 🗑️
assets/self-hosting-ai-providers-B_r9CMOF.js (Deleted) -15.5kB 0 bytes -100.0% 🗑️
assets/backtest-calibration-DyNIBk9H.js (Deleted) -14.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-Lyv3ECjQ.js (Deleted) -14.49kB 0 bytes -100.0% 🗑️
assets/ams-sizing-CCwcc4yG.js (Deleted) -14.15kB 0 bytes -100.0% 🗑️
assets/owner-checklist-wLu4sljM.js (Deleted) -14.09kB 0 bytes -100.0% 🗑️
assets/self-hosting-unified-ams-orb-BuqBwqrW.js (Deleted) -12.02kB 0 bytes -100.0% 🗑️
assets/self-hosting-releases-BHb_daTk.js (Deleted) -12.01kB 0 bytes -100.0% 🗑️
assets/ams-unattended-scheduling-DxtbZRwf.js (Deleted) -11.55kB 0 bytes -100.0% 🗑️
assets/miner-coding-agent-CxNvCyMm.js (Deleted) -11.35kB 0 bytes -100.0% 🗑️
assets/capacity-BK7tDtSx.js (Deleted) -10.49kB 0 bytes -100.0% 🗑️
assets/troubleshooting-ZA5GZ-4v.js (Deleted) -10.32kB 0 bytes -100.0% 🗑️
assets/app.audit-CCup3IHc.js (Deleted) -10.11kB 0 bytes -100.0% 🗑️
assets/app.config-generator-DeE_RlcD.js (Deleted) -10.09kB 0 bytes -100.0% 🗑️
assets/extension-C9Ku1Jwt.js (Deleted) -10.04kB 0 bytes -100.0% 🗑️
assets/fairness-E7Ek7Wo5.js (Deleted) -8.34kB 0 bytes -100.0% 🗑️
assets/scoreability-poHJkI6F.js (Deleted) -8.25kB 0 bytes -100.0% 🗑️
assets/self-hosting-rees-analyzers-9fJ9HWmQ.js (Deleted) -8.22kB 0 bytes -100.0% 🗑️
assets/maintainers-C90IguRl.js (Deleted) -8.03kB 0 bytes -100.0% 🗑️
assets/miners-Da_r7cZJ.js (Deleted) -7.85kB 0 bytes -100.0% 🗑️
assets/agents-BTbw_UtA.js (Deleted) -7.76kB 0 bytes -100.0% 🗑️
assets/self-hosting-rag-Bev7P2V5.js (Deleted) -7.75kB 0 bytes -100.0% 🗑️
assets/ams-fleet-manifest-CgUx8kTD.js (Deleted) -7.37kB 0 bytes -100.0% 🗑️
assets/commands-panel-DidQnoPg.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-BZO0PxFd.js (Deleted) -6.5kB 0 bytes -100.0% 🗑️
assets/ams-env-reference-DkFgrMww.js (Deleted) -6.48kB 0 bytes -100.0% 🗑️
assets/ai-summaries-CeBa05SM.js (Deleted) -6.43kB 0 bytes -100.0% 🗑️
assets/roadmap-CjhYOuB5.js (Deleted) -6.33kB 0 bytes -100.0% 🗑️
assets/digest-panel-CgMVjQaX.js (Deleted) -6.18kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-BF4J6oBl.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs.index-CbCx0Hnd.js (Deleted) -5.61kB 0 bytes -100.0% 🗑️
assets/loopover-commands-BvLYLTee.js (Deleted) -5.29kB 0 bytes -100.0% 🗑️
assets/branch-analysis-CvtZg7CX.js (Deleted) -5.27kB 0 bytes -100.0% 🗑️
assets/mcp-clients-Bs90v4jK.js (Deleted) -5.18kB 0 bytes -100.0% 🗑️
assets/miner-workflow-CaE5ZMgp.js (Deleted) -4.89kB 0 bytes -100.0% 🗑️
assets/api.index-DdBohZMH.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/quickstart-DvGGESXo.js (Deleted) -4.29kB 0 bytes -100.0% 🗑️
assets/upstream-drift-C3DiJIwp.js (Deleted) -3.96kB 0 bytes -100.0% 🗑️
assets/api-Lm29CsKh.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-HGCTYSM6.js (Deleted) -2.67kB 0 bytes -100.0% 🗑️
assets/app.workbench-CmIeuT5v.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/session-BFrl5agC.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tooltip-BJ1soDda.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tabs-C3J2IitS.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-DnJ3Flvo.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-CkcO_yq8.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-DJGLDPj0.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/docs.ai-summaries-B7egGraR.js (Deleted) -506 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-Bqr3cuxx.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/docs.backtest-calibration-BLexSVDd.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.branch-analysis-Dc8C2zMT.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.scoreability-BG5U0OTU.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.upstream-drift--Imzdfo5.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.federated-fleet-intelligence-Ms_VPCJ2.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-install-trust-CQPh6vRc.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-ai-providers-IebuUvQu.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-backup-scaling-BdQgWYPF.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-configuration-DpfW-qzM.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-docs-audit-CkxfyDcb.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-github-app-dIZizTkr.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-quickstart-xnv1OkMB.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rag-Ds1XrnWj.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-QX3TlDYY.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-analyzers-DRgduXzQ.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-release-checklist-DHPLH7M2.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-releases-mlR-4-rt.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-security-DvvWvdFb.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-troubleshooting-BNSzGUZa.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-unified-ams-orb-BBhNLzgf.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-config-precedence-CrHB9lZp.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-deployment-4gH86yB6.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-discovery-plane-BPLVFIiG.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-env-reference-DZ-z48Ol.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-fleet-manifest-Bg2v5xOp.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-goal-spec-BHYumMK1.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-kill-switch-incident-DBmfuQHz.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-observability-DuY03CRb.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-operations-runbook-DZQ4ocmi.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-sizing-DVCzcwA9.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-unattended-scheduling-CPmzD6ol.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.beta-onboarding-CWDV80he.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.capacity-CNRDz9km.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-self-hosting-Bhr3GCyz.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.mcp-clients-BulfgzRx.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.owner-checklist-BwIfrgZe.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.quickstart-DlhhqxQy.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.github-app-CnuIaf3H.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-workflow-CuBbrDi4.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.privacy-security-CbdWhqAW.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.troubleshooting-DPjIirmX.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.tuning-BdIWZu5L.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.loopover-commands-DbwIaLFM.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/sparkles-uAWQNZpi.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/docs.how-reviews-work-D3Z6qpxM.js (Deleted) -493 bytes 0 bytes -100.0% 🗑️
assets/app.owner-Dt-gTVoX.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-zFFdGb3T.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-DgkxoxC6.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/reveal-BMfAYWaa.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-4Y4kLsLx.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-DGiYWahA.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-COCdyPbg.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-BpXtxgSF.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-ylYG5duW.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-STLqjB4L.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-DKI8CwbT.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-DbXj4Vdi.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-RXpYxNCD.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/wrench-DZWwKJuP.js (Deleted) -303 bytes 0 bytes -100.0% 🗑️
assets/list-checks-CDNIqslj.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/shield-cUmD_d6n.js (Deleted) -272 bytes 0 bytes -100.0% 🗑️
assets/workflow-C98s2Qyp.js (Deleted) -265 bytes 0 bytes -100.0% 🗑️
assets/compass-IoZoEAkA.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-BoqW5TwS.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/activity-CFqB2Ayc.js (Deleted) -234 bytes 0 bytes -100.0% 🗑️
assets/message-square-DpTddfqV.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-BBZ9eJaD.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-Br8vqIR8.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-gsdwALX3.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-BiPmzvg2.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-DW2U7Y8d.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️
assets/circle-CPYTbEYU.js (Deleted) -130 bytes 0 bytes -100.0% 🗑️

@JSONbored
JSONbored merged commit bbdede8 into main Jul 23, 2026
13 checks passed
@JSONbored
JSONbored deleted the docs-ui/collapse-per-page-routes-into-dynamic-slug branch July 23, 2026 09:37
JSONbored added a commit that referenced this pull request Jul 23, 2026
…it in the ui:lint chain (#8193)

Root cause of the #8182 docs mangling: prettier coverage differed between
what 'npm run format' would rewrite locally and what CI checked (nothing).
Now the three UI workspaces agree everywhere:

- .prettierignore in every workspace covers the generated artifacts
  (openapi.json, routeTree.gen.ts, dist, CHANGELOG.md) and — deliberately —
  content/docs: prettier's mdx pass reformats the template-literal code
  inside <CodeBlock code={`...`}> attributes, destroying embedded
  YAML/compose indentation. Docs mdx stays formatter-free.
- One mechanical reformat brings every remaining file to prettier-clean.
- Each workspace gains format:check, wired into the root ui:lint chain that
  CI's validate job and npm run test:ci already run — local format runs and
  CI now enforce the identical surface, so drift of this class cannot land
  silently again.
JSONbored added a commit that referenced this pull request Jul 23, 2026
… runner YAML snippet, kill-switch route assertion

Three drift tests went red on main when #8182 replaced the per-page docs
routes with the dynamic docs.$slug.tsx route:

- selfhost-docs-audit's manifest pointed at the deleted docs.*.tsx files;
  its entries now name the pages' real sources (content/docs/<slug>.mdx).
- The whole-tree format pass in that PR stripped the indentation out of
  self-hosting-operations.mdx's multi-runner docker-compose example,
  leaving invalid YAML operators would copy-paste; the snippet is restored
  verbatim (mdx code blocks are not formatter-enforced in CI — eslint-only).
- kill-switch-incident-runbook's route assertion now checks the dynamic
  route that actually serves the page.
JSONbored added a commit that referenced this pull request Jul 23, 2026
… runner YAML snippet, kill-switch route assertion (#8192)

Three drift tests went red on main when #8182 replaced the per-page docs
routes with the dynamic docs.$slug.tsx route:

- selfhost-docs-audit's manifest pointed at the deleted docs.*.tsx files;
  its entries now name the pages' real sources (content/docs/<slug>.mdx).
- The whole-tree format pass in that PR stripped the indentation out of
  self-hosting-operations.mdx's multi-runner docker-compose example,
  leaving invalid YAML operators would copy-paste; the snippet is restored
  verbatim (mdx code blocks are not formatter-enforced in CI — eslint-only).
- kill-switch-incident-runbook's route assertion now checks the dynamic
  route that actually serves the page.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

docs(ui): replace the 49 hand-rolled docs.*.tsx thin routes with one dynamic docs.$slug.tsx route

1 participant