{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're trying to access a **sitemap.xml** file, likely to get an overview of a website's structure or to check its SEO health.\n\nAs an AI, I don't have a single \"sitemap\" in the traditional web-server sense, but I can certainly help you with whatever you're looking for regarding one. \n\n### How can I help you with this?\n\n* **Analyzing a Sitemap:** If you paste the URL of a specific website's sitemap (or the XML code itself), I can summarize the page hierarchy, identify the most recently updated content, or spot potential errors.\n* **Creating a Sitemap:** If you are building a website and need a template, I can generate a standard XML structure for you based on a list of your pages.\n* **SEO Troubleshooting:** If you're wondering why a sitemap isn't working or how to submit one to Google Search Console, just let me know.\n\n---\n\n### Basic Sitemap Template\nIf you're looking to build one from scratch, here is the standard format:\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\nAre you looking to analyze a specific site's map, or are you trying to generate one for your own project?"}