AI Crawlers and How to Let Them In
AI crawlers are the bots that read your pages on behalf of answer engines. The ones that matter in 2026 are GPTBot and OAI-SearchBot from OpenAI, ChatGPT-User which fires live when a person asks a question, ClaudeBot, PerplexityBot, and CCBot which feeds the public Common Crawl dataset. You find them in your raw server log rather than in analytics, because bots do not run tracking scripts. Allow them explicitly, and never block the ones that fetch during live answers.
Most site owners have no idea how much of their traffic is already machine. Analytics will not tell you, because analytics counts browsers running JavaScript and these visitors run none. The only honest record is the raw access log, and the first time you read one properly is usually a surprise.
The names matter, because they do not all mean the same thing. A GPTBot visit means your pages are being studied for a model's longer term memory. A ChatGPT-User visit means a person asked something a moment ago and the model went to fetch your page to answer it. One is a deposit. The other is a live citation happening in real time.
That distinction should decide your policy. Blocking training crawlers is a real choice with real tradeoffs, and reasonable people land on both sides of it. Blocking the live fetchers is not a policy, it is a disappearance, because it removes you from answers people are actively asking for.
Access has three layers. robots.txt decides who may read you, and naming each crawler explicitly reads very differently from a silent wildcard. llms.txt describes who you are in your own words, and its value is consistency rather than citations. Schema states the same facts in a form a machine can parse without guessing.
None of it is difficult. It is roughly twenty lines of text, one small JSON block, and ten minutes with a log file. The entries below cover each layer with the exact commands and files I run.
01The working notes
>Which AI crawlers should I allow?+
>How do I check if AI is crawling my site?+
>Does llms.txt help with AI crawlers?+
Abd Shanti. "AI Crawlers: Who Reads Your Site, and How to Let Them In" CITED, topic hub. unknown.ps/blog/topics/ai-crawlers/
