Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/checkers.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ Audits your `robots.txt` for AI agent accessibility.
- AI crawlers explicitly allowed with `Allow: /` rules (+2)

**Known AI crawlers checked:**
- ClaudeBot, Claude-Web (Anthropic)
- GPTBot, ChatGPT-User (OpenAI)
- ClaudeBot, Claude-User, Claude-SearchBot, Claude-Web (Anthropic)
- GPTBot, ChatGPT-User, OAI-SearchBot (OpenAI)
- Google-Extended, GoogleOther (Google)
- PerplexityBot (Perplexity)
- Applebot-Extended (Apple)
- Meta-ExternalAgent, Meta-ExternalFetcher (Meta)
- PerplexityBot, Perplexity-User (Perplexity)
- Amazonbot (Amazon)
- cohere-ai (Cohere)
- Bytespider (ByteDance)
Expand Down
7 changes: 7 additions & 0 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,19 @@ export async function loadConfig(dir) {
export const AI_AGENTS = {
crawlers: [
{ name: 'ClaudeBot', pattern: 'ClaudeBot' },
{ name: 'Claude-User', pattern: 'Claude-User' },
{ name: 'Claude-SearchBot', pattern: 'Claude-SearchBot' },
{ name: 'Claude-Web', pattern: 'Claude-Web' },
{ name: 'GPTBot', pattern: 'GPTBot' },
{ name: 'ChatGPT-User', pattern: 'ChatGPT-User' },
{ name: 'OAI-SearchBot', pattern: 'OAI-SearchBot' },
{ name: 'Google-Extended', pattern: 'Google-Extended' },
{ name: 'GoogleOther', pattern: 'GoogleOther' },
{ name: 'Applebot-Extended', pattern: 'Applebot-Extended' },
{ name: 'Meta-ExternalAgent', pattern: 'Meta-ExternalAgent' },
{ name: 'Meta-ExternalFetcher', pattern: 'Meta-ExternalFetcher' },
{ name: 'PerplexityBot', pattern: 'PerplexityBot' },
{ name: 'Perplexity-User', pattern: 'Perplexity-User' },
{ name: 'Amazonbot', pattern: 'Amazonbot' },
{ name: 'cohere-ai', pattern: 'cohere-ai' },
{ name: 'Bytespider', pattern: 'Bytespider' },
Expand Down