AI crawler access
Named AI crawlers are often blocked by accident in robots.txt. Whether that's a problem depends on whether it was a deliberate choice.
What it is
This reads robots.txt and checks whether it blocks any of the named AI crawlers — OpenAI's GPTBot and OAI-SearchBot, Anthropic's ClaudeBot and Claude-SearchBot, PerplexityBot, Google-Extended, Common Crawl's CCBot and others — distinct from the general-purpose search crawlers (Googlebot, Applebot) that index for classic search.
It reports whether these crawlers can reach the site at all; it doesn't evaluate whether blocking a specific one is the right call for this site — a robots.txt disallow for an AI crawler is treated as a fact to surface, not a mistake to fix.
Why it matters
Blocking these agents is a legitimate, deliberate choice — it keeps content out of model training data and out of answer engines' output, and plenty of sites intend exactly that. The finding exists because it's also easy to block them by accident: a robots.txt template copied from another project, or a blanket 'block all bots' rule that predates ChatGPT existing, ends up excluding AI crawlers as a side effect nobody chose.
If the site should be readable, cited and answered from by ChatGPT, Claude, Perplexity or Gemini's grounding, the fix is a specific Allow rule for the agents that matter, not a wholesale rewrite of robots.txt.
How to fix it
with a reference doc# Answer-engine fetchers: retrieve a specific page a person linked
User-agent: OAI-SearchBot
Allow: /
User-agent: ChatGPT-User
Allow: /
User-agent: Claude-User
Allow: /
User-agent: Claude-SearchBot
Allow: /
User-agent: PerplexityBot
Allow: /
User-agent: Perplexity-User
Allow: /
# Bulk training crawlers: allow or keep blocking independently of the above
User-agent: GPTBot
Allow: /
User-agent: ClaudeBot
Allow: /
User-agent: Google-Extended
Allow: /Related checks
3This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.