{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're poking around for a website's **Sitemap**, which is essentially the \"GPS\" for search engines to find all the pages on a site. \n\nSince I'm an AI and not a hosted website with a file directory, I don't have a physical `sitemap.xml` file for you to view. However, if you're looking for information on how they work or how to build one, I’ve got you covered.\n\n---\n\n### What is a Sitemap?\nA sitemap is an XML file that lists the URLs for a site along with additional metadata about each URL (when it was last updated, how often it changes, etc.).\n\n* **SEO Boost:** It helps search engines like Google crawl your site more efficiently.\n* **Discovery:** It ensures that deep-linked pages or new pages without many backlinks are found quickly.\n* **Organization:** It acts as a master list of your site's content.\n\n### Example Structure\nA standard `sitemap.xml` usually 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-14</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>1.0</priority>\n   </url>\n</urlset>\n```\n\n### Are you looking for something specific?\nIf you're trying to find the sitemap for a **specific website**, you can usually find it by typing their domain followed by `/sitemap.xml` (e.g., `google.com/sitemap.xml`). \n\nAre you trying to generate a sitemap for your own project, or were you just curious about how I'm mapped out?"}