{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're looking for the sitemap of a website, or perhaps you're asking how they work! \n\nSince I'm an AI and not a traditional website with a public file directory, I don't have a personal `/sitemap.xml` for you to crawl. However, if you are trying to understand what they are or need help creating one, here is the breakdown:\n\n### What is a Sitemap?\nA `sitemap.xml` is essentially a **roadmap** of a website that tells search engines (like Google or Bing) which pages are important and how often they are updated. It helps with SEO by ensuring crawlers don't miss any deep-linked content.\n\n### A Standard Example\nA typical sitemap looks something like this:\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-06</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>1.0</priority>\n   </url>\n</urlset>\n```\n\n---\n\n### How to Find One\nIf you are looking for the sitemap of a specific site, you can usually find it by appending the path to the domain:\n* `https://example.com/sitemap.xml`\n* `https://example.com/sitemap_index.xml` (often used for larger sites)\n\n### How to Create One\n* **CMS Plugins:** If you use WordPress, plugins like Yoast or RankMath generate them automatically.\n* **Generators:** Tools like XML-Sitemaps.com can crawl your site and build one for you.\n* **Manual:** For small, static sites, you can write the XML yourself following the schema above.\n\n**Are you trying to troubleshoot a sitemap for your own website, or were you just curious what's \"under the hood\" here?**"}