cloudflare-bot-directory 1.0.0 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +0 -0
- package/package.json +18 -18
- package/src/index.d.ts +11 -9
- package/src/index.json +30 -70
package/LICENSE.md
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "cloudflare-bot-directory",
|
|
3
3
|
"description": "CloudFlare Radar verified bots directory - 500+ web crawlers, search engine bots, and user agents as JSON for bot detection and traffic filtering",
|
|
4
4
|
"homepage": "https://github.com/kikobeats/cloudflare-bot-directory",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"main": "./src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -69,6 +69,22 @@
|
|
|
69
69
|
"files": [
|
|
70
70
|
"src"
|
|
71
71
|
],
|
|
72
|
+
"scripts": {
|
|
73
|
+
"clean": "rm -rf node_modules",
|
|
74
|
+
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
75
|
+
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
76
|
+
"lint": "standard",
|
|
77
|
+
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
78
|
+
"pretest": "npm run lint",
|
|
79
|
+
"release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
|
|
80
|
+
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
81
|
+
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
82
|
+
"release:github": "github-generate-release",
|
|
83
|
+
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
84
|
+
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
85
|
+
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
86
|
+
"test": "c8 ava"
|
|
87
|
+
},
|
|
72
88
|
"license": "MIT",
|
|
73
89
|
"commitlint": {
|
|
74
90
|
"extends": [
|
|
@@ -92,21 +108,5 @@
|
|
|
92
108
|
"simple-git-hooks": {
|
|
93
109
|
"commit-msg": "npx commitlint --edit",
|
|
94
110
|
"pre-commit": "npx nano-staged"
|
|
95
|
-
},
|
|
96
|
-
"scripts": {
|
|
97
|
-
"clean": "rm -rf node_modules",
|
|
98
|
-
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
99
|
-
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
100
|
-
"lint": "standard-markdown README.md && standard",
|
|
101
|
-
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
102
|
-
"pretest": "npm run lint",
|
|
103
|
-
"release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
|
|
104
|
-
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
105
|
-
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
106
|
-
"release:github": "github-generate-release",
|
|
107
|
-
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
108
|
-
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
109
|
-
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
110
|
-
"test": "c8 ava"
|
|
111
111
|
}
|
|
112
|
-
}
|
|
112
|
+
}
|
package/src/index.d.ts
CHANGED
|
@@ -2,25 +2,27 @@
|
|
|
2
2
|
* Bot category types from CloudFlare Radar
|
|
3
3
|
*/
|
|
4
4
|
export type BotCategory =
|
|
5
|
+
| 'ACADEMIC_RESEARCH'
|
|
5
6
|
| 'ACCESSIBILITY'
|
|
6
|
-
| '
|
|
7
|
+
| 'ADVERTISING_AND_MARKETING'
|
|
8
|
+
| 'AGGREGATOR'
|
|
9
|
+
| 'AI_ASSISTANT'
|
|
7
10
|
| 'AI_CRAWLER'
|
|
8
|
-
| '
|
|
11
|
+
| 'AI_SEARCH'
|
|
12
|
+
| 'ARCHIVER'
|
|
9
13
|
| 'FEED_FETCHER'
|
|
10
14
|
| 'MONITORING_AND_ANALYTICS'
|
|
11
|
-
| 'ONLINE_PAYMENTS'
|
|
12
15
|
| 'OTHER'
|
|
13
16
|
| 'PAGE_PREVIEW'
|
|
14
17
|
| 'SEARCH_ENGINE_CRAWLER'
|
|
18
|
+
| 'SEARCH_ENGINE_OPTIMIZATION'
|
|
15
19
|
| 'SECURITY'
|
|
16
|
-
| 'SEO'
|
|
17
20
|
| 'SOCIAL_MEDIA_MARKETING'
|
|
18
|
-
| 'WEBHOOKS'
|
|
19
21
|
|
|
20
22
|
/**
|
|
21
23
|
* Bot kind types
|
|
22
24
|
*/
|
|
23
|
-
export type BotKind = 'BOT'
|
|
25
|
+
export type BotKind = 'BOT' | 'AGENT'
|
|
24
26
|
|
|
25
27
|
/**
|
|
26
28
|
* A verified bot entry from CloudFlare Radar Bot Directory
|
|
@@ -33,13 +35,13 @@ export interface Bot {
|
|
|
33
35
|
/** Bot kind classification */
|
|
34
36
|
kind: BotKind
|
|
35
37
|
/** Company or organization operating the bot */
|
|
36
|
-
operator: string
|
|
38
|
+
operator: string | null
|
|
37
39
|
/** URL to operator's documentation or website */
|
|
38
|
-
operatorUrl: string
|
|
40
|
+
operatorUrl: string | null
|
|
39
41
|
/** Bot category classification */
|
|
40
42
|
category: BotCategory
|
|
41
43
|
/** Description of what the bot does */
|
|
42
|
-
description: string
|
|
44
|
+
description: string | null
|
|
43
45
|
/** Whether the bot respects robots.txt */
|
|
44
46
|
followsRobotsTxt: boolean
|
|
45
47
|
/** User agent pattern(s) for matching */
|
package/src/index.json
CHANGED
|
@@ -252,9 +252,7 @@
|
|
|
252
252
|
"category": "AI_ASSISTANT",
|
|
253
253
|
"description": "The AGI Agent is a productivity assistant that takes actions and makes purchases on behalf of users",
|
|
254
254
|
"followsRobotsTxt": false,
|
|
255
|
-
"userAgentPatterns": [
|
|
256
|
-
""
|
|
257
|
-
],
|
|
255
|
+
"userAgentPatterns": [],
|
|
258
256
|
"userAgents": []
|
|
259
257
|
},
|
|
260
258
|
{
|
|
@@ -363,9 +361,7 @@
|
|
|
363
361
|
"category": "AI_ASSISTANT",
|
|
364
362
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
365
363
|
"followsRobotsTxt": false,
|
|
366
|
-
"userAgentPatterns": [
|
|
367
|
-
""
|
|
368
|
-
],
|
|
364
|
+
"userAgentPatterns": [],
|
|
369
365
|
"userAgents": []
|
|
370
366
|
},
|
|
371
367
|
{
|
|
@@ -377,9 +373,7 @@
|
|
|
377
373
|
"category": "AI_ASSISTANT",
|
|
378
374
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
379
375
|
"followsRobotsTxt": false,
|
|
380
|
-
"userAgentPatterns": [
|
|
381
|
-
""
|
|
382
|
-
],
|
|
376
|
+
"userAgentPatterns": [],
|
|
383
377
|
"userAgents": []
|
|
384
378
|
},
|
|
385
379
|
{
|
|
@@ -391,9 +385,7 @@
|
|
|
391
385
|
"category": "AI_ASSISTANT",
|
|
392
386
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
393
387
|
"followsRobotsTxt": false,
|
|
394
|
-
"userAgentPatterns": [
|
|
395
|
-
""
|
|
396
|
-
],
|
|
388
|
+
"userAgentPatterns": [],
|
|
397
389
|
"userAgents": []
|
|
398
390
|
},
|
|
399
391
|
{
|
|
@@ -405,9 +397,7 @@
|
|
|
405
397
|
"category": "AI_ASSISTANT",
|
|
406
398
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
407
399
|
"followsRobotsTxt": false,
|
|
408
|
-
"userAgentPatterns": [
|
|
409
|
-
""
|
|
410
|
-
],
|
|
400
|
+
"userAgentPatterns": [],
|
|
411
401
|
"userAgents": []
|
|
412
402
|
},
|
|
413
403
|
{
|
|
@@ -419,9 +409,7 @@
|
|
|
419
409
|
"category": "AI_ASSISTANT",
|
|
420
410
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
421
411
|
"followsRobotsTxt": false,
|
|
422
|
-
"userAgentPatterns": [
|
|
423
|
-
""
|
|
424
|
-
],
|
|
412
|
+
"userAgentPatterns": [],
|
|
425
413
|
"userAgents": []
|
|
426
414
|
},
|
|
427
415
|
{
|
|
@@ -433,9 +421,7 @@
|
|
|
433
421
|
"category": "AI_ASSISTANT",
|
|
434
422
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
435
423
|
"followsRobotsTxt": false,
|
|
436
|
-
"userAgentPatterns": [
|
|
437
|
-
""
|
|
438
|
-
],
|
|
424
|
+
"userAgentPatterns": [],
|
|
439
425
|
"userAgents": []
|
|
440
426
|
},
|
|
441
427
|
{
|
|
@@ -447,9 +433,7 @@
|
|
|
447
433
|
"category": "AI_ASSISTANT",
|
|
448
434
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
449
435
|
"followsRobotsTxt": false,
|
|
450
|
-
"userAgentPatterns": [
|
|
451
|
-
""
|
|
452
|
-
],
|
|
436
|
+
"userAgentPatterns": [],
|
|
453
437
|
"userAgents": []
|
|
454
438
|
},
|
|
455
439
|
{
|
|
@@ -461,9 +445,7 @@
|
|
|
461
445
|
"category": "AI_ASSISTANT",
|
|
462
446
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
463
447
|
"followsRobotsTxt": false,
|
|
464
|
-
"userAgentPatterns": [
|
|
465
|
-
""
|
|
466
|
-
],
|
|
448
|
+
"userAgentPatterns": [],
|
|
467
449
|
"userAgents": []
|
|
468
450
|
},
|
|
469
451
|
{
|
|
@@ -475,9 +457,7 @@
|
|
|
475
457
|
"category": "AI_ASSISTANT",
|
|
476
458
|
"description": "AgentCore Browser provides a secure, cloud-based browser that enables AI agents to interact with websites.",
|
|
477
459
|
"followsRobotsTxt": false,
|
|
478
|
-
"userAgentPatterns": [
|
|
479
|
-
""
|
|
480
|
-
],
|
|
460
|
+
"userAgentPatterns": [],
|
|
481
461
|
"userAgents": []
|
|
482
462
|
},
|
|
483
463
|
{
|
|
@@ -1189,7 +1169,7 @@
|
|
|
1189
1169
|
"BrightEdge Crawler"
|
|
1190
1170
|
],
|
|
1191
1171
|
"userAgents": [
|
|
1192
|
-
"BrightEdge Crawler/1.0 (crawler@brightedge.com)
|
|
1172
|
+
"BrightEdge Crawler/1.0 (crawler@brightedge.com)"
|
|
1193
1173
|
]
|
|
1194
1174
|
},
|
|
1195
1175
|
{
|
|
@@ -1201,9 +1181,7 @@
|
|
|
1201
1181
|
"category": "AI_ASSISTANT",
|
|
1202
1182
|
"description": "Browserbase helps AI use the web. Autonomously reads, writes, and performs tasks on the web with a serverless browser.",
|
|
1203
1183
|
"followsRobotsTxt": false,
|
|
1204
|
-
"userAgentPatterns": [
|
|
1205
|
-
""
|
|
1206
|
-
],
|
|
1184
|
+
"userAgentPatterns": [],
|
|
1207
1185
|
"userAgents": []
|
|
1208
1186
|
},
|
|
1209
1187
|
{
|
|
@@ -1329,9 +1307,7 @@
|
|
|
1329
1307
|
"category": "AI_ASSISTANT",
|
|
1330
1308
|
"description": "CartAI B2B rails combine execution, payments, loyalty and affiliate networks to facilitate agentic commerce",
|
|
1331
1309
|
"followsRobotsTxt": false,
|
|
1332
|
-
"userAgentPatterns": [
|
|
1333
|
-
""
|
|
1334
|
-
],
|
|
1310
|
+
"userAgentPatterns": [],
|
|
1335
1311
|
"userAgents": []
|
|
1336
1312
|
},
|
|
1337
1313
|
{
|
|
@@ -1442,9 +1418,7 @@
|
|
|
1442
1418
|
"category": "AI_ASSISTANT",
|
|
1443
1419
|
"description": "Agent that can use its own browser to perform tasks for user.",
|
|
1444
1420
|
"followsRobotsTxt": false,
|
|
1445
|
-
"userAgentPatterns": [
|
|
1446
|
-
""
|
|
1447
|
-
],
|
|
1421
|
+
"userAgentPatterns": [],
|
|
1448
1422
|
"userAgents": []
|
|
1449
1423
|
},
|
|
1450
1424
|
{
|
|
@@ -1520,9 +1494,7 @@
|
|
|
1520
1494
|
"category": "PAGE_PREVIEW",
|
|
1521
1495
|
"description": "Cloudflare Browser Rendering",
|
|
1522
1496
|
"followsRobotsTxt": false,
|
|
1523
|
-
"userAgentPatterns": [
|
|
1524
|
-
""
|
|
1525
|
-
],
|
|
1497
|
+
"userAgentPatterns": [],
|
|
1526
1498
|
"userAgents": []
|
|
1527
1499
|
},
|
|
1528
1500
|
{
|
|
@@ -1630,9 +1602,7 @@
|
|
|
1630
1602
|
"category": "SECURITY",
|
|
1631
1603
|
"description": "Cloudflare Radar URL Scanner",
|
|
1632
1604
|
"followsRobotsTxt": false,
|
|
1633
|
-
"userAgentPatterns": [
|
|
1634
|
-
""
|
|
1635
|
-
],
|
|
1605
|
+
"userAgentPatterns": [],
|
|
1636
1606
|
"userAgents": []
|
|
1637
1607
|
},
|
|
1638
1608
|
{
|
|
@@ -1827,7 +1797,7 @@
|
|
|
1827
1797
|
"contentking"
|
|
1828
1798
|
],
|
|
1829
1799
|
"userAgents": [
|
|
1830
|
-
"
|
|
1800
|
+
"(+https://whatis.contentkingapp.com)"
|
|
1831
1801
|
]
|
|
1832
1802
|
},
|
|
1833
1803
|
{
|
|
@@ -2389,7 +2359,7 @@
|
|
|
2389
2359
|
"description": "Dr. Link Check crawls websites to help their owners identify and fix broken links.",
|
|
2390
2360
|
"followsRobotsTxt": false,
|
|
2391
2361
|
"userAgentPatterns": [
|
|
2392
|
-
"
|
|
2362
|
+
"Dlc/"
|
|
2393
2363
|
],
|
|
2394
2364
|
"userAgents": [
|
|
2395
2365
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 Dlc/2.0.1"
|
|
@@ -2587,7 +2557,7 @@
|
|
|
2587
2557
|
"ExodusMovement"
|
|
2588
2558
|
],
|
|
2589
2559
|
"userAgents": [
|
|
2590
|
-
"ExodusMovement/1.0 GlobalCoinHeight/1.0
|
|
2560
|
+
"ExodusMovement/1.0 GlobalCoinHeight/1.0"
|
|
2591
2561
|
]
|
|
2592
2562
|
},
|
|
2593
2563
|
{
|
|
@@ -2913,7 +2883,7 @@
|
|
|
2913
2883
|
"description": "Ghost Inspector is an automated browser testing framework. ",
|
|
2914
2884
|
"followsRobotsTxt": false,
|
|
2915
2885
|
"userAgentPatterns": [
|
|
2916
|
-
"
|
|
2886
|
+
"Ghost Inspector"
|
|
2917
2887
|
],
|
|
2918
2888
|
"userAgents": [
|
|
2919
2889
|
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0 Safari/537.36 Ghost Inspector (63c85ddbde52d6697f57c623)"
|
|
@@ -3809,7 +3779,7 @@
|
|
|
3809
3779
|
"inoreader.com"
|
|
3810
3780
|
],
|
|
3811
3781
|
"userAgents": [
|
|
3812
|
-
"Mozilla/5.0 (compatible; inoreader.com;
|
|
3782
|
+
"Mozilla/5.0 (compatible; inoreader.com;"
|
|
3813
3783
|
]
|
|
3814
3784
|
},
|
|
3815
3785
|
{
|
|
@@ -4066,9 +4036,7 @@
|
|
|
4066
4036
|
"category": "AI_SEARCH",
|
|
4067
4037
|
"description": "Klaviyo’s web crawler for its Kai Customer Agent feature.",
|
|
4068
4038
|
"followsRobotsTxt": false,
|
|
4069
|
-
"userAgentPatterns": [
|
|
4070
|
-
""
|
|
4071
|
-
],
|
|
4039
|
+
"userAgentPatterns": [],
|
|
4072
4040
|
"userAgents": []
|
|
4073
4041
|
},
|
|
4074
4042
|
{
|
|
@@ -4401,9 +4369,7 @@
|
|
|
4401
4369
|
"category": "AI_ASSISTANT",
|
|
4402
4370
|
"description": "Manus is the action engine that goes beyond answers to execute tasks, automate workflows, and extend your human reach.",
|
|
4403
4371
|
"followsRobotsTxt": false,
|
|
4404
|
-
"userAgentPatterns": [
|
|
4405
|
-
""
|
|
4406
|
-
],
|
|
4372
|
+
"userAgentPatterns": [],
|
|
4407
4373
|
"userAgents": []
|
|
4408
4374
|
},
|
|
4409
4375
|
{
|
|
@@ -4968,9 +4934,7 @@
|
|
|
4968
4934
|
"category": "AI_ASSISTANT",
|
|
4969
4935
|
"description": "Executes secure checkout via browser agent using user card and signed mandate.",
|
|
4970
4936
|
"followsRobotsTxt": false,
|
|
4971
|
-
"userAgentPatterns": [
|
|
4972
|
-
""
|
|
4973
|
-
],
|
|
4937
|
+
"userAgentPatterns": [],
|
|
4974
4938
|
"userAgents": []
|
|
4975
4939
|
},
|
|
4976
4940
|
{
|
|
@@ -5635,7 +5599,7 @@
|
|
|
5635
5599
|
"userAgents": [
|
|
5636
5600
|
"Pinterest/0.2 (+https://www.pinterest.com/bot.html)",
|
|
5637
5601
|
"Mozilla/5.0 (compatible; Pinterestbot/1.0; +https://www.pinterest.com/bot.html)",
|
|
5638
|
-
"Mozilla/5.0 (compatible; Pinterestbot/1.0; +http://www.pinterest.com/bot.html)
|
|
5602
|
+
"Mozilla/5.0 (compatible; Pinterestbot/1.0; +http://www.pinterest.com/bot.html)"
|
|
5639
5603
|
]
|
|
5640
5604
|
},
|
|
5641
5605
|
{
|
|
@@ -5921,9 +5885,7 @@
|
|
|
5921
5885
|
"category": "AGGREGATOR",
|
|
5922
5886
|
"description": "Quartr uses a crawler to obtain and deliver investor relations material",
|
|
5923
5887
|
"followsRobotsTxt": false,
|
|
5924
|
-
"userAgentPatterns": [
|
|
5925
|
-
""
|
|
5926
|
-
],
|
|
5888
|
+
"userAgentPatterns": [],
|
|
5927
5889
|
"userAgents": []
|
|
5928
5890
|
},
|
|
5929
5891
|
{
|
|
@@ -5973,7 +5935,7 @@
|
|
|
5973
5935
|
"description": "Rakuten uses this bot to crawl product images so that we can display cashbach deals for our merchants.",
|
|
5974
5936
|
"followsRobotsTxt": false,
|
|
5975
5937
|
"userAgentPatterns": [
|
|
5976
|
-
"
|
|
5938
|
+
"rakutenusabot-image"
|
|
5977
5939
|
],
|
|
5978
5940
|
"userAgents": [
|
|
5979
5941
|
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; rakutenusabot-image/1.0) Chrome/114.0.0.0 Safari/537.36"
|
|
@@ -8250,10 +8212,10 @@
|
|
|
8250
8212
|
"description": "Webhooks for development of Zendesk ticketing system and apps.",
|
|
8251
8213
|
"followsRobotsTxt": false,
|
|
8252
8214
|
"userAgentPatterns": [
|
|
8253
|
-
"
|
|
8215
|
+
"Zendesk Webhook"
|
|
8254
8216
|
],
|
|
8255
8217
|
"userAgents": [
|
|
8256
|
-
"
|
|
8218
|
+
"Zendesk Webhook"
|
|
8257
8219
|
]
|
|
8258
8220
|
},
|
|
8259
8221
|
{
|
|
@@ -8297,9 +8259,7 @@
|
|
|
8297
8259
|
"category": "MONITORING_AND_ANALYTICS",
|
|
8298
8260
|
"description": "zvelo fetches content for web categorization.",
|
|
8299
8261
|
"followsRobotsTxt": false,
|
|
8300
|
-
"userAgentPatterns": [
|
|
8301
|
-
""
|
|
8302
|
-
],
|
|
8262
|
+
"userAgentPatterns": [],
|
|
8303
8263
|
"userAgents": []
|
|
8304
8264
|
}
|
|
8305
8265
|
]
|