<?xml version="1.0" encoding="UTF-8"?>
<!--
  scout-patches.com sitemap.

  Static rather than generated, because the site has three client routes
  (`/`, `/app`, `/discover/:patchId` — see landing/src/App.tsx) and a handful of
  server-rendered pages from the backend. A generator would be more machinery
  than the surface justifies; the drift risk is a route being added here and
  forgotten.

  Without this file the request falls through to the SPA catch-all and
  /sitemap.xml answers with the landing page's HTML under
  `Content-Type: application/json`, which is not a sitemap by any reading.

  DELIBERATELY ABSENT:
  - /get and /eula — 302 and 301 redirects. A sitemap lists destinations.
  - /support — 264 characters of server-rendered text; thin.
  - /discover/:patchId — renders from the SPA shell (41 characters of HTML
    before JS), and at catalogue scale it would be thousands of near-duplicate
    pages. The same thin-content trap the storefront just fixed; see
    store/lib/store/indexable.ts.

  The storefront is a separate origin with its own sitemap. Do not list store
  URLs here.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://scout-patches.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://scout-patches.com/app</loc>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
  </url>
  <!--
    The crawlable product brief (backend/src/context/content.ts) — ~79,000
    characters of server-rendered text, by a wide margin the most substantial
    page on this origin and the one built for AI tools to read. It was reachable
    but in no sitemap and linked from nowhere.
  -->
  <url>
    <loc>https://scout-patches.com/context</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://scout-patches.com/brand</loc>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>
  <url>
    <loc>https://scout-patches.com/terms</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://scout-patches.com/privacy</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
