Skip to content

Commit 5510485

Browse files
committed
improvement(seo): drop redundant named AI/search bot allow-list
1 parent 8a615f3 commit 5510485

1 file changed

Lines changed: 0 additions & 55 deletions

File tree

apps/sim/app/robots.ts

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -40,60 +40,6 @@ const LINK_PREVIEW_DISALLOWED_PATHS = [
4040
'/private/',
4141
]
4242

43-
/**
44-
* Search engines and AI/answer-engine crawlers explicitly allow-listed for
45-
* SEO/AEO/GEO. Explicit Allow rules ensure these bots are not accidentally
46-
* suppressed by downstream filters and signal intent to operators that
47-
* publish allow-list audits (Profound, Scrunch, Otterly, etc.).
48-
*/
49-
const SEARCH_AND_AI_BOTS = [
50-
// Western search engines
51-
'Googlebot',
52-
'Bingbot',
53-
'DuckDuckBot',
54-
'Kagibot',
55-
'Bravebot',
56-
// Regional search engines
57-
'YandexBot',
58-
'Baiduspider',
59-
'Sogou web spider',
60-
'Yeti',
61-
'SeznamBot',
62-
'PetalBot',
63-
// OpenAI
64-
'GPTBot',
65-
'OAI-SearchBot',
66-
'ChatGPT-User',
67-
// Anthropic
68-
'ClaudeBot',
69-
'Claude-SearchBot',
70-
'Claude-User',
71-
// Google AI
72-
'Google-Extended',
73-
// Perplexity
74-
'PerplexityBot',
75-
'Perplexity-User',
76-
// Apple
77-
'Applebot',
78-
'Applebot-Extended',
79-
// Meta
80-
'Meta-ExternalAgent',
81-
'Meta-ExternalFetcher',
82-
'FacebookBot',
83-
// Other major AI / answer engines
84-
'Amazonbot',
85-
'CCBot',
86-
'cohere-ai',
87-
'cohere-training-data-crawler',
88-
'MistralAI-User',
89-
'DeepSeekBot',
90-
'YouBot',
91-
'Diffbot',
92-
'AI2Bot',
93-
'Timpibot',
94-
'ImagesiftBot',
95-
]
96-
9743
/**
9844
* Social and messaging platforms that fetch URLs to render link previews
9945
* (Open Graph / Twitter Card images). These need access to publicly-shared
@@ -118,7 +64,6 @@ export default function robots(): MetadataRoute.Robots {
11864
return {
11965
rules: [
12066
{ userAgent: '*', allow: '/', disallow: DISALLOWED_PATHS },
121-
{ userAgent: SEARCH_AND_AI_BOTS, allow: '/', disallow: DISALLOWED_PATHS },
12267
{
12368
userAgent: LINK_PREVIEW_BOTS,
12469
allow: '/',

0 commit comments

Comments
 (0)