AI Crawler Access
Classifies and reports which training, AI-search, user-action, and archive crawlers robots.txt allows or blocks
Reports which AI-agent crawlers (GPTBot, ClaudeBot, PerplexityBot, Google-Extended, …) your robots.txt allows or blocks at the site root, classified into the three purposes those crawlers actually serve. AI assistants and answer engines reach your content through these named user-agents, so blocking them keeps your pages out of those tools — but “AI crawlers” isn’t one policy decision, it’s three.
| Rule ID | ax/ai-crawlers |
| Category | Agent Experience |
| Scope | Site-wide |
| Severity | warning |
| Weight | 1/10 |
What it checks
For each well-known AI crawler, the rule reads your parsed robots.txt and reports whether the user-agent is allowed or fully blocked (Disallow: / with no re-permitting Allow: /). A user-agent with its own group takes precedence over the wildcard * group, matching how real crawlers resolve robots.txt.
Crawlers are classified into four purposes, each with a different blocking implication:
- Training crawlers — bulk-crawl content to train or fine-tune one vendor’s models. Blocking these has no effect on whether an assistant can answer questions about your site right now; it only affects that vendor’s future model training, and is reported informationally regardless of policy. Covers
GPTBot,ClaudeBot,Google-Extended,Applebot-Extended,Meta-ExternalAgent,Bytespider,Amazonbot,anthropic-ai,cohere-ai,AI2Bot,Diffbot. - AI-search indexers — crawl to power AI-generated search results and citations, similar in spirit to a classic search-engine crawler. Blocking one of these emits a warning-level check. Covers
OAI-SearchBot,Claude-SearchBot,PerplexityBot,DuckAssistBot,YouBot. - User-action fetchers — fetch a specific page on behalf of a live user request inside an AI assistant (someone pasted your URL, or asked the assistant to look something up). Blocking one of these also emits a warning-level check. Covers
ChatGPT-User,Claude-User,Perplexity-User,MistralAI-User,Meta-ExternalFetcher. - Archive crawlers — feed the shared public archives rather than one vendor:
CCBotbuilds the Common Crawl corpus andia_archiver/archive.org_botbuild the Wayback Machine. Blocking these opts you out of every model and pipeline built on those archives at once — a much bigger decision than blocking one training bot — so it emits a warning-level check. See Archive Indexing for whether the archives actually have you.
Each of these is a separate user-agent token with its own robots.txt group. Blocking ClaudeBot (training) does not block Claude-User (user-action) — they are unrelated as far as robots.txt parsing goes, even though both come from Anthropic. Sites that intend to opt out of training only, but write one blanket rule, often block all three by accident.
Solution
Decide policy per crawler class, not per site-wide toggle. To opt out of model training while staying answerable in assistants and AI search, block the training bots but keep AI-search indexers and user-action fetchers allowed:
# Block training, allow live answer engines
User-agent: GPTBot
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: ChatGPT-User
Allow: /
User-agent: PerplexityBot
Allow: /
Enable / Disable
Disable this rule
[rules]
disable = ["ax/ai-crawlers"]
Enable only this rule
[rules]
enable = ["ax/ai-crawlers"]
disable = ["*"]