seo-sitemap

Validates XML sitemaps and robots.txt, detecting orphan and missing URLs against crawled pages.

1|Updated Jul 29, 2026
One-click install
npx skills add https://github.com/fusengine/kimi-code --skill seo-sitemap-fusengine
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: seo-sitemap
Source: https://github.com/fusengine/kimi-code/tree/main/plugins/seo/skills/seo-sitemap
Command: npx skills add https://github.com/fusengine/kimi-code --skill seo-sitemap-fusengine

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Sitemaps often drift out of sync with the actual site: URLs appear in the sitemap that are never linked internally, and crawlable pages are missing from the sitemap entirely. This Skill fetches and validates sitemap.xml files, cross-checks URL coverage against crawled pages, and enforces sitemap best practices so search engines index the right pages. ## Core Features & Use Cases - Sitemap Parsing & Validation: Fetches /sitemap.xml or a sitemap index and validates its structure via scripts/parse-sitemap.ts. - Coverage Gap Detection: Identifies orphan URLs (in sitemap but not linked) and missing URLs (linked but not in sitemap). - Special Sitemap Support: Covers sitemap-news.xml (last-48h articles for publishers), sitemap-image.xml, and sitemap-video.xml, plus robots.txt sitemap references. - Use Case: After a site migration, run the Skill to confirm every new URL is in the sitemap, no stale URLs remain, and robots.txt correctly references the sitemap with HTTPS absolute URLs. ## Quick Start Analyze the sitemap at https://example.com/sitemap.xml and report any orphan or missing URLs compared to the crawled pages.

Frequently Asked Questions about seo-sitemap

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find orphan URLs in my XML sitemap?▼

Fetch the sitemap and cross-check its URLs against pages discovered by crawling internal links. URLs present in the sitemap but never linked on the site are orphan URLs and should either be linked internally or removed from the sitemap.

How to validate sitemap.xml structure and coverage?▼

Run the parse-sitemap script to fetch /sitemap.xml or a sitemap index and validate its structure. Then compare the URL set against crawled pages to detect URLs missing from the sitemap and confirm HTTPS absolute URLs are used.

What is the maximum size of an XML sitemap?▼

A single sitemap is limited to 50,000 URLs or 50 MB uncompressed. Larger sites should split URLs across multiple sitemaps and reference them through a sitemap index file.

Does Google use sitemap priority and changefreq values?▼

No, the priority and changefreq attributes are largely ignored by Google. The lastmod value matters more, but it should reflect the actual file modification date rather than the sitemap generation date.

When should I use a news sitemap instead of a regular sitemap?▼

Publishers seeking inclusion in Google News should use sitemap-news.xml containing only articles published in the last 48 hours. Regular sitemaps remain appropriate for the rest of the site's content.