agentsclimarketplace

Seo robots ai

Skill lionkiii/claude-seo-skills/skills/seo-robots-ai

42 SEO commands for Claude Code — site audits, Ahrefs backlinks, GSC analytics, SERP research, content briefs, technical SEO, schema validation, and more

Install
npx -y skills add lionkiii/claude-seo-skills --skill seo-robots-ai

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 20 stars20 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.

What its author says it does

Copied from the file, not written here

Audit robots.txt for AI crawler access policies. Checks GPTBot, ClaudeBot, PerplexityBot, Google-Extended, and other AI crawlers. Use when user says "robots AI", "AI crawlers", "block AI", "allow AI bots", "AI crawl policy".

SKILL.md

6.4 KB, as published. Nobody here has run it

AI Crawler Robots.txt Audit

<!-- Updated: 2026-06-10 -->

Analyzes a site's robots.txt specifically for AI crawler access policies. Complements /seo-technical (which does a broad robots.txt check) with deep AI-specific analysis.

@skills/seo/references/ai-crawlers-guide.md

AI Crawler Registry

Training crawlers (respect robots.txt, used for model training)

Bot NameOwnerPurpose
GPTBotOpenAITraining data collection
ClaudeBotAnthropicTraining data collection
Google-ExtendedGoogleRobots.txt control for Gemini / AI training (not Search)
Applebot-ExtendedAppleApple Intelligence training
CCBotCommon CrawlOpen dataset used by many AI models
BytespiderByteDanceTikTok / AI training
cohere-aiCohereAI model training
FacebookBotMetaMeta AI training
Meta-ExternalAgentMetaMeta AI training crawler
AmazonbotAmazonAlexa / AI training
DiffbotDiffbotAI knowledge graph
ImagesiftBotImagesiftBotAI image training
OmgiliWebz.ioAI data feeds

User-triggered / search crawlers (fetch on behalf of a live user or search index)

Blocking these removes you from AI search answers and citations.

Bot NameOwnerPurpose
OAI-SearchBotOpenAIChatGPT search index (not training)
ChatGPT-UserOpenAIChatGPT browsing (real-time, user-triggered)
PerplexityBotPerplexityAI search engine index
Perplexity-UserPerplexityUser-triggered fetch for Perplexity answers
anthropic-aiAnthropicClaude web fetch
Google-CloudVertexBotGoogleVertex AI Agents — crawls on site owners' request
DuckAssistBotDuckDuckGoDuckAssist AI answers
MistralAI-UserMistralUser-triggered fetch for Le Chat citations
Meta-ExternalFetcherMetaUser-initiated Meta AI fetches

Important: Blocking training bots ≠ blocking AI search visibility. Blocking training crawlers only opts you out of model training. Blocking user-triggered / search crawlers removes your site from AI answers and citations (ChatGPT search, Perplexity, DuckAssist, etc.).

Inputs

  • url: The website URL to audit (will fetch /robots.txt from site root)
    • Normalize to domain root: example.com/pagehttps://example.com/robots.txt

Execution

  1. Fetch robots.txt: WebFetch <domain>/robots.txt

    • If 404 → report "No robots.txt found — all crawlers allowed by default"
    • If 200 → proceed to parse
  2. Parse User-agent blocks: Extract all User-agent directives and their associated Allow / Disallow rules.

  3. Check each AI crawler: For each bot in the registry, determine access:

    • Allowed — No specific block, or explicit Allow: /
    • BlockedDisallow: / for this User-agent
    • Partial — Some paths blocked, others allowed (list specifics)
    • Inherited — Falls under User-agent: * rules (note this)
  4. Check wildcard rules: If User-agent: * has Disallow: /, note that ALL bots (including AI) are blocked unless explicitly allowed.

  5. Check for ai.txt: WebFetch <domain>/ai.txt — an emerging standard for AI-specific crawler policies. Report if found and summarize contents.

  6. Check for llms.txt: WebFetch <domain>/llms.txt — report if found (cross-reference with /seo llms-txt for full audit).

  7. Analyze crawl-delay: Note any Crawl-delay directives that affect AI bots specifically or via wildcard.

  8. Check sitemap declaration: Note if Sitemap: directive is present (helps AI crawlers discover content).

Output Format

## AI Crawler Audit: [domain]

### Crawler Access Matrix

| Crawler | Owner | Status | Rule Source | Details |
|---|---|---|---|---|
| GPTBot | OpenAI | Allowed/Blocked/Partial | Line [#] | [specific rules] |
| ClaudeBot | Anthropic | Allowed/Blocked/Partial | Line [#] | [specific rules] |
| PerplexityBot | Perplexity | Allowed/Blocked/Partial | Line [#] | [specific rules] |
| Google-Extended | Google | Allowed/Blocked/Partial | Line [#] | [specific rules] |
| ... | ... | ... | ... | ... |

### AI Openness Score: X/10

Scoring:
- 10/10 = All AI crawlers allowed, ai.txt present, llms.txt present
- 7-9 = Most crawlers allowed, some minor gaps
- 4-6 = Mixed policy — some allowed, some blocked
- 1-3 = Most AI crawlers blocked
- 0/10 = All AI crawlers blocked (or blanket Disallow: /)

### Key Findings

- **AI crawlers explicitly blocked**: [count] of [total]
- **AI crawlers explicitly allowed**: [count]
- **Falling under wildcard rules**: [count]
- **ai.txt present**: Yes/No
- **llms.txt present**: Yes/No
- **Sitemap declared**: Yes/No

### Recommendations

Based on the site's apparent goals:

**If goal is maximum AI visibility:**
- [Specific recommendations to allow AI crawlers]
- [Suggest llms.txt creation if missing]

**If goal is AI protection:**
- [Note any crawlers not yet blocked]
- [Suggest ai.txt adoption]

**If goal is selective access:**
- [Recommend allowing search-focused bots: OAI-SearchBot, PerplexityBot]
- [Block training-only bots: CCBot, Bytespider]
- [Distinguish training vs search crawlers]

### Industry Context

Note how the site's policy compares to common patterns:
- Most major publishers block training bots but allow search bots
- Most SaaS companies allow all AI crawlers for visibility
- E-commerce sites typically allow all crawlers
- Media/news sites increasingly block training-only bots

### robots.txt Snippets

If the user wants to implement changes, provide ready-to-paste robots.txt
blocks for their chosen strategy:

**Allow all AI crawlers:**

AI Crawlers — Allowed

User-agent: GPTBot Allow: /

User-agent: ClaudeBot Allow: /

User-agent: PerplexityBot Allow: /

User-agent: Google-Extended Allow: /


**Block training, allow search:**

AI Search — Allowed

User-agent: OAI-SearchBot Allow: /

User-agent: PerplexityBot Allow: /

AI Training — Blocked

User-agent: GPTBot Disallow: /

User-agent: ClaudeBot Disallow: /

User-agent: CCBot Disallow: /

User-agent: Google-Extended Disallow: /

User-agent: Bytespider Disallow: /

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.