<?xml version="1.0" encoding="UTF-8"?>
<!--
  F4. The public, credential-free surface of Dash.

  WHAT IS DELIBERATELY ABSENT: individual listing, branch, seller and collection
  pages. Dash is a client-rendered SPA with no SSR, so every one of those routes
  serves the same shell with the same <title> and the same <meta description>.
  Submitting several hundred URLs that a crawler cannot tell apart is not a
  neutral act. It is a duplicate-content signal, and it would make ranking
  worse rather than better. M2 measured this. They belong here once per-route
  metadata exists, and not before.

  What remains is the set of pages whose content is genuinely their own: the two
  agent documentation files, which are real text and are the surface Dash is
  actually discovered through, and the four static pages.

  NO <lastmod>. The honest value is unknown at build time. These files change
  when someone edits them, not when the bundle compiles, and a lastmod that
  says "today" on every build teaches a crawler to ignore the field.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <!-- Agent documentation. Listed first and weighted highest because it is the
       only surface that answers a question without running JavaScript. -->
  <url>
    <loc>https://go-dash.app/llms.txt</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://go-dash.app/llms-full.txt</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- Static pages. -->
  <url>
    <loc>https://go-dash.app/</loc>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://go-dash.app/pricing</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://go-dash.app/terms</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://go-dash.app/privacy</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>

</urlset>
