Sitemap
Free, open, security-verified agent skills for AEO (Answer Engine Optimization) — make any site ready for AI agents. Live: aipush.app
npx -y skills add whiteknightonhorse/aipush-agent-skills --skill sitemapAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 413 tokens by cl100k_base, as published. Nobody here has run it
Publish and reference a sitemap.xml
AIPUSH agent skill · Category: Agent Discovery · Slug:
sitemap
A sitemap tells crawlers and agents which URLs are canonical and worth indexing, with freshness signals. It improves coverage and how quickly new content is discovered.
Why it matters
A sitemap tells crawlers and agents which URLs are canonical and worth indexing, with freshness signals. It improves coverage and how quickly new content is discovered.
How to detect
Request https://YOURDOMAIN/sitemap.xml (HTTP 200, valid <urlset> or <sitemapindex>), and check that robots.txt has a Sitemap: line.
How to implement
Serve /sitemap.xml as application/xml:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://YOURDOMAIN/</loc>
<lastmod>2026-01-01</lastmod>
</url>
<url>
<loc>https://YOURDOMAIN/pricing</loc>
<lastmod>2026-01-01</lastmod>
</url>
</urlset>
Then reference it in robots.txt:
Sitemap: https://YOURDOMAIN/sitemap.xml
For large sites use a <sitemapindex> splitting into multiple sitemaps (max 50,000 URLs / 50MB each).
How to verify
curl -s https://YOURDOMAIN/sitemap.xml | head shows valid XML; grep -i sitemap robots.txt shows the reference.
References
Part of the AIPUSH agent skills catalog. Scan your site free at https://aipush.app.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 1 of the 12 instructions most seo skills give in 413 tokens
Counted across 454 of the 460 authors here whose files we hold, read 2026-08-07
- Implement structured data using JSON-LDin 29 of 454, across 25 files
- Write unique meta descriptions under 160 charactersin 25 of 454, across 20 files
- Verify one H1 exists per pagein 24 of 454, across 15 files
- Maintain a single H1 per pagein 24 of 454, across 15 files
- Use JSON-LD format for all schema markupin 23 of 454, across 16 files
- Use descriptive anchor text for internal linksin 22 of 454, across 18 files
- Add descriptive alt text to imagesin 19 of 454, across 15 files
- Read product marketing context before auditingin 19 of 454, across 11 files
- Write unique title tags under 60 charactersin 19 of 454, across 14 files
- Add unique title and meta description per pagein 19 of 454, across 17 files
- Fetch robots.txt and sitemap.xmlhere, and in 19 of 454, across 18 files
- Place the primary keyword in the first 100 wordsin 18 of 454, across 17 files
Said here and by no other author read
- serve sitemap.xml as application/xml
- use valid urlset or sitemapindex schema
- split large sites into multiple sitemaps
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.