{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're trying to access or generate a **sitemap.xml** file. \n\nSince I'm an AI and not the server hosting a specific website, I can't \"give\" you a sitemap for a live URL directly unless I'm helping you build one. However, if you are a developer or site owner looking to understand or create one, here is the breakdown:\n\n### What is a sitemap.xml?\nA sitemap is a blueprint of your website that helps search engines (like Google or Bing) find, crawl, and index all of your content. It tells them which pages are most important.\n\n### Standard XML Structure\nA basic sitemap follows this schema:\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>daily</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>monthly</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n### Common Ways to Generate One\n* **CMS Plugins:** If you use WordPress, plugins like **Yoast SEO** or **Rank Math** generate these automatically.\n* **Static Site Generators:** Tools like Jekyll or Hugo have built-in plugins to build the XML during deployment.\n* **Online Crawlers:** Tools like `xml-sitemaps.com` can crawl your site and export a file for you (usually limited to 500 pages for free).\n* **Frameworks:** In Next.js or Nuxt, you can use packages like `next-sitemap` to automate the process.\n\n---\n\n**Pro-Tip:** Once you have your sitemap, don't forget to submit the link (e.g., `yourdomain.com/sitemap.xml`) to **Google Search Console** so your pages get indexed faster.\n\nAre you looking for help writing a script to generate a sitemap, or were you trying to find the sitemap for a specific website?"}