Rule site.robots-txt.blocks-ai-bots
Allow AI crawlers in robots.txt
site.robots-txt.blocks-ai-bots is a check in Crawlmind's site audit that grades high-impact issues of this kind. This page explains why the rule matters and the exact fix.
Why it matters
Your robots.txt currently blocks (or partially blocks) one or more AI bots. Blocking is a valid choice if you don't want your content cited by AI assistants: but it's usually accidental: an over-broad `User-agent: *` Disallow inherits to specific bots, or a CDN's default rules block AI agents without you knowing. The fix is to grant explicit Allow rules per bot.
The fix
```
User-agent: GPTBot
Allow: /
User-agent: ClaudeBot
Allow: /
User-agent: PerplexityBot
Allow: /
User-agent: Google-Extended
Allow: /
```
Per RFC 9309, the longest-matching user-agent group wins, so an explicit per-bot Allow overrides a `User-agent: *` Disallow.