{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're trying to access or generate a **sitemap.xml** file. \n\nSince I am an AI and not a web server, I don't have a directory of static files to \"serve\" you. However, I can certainly help you **build one** for your website or explain how they work.\n\n### What is a sitemap.xml?\nA sitemap is an XML file that lists the URLs for a site. It allows search engines (like Google or Bing) to crawl your site more efficiently by telling them which pages are most important and how often they are updated.\n\n---\n\n### Basic Template\nIf you are building a small site manually, here is a standard structure:\n\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n   <url>\n      <loc>https://www.example.com/</loc>\n      <lastmod>2026-04-12</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>1.0</priority>\n   </url>\n   <url>\n      <loc>https://www.example.com/about</loc>\n      <lastmod>2026-03-15</lastmod>\n      <changefreq>yearly</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n### Common Ways to Generate One\nDepending on your platform, you rarely have to write this by hand:\n\n* **WordPress:** Use plugins like Yoast SEO or Rank Math.\n* **Static Sites (Next.js/Gatsby):** Use packages like `next-sitemap` to auto-generate it during the build process.\n* **Webflow/Shopify:** These platforms usually generate and update your sitemap automatically at `yourdomain.com/sitemap.xml`.\n* **Manual Tools:** You can use online crawlers (like XML-Sitemaps.com) to generate one for free for up to 500 pages.\n\n---\n\n**Are you looking to create a sitemap for a specific project, or were you trying to find the sitemap for a particular website?**"}