-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.json
More file actions
1045 lines (1045 loc) · 34.5 KB
/
results.json
File metadata and controls
1045 lines (1045 loc) · 34.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "triggerdotdev/jsonhero-web",
"url": "https://github.com/triggerdotdev/jsonhero-web",
"description": "JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed. \ud83d\ude80. Built with \ud83d\udc9c by the Trigger.dev team.",
"detected_stack": [
"Remix",
"Radix",
"Tailwind"
],
"config_file": "wrangler.toml.dev",
"discovered_at": "2026-06-06T00:24:27.056153+00:00"
},
{
"name": "choyiny/saasmail",
"url": "https://github.com/choyiny/saasmail",
"description": "Self-hosted email server for SaaS teams on Cloudflare Workers",
"detected_stack": [
"Radix",
"Drizzle",
"Hono",
"Tailwind"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:24:28.332074+00:00"
},
{
"name": "cmliu/WorkerVless2sub",
"url": "https://github.com/cmliu/WorkerVless2sub",
"description": "\u81ea\u52a8\u5316\u6279\u91cf\u66ff\u6362\u751f\u6210\u4f18\u9009\u7ebf\u8def VMess / VLESS / Trojan \u8282\u70b9\u7684 \u4f18\u9009\u8ba2\u9605\u751f\u6210\u5668",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml",
"discovered_at": "2026-06-06T00:24:29.557170+00:00"
},
{
"name": "nus25/gyoka",
"url": "https://github.com/nus25/gyoka",
"description": "Gyoka is a edge server for Bluesky custom feed generators, running on Cloudflare Workers with D1. It serves feed skeletons to Bluesky/AppView and provides an API to manage the posts for each feed.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.sample",
"discovered_at": "2026-06-06T00:24:30.813410+00:00"
},
{
"name": "StampyAI/stampy-ui",
"url": "https://github.com/StampyAI/stampy-ui",
"description": "AI Safety Q&A web frontend",
"detected_stack": [
"Remix"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:24:32.056470+00:00"
},
{
"name": "inevity/thebalance",
"url": "https://github.com/inevity/thebalance",
"description": "An intelligent API gateway for routing requests to AI providers, built with Rust and running on Cloudflare Workers. It provides a resilient and observable interface for managing and using multiple provider API keys.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.tpl",
"discovered_at": "2026-06-06T00:24:33.286271+00:00"
},
{
"name": "yashau/yPad",
"url": "https://github.com/yashau/yPad",
"description": "A secure, real-time collaborative paste application with ephemeral notes, built on Cloudflare Workers",
"detected_stack": [
"Hono",
"Tailwind",
"Shadcn"
],
"config_file": "wrangler.jsonc.template",
"discovered_at": "2026-06-06T00:24:34.541003+00:00"
},
{
"name": "borgius/freepieces",
"url": "https://github.com/borgius/freepieces",
"description": "Run 700+ MIT-licensed Activepieces community pieces on Cloudflare Workers \u2014 with OAuth2, a CLI to install and deploy, and an admin UI.",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.tmpl",
"discovered_at": "2026-06-06T00:24:35.794294+00:00"
},
{
"name": "ycjcl868/blog",
"url": "https://github.com/ycjcl868/blog",
"description": "\ud83c\udf73 Zero-cost blog implements with Remix, Notion and Cloudflare Pages.",
"detected_stack": [
"Remix",
"Tailwind"
],
"config_file": "wrangler.toml.tpl",
"discovered_at": "2026-06-06T00:24:37.052373+00:00"
},
{
"name": "ohkami-rs/ohkami",
"url": "https://github.com/ohkami-rs/ohkami",
"description": "A performant, declarative, and runtime-flexible web framework for Rust",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.sample",
"discovered_at": "2026-06-06T00:24:38.290683+00:00"
},
{
"name": "lorenzo-milicia/go-vanity-router",
"url": "https://github.com/lorenzo-milicia/go-vanity-router",
"description": "A so-called 'vanity router' to make my projects 'go get'-able with my custom domain with Cloudflare Pages",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.dist",
"discovered_at": "2026-06-06T00:24:39.567007+00:00"
},
{
"name": "Adarsh-Dhar/bot-paywall",
"url": "https://github.com/Adarsh-Dhar/bot-paywall",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.bak",
"discovered_at": "2026-06-06T00:24:40.826487+00:00"
},
{
"name": "WtecHtec/qr-generator-core",
"url": "https://github.com/WtecHtec/qr-generator-core",
"description": "A powerful QR code generator with customizable styling options",
"detected_stack": [
"Tailwind",
"Next.js"
],
"config_file": "wrangler.toml.cp",
"discovered_at": "2026-06-06T00:24:42.081700+00:00"
},
{
"name": "VastOceanLabs/pdfree-tools",
"url": "https://github.com/VastOceanLabs/pdfree-tools",
"description": "No description",
"detected_stack": [
"Tailwind"
],
"config_file": "wrangler.toml.txt",
"discovered_at": "2026-06-06T00:24:43.343102+00:00"
},
{
"name": "conquest-eth/do-ethereum-events",
"url": "https://github.com/conquest-eth/do-ethereum-events",
"description": "Event Engine For Ethereum, Using Cloudflare Worker and Durable Object",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.hbs",
"discovered_at": "2026-06-06T00:24:44.604424+00:00"
},
{
"name": "xnscu/create-workers",
"url": "https://github.com/xnscu/create-workers",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.ejs",
"discovered_at": "2026-06-06T00:24:45.868755+00:00"
},
{
"name": "irfndi/fin-in-flow",
"url": "https://github.com/irfndi/fin-in-flow",
"description": "No description",
"detected_stack": [
"OpenAI",
"Radix",
"Tailwind",
"Drizzle",
"Hono"
],
"config_file": "wrangler.toml.backup",
"discovered_at": "2026-06-06T00:24:47.122208+00:00"
},
{
"name": "EnigmaCurry/cf-functions-demo",
"url": "https://github.com/EnigmaCurry/cf-functions-demo",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.jinja",
"discovered_at": "2026-06-06T00:24:48.366636+00:00"
},
{
"name": "Kludex/starlette",
"url": "https://github.com/Kludex/starlette",
"description": "The little ASGI framework that shines. \ud83c\udf1f",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml",
"discovered_at": "2026-06-06T00:24:49.583838+00:00"
},
{
"name": "meepen/poe-accountant",
"url": "https://github.com/meepen/poe-accountant",
"description": "Path of Exile Accountant - A self-hosted and FREE currency management tracker for PoE",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.tftpl",
"discovered_at": "2026-06-06T00:24:50.846910+00:00"
},
{
"name": "simple10/openclaw-stack",
"url": "https://github.com/simple10/openclaw-stack",
"description": "Deploy a secure OpenClaw to any VPS using Claude Code.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:24:52.093025+00:00"
},
{
"name": "bmanojlovic/terraform-state-manager",
"url": "https://github.com/bmanojlovic/terraform-state-manager",
"description": "Terraform http endpoint implementation based on Cloudflare R2 and D1 database",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml-example",
"discovered_at": "2026-06-06T00:24:53.351436+00:00"
},
{
"name": "tbhb/copier-templates",
"url": "https://github.com/tbhb/copier-templates",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.jinja",
"discovered_at": "2026-06-06T00:24:54.605748+00:00"
},
{
"name": "ethqnol/planeimages",
"url": "https://github.com/ethqnol/planeimages",
"description": "jetphotos can go to hell",
"detected_stack": [
"Astro"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:24:55.870213+00:00"
},
{
"name": "sarmaasis/speech-to-text",
"url": "https://github.com/sarmaasis/speech-to-text",
"description": "Application to record and speech and summarize it into a text",
"detected_stack": [
"Tailwind",
"Next.js"
],
"config_file": "wrangler.jsonc.backup",
"discovered_at": "2026-06-06T00:24:57.131636+00:00"
},
{
"name": "jkrauska/rawGallery",
"url": "https://github.com/jkrauska/rawGallery",
"description": "Photo Sharing",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.default",
"discovered_at": "2026-06-06T00:24:58.372550+00:00"
},
{
"name": "Xala-Technologies/Xaheen-platform",
"url": "https://github.com/Xala-Technologies/Xaheen-platform",
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.hbs",
"discovered_at": "2026-06-06T00:24:59.625653+00:00"
},
{
"name": "teymurrr/solvia-ug",
"url": "https://github.com/teymurrr/solvia-ug",
"description": "No description",
"detected_stack": [
"Radix",
"Tailwind"
],
"config_file": "wrangler.toml.save",
"discovered_at": "2026-06-06T00:25:00.885663+00:00"
},
{
"name": "myselfgus/cogn_mcp_remote",
"url": "https://github.com/myselfgus/cogn_mcp_remote",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.working",
"discovered_at": "2026-06-06T00:25:02.160980+00:00"
},
{
"name": "LordPixma/DCOM360",
"url": "https://github.com/LordPixma/DCOM360",
"description": "Global Disaster Alert Dashboard",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.bak.1756936516",
"discovered_at": "2026-06-06T00:25:03.408063+00:00"
},
{
"name": "FabianMorag/resend-service-cloudflare",
"url": "https://github.com/FabianMorag/resend-service-cloudflare",
"description": "No description",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.demo",
"discovered_at": "2026-06-06T00:25:04.673081+00:00"
},
{
"name": "accessdlsu/leapify",
"url": "https://github.com/accessdlsu/leapify",
"description": "The backend for DLSU CSO LEAP event websites",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:05.909398+00:00"
},
{
"name": "Jaketdaniels/elixir-fullstack-worker",
"url": "https://github.com/Jaketdaniels/elixir-fullstack-worker",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.eex",
"discovered_at": "2026-06-06T00:25:07.134259+00:00"
},
{
"name": "TaughtMeNothing/OSRS-FlipTips-APP",
"url": "https://github.com/TaughtMeNothing/OSRS-FlipTips-APP",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:25:08.404629+00:00"
},
{
"name": "kaikyou76/small_ship",
"url": "https://github.com/kaikyou76/small_ship",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.md",
"discovered_at": "2026-06-06T00:25:09.681661+00:00"
},
{
"name": "Aziz-PirieBrown/cloudmail",
"url": "https://github.com/Aziz-PirieBrown/cloudmail",
"description": "cloudmail temp ",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:10.967014+00:00"
},
{
"name": "nusu-github/cf-workers-s3-proxy",
"url": "https://github.com/nusu-github/cf-workers-s3-proxy",
"description": "s3(&compatible) proxy to run on Cloudflare Workers.",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.jsonc.template",
"discovered_at": "2026-06-06T00:25:12.239637+00:00"
},
{
"name": "ThisIsRahmat/portfolio_site",
"url": "https://github.com/ThisIsRahmat/portfolio_site",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:25:13.501509+00:00"
},
{
"name": "ckorhonen/claude-skills",
"url": "https://github.com/ckorhonen/claude-skills",
"description": "A curated collection of skills for Claude Code and Codex \u2014 specialized capabilities across development, design, AI, security, and more. Part of the cdd.dev/skills family.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:14.719308+00:00"
},
{
"name": "okayu9/myamori",
"url": "https://github.com/okayu9/myamori",
"description": "No description",
"detected_stack": [
"Drizzle",
"Hono"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:15.997534+00:00"
},
{
"name": "wqlC/cloud-gram-store",
"url": "https://github.com/wqlC/cloud-gram-store",
"description": "CloudGramStore \u662f\u4e00\u4e2a\u57fa\u4e8e Cloudflare Workers \u548c Telegram Bot API \u7684\u4e91\u6587\u4ef6\u7ba1\u7406\u7cfb\u7edf\uff0c\u901a\u8fc7\u521b\u65b0\u7684\u65b9\u5f0f\u5c06 Telegram \u4f5c\u4e3a\u6587\u4ef6\u5b58\u50a8\u540e\u7aef\uff0c\u5b9e\u73b0\u4e86\u65e0\u9700\u4f20\u7edf\u4e91\u5b58\u50a8\u670d\u52a1\u7684\u4e2a\u4eba\u4e91\u76d8\u89e3\u51b3\u65b9\u6848\u3002\u7cfb\u7edf\u652f\u6301 \u6587\u4ef6\u4e0a\u4f20\u3001\u4e0b\u8f7d\u3001\u91cd\u547d\u540d\u3001\u5220\u9664\u3001\u76ee\u5f55\u7ba1\u7406\u7b49\u529f\u80fd\uff0c\u9002\u5408\u4e2a\u4eba\u4f7f\u7528\u3002",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:17.295613+00:00"
},
{
"name": "elasticinbox/elasticinbox-cloudflare",
"url": "https://github.com/elasticinbox/elasticinbox-cloudflare",
"description": "Email storage service based on Cloudflare Workers",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.tpl",
"discovered_at": "2026-06-06T00:25:18.533655+00:00"
},
{
"name": "project-polymorph/platform-home",
"url": "https://github.com/project-polymorph/platform-home",
"description": "homepage and platform for chinese trans digital archive",
"detected_stack": [
"OpenAI",
"Tailwind",
"Next.js"
],
"config_file": "wrangler.toml.prod",
"discovered_at": "2026-06-06T00:25:19.817963+00:00"
},
{
"name": "AndreaFrederica/new_blog",
"url": "https://github.com/AndreaFrederica/new_blog",
"description": "No description",
"detected_stack": [
"Astro",
"Tailwind"
],
"config_file": "wrangler.toml.des",
"discovered_at": "2026-06-06T00:25:21.083312+00:00"
},
{
"name": "dbmartin00/fme-alert-cloudflare",
"url": "https://github.com/dbmartin00/fme-alert-cloudflare",
"description": "Use cloudflare to receive FME alets and call a webhook.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.orig",
"discovered_at": "2026-06-06T00:25:22.323146+00:00"
},
{
"name": "lukexlau/react-router-v7-monorepo",
"url": "https://github.com/lukexlau/react-router-v7-monorepo",
"description": "\ud83d\udce6 React Router v7 (Remix) Monorepo with Cloudflare Workers, Drizzle ORM & D1, Shadcn/UI, and Tailwind CSS v4.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:23.558476+00:00"
},
{
"name": "sakeenah-wedding/template",
"url": "https://github.com/sakeenah-wedding/template",
"description": "Sakeenah is a beautiful, modern, and interactive islamic wedding invitation website built with vite ( react ), tailwind css, and framer motion. Created with \u2764\ufe0f by @jawaracloud",
"detected_stack": [
"Postgres",
"Hono",
"Tailwind"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:24.845737+00:00"
},
{
"name": "pigri/cf-n8n-proxy",
"url": "https://github.com/pigri/cf-n8n-proxy",
"description": "Cloudflare worker for n8n proxy",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml_example",
"discovered_at": "2026-06-06T00:25:26.093673+00:00"
},
{
"name": "jerdog/serverless-social-sync",
"url": "https://github.com/jerdog/serverless-social-sync",
"description": "Serverless app to sync posts between Bluesky and Mastodon",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml-example",
"discovered_at": "2026-06-06T00:25:27.339811+00:00"
},
{
"name": "grandant/nuxtless",
"url": "https://github.com/grandant/nuxtless",
"description": "Modular Nuxt 4 starter for Vendure storefronts, polished with Nuxt UI and Tailwind, focused on SEO, type-safety, and security.",
"detected_stack": [
"Tailwind"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:28.591520+00:00"
},
{
"name": "tejasharih/sportsexcitement-react-tej",
"url": "https://github.com/tejasharih/sportsexcitement-react-tej",
"description": "No description",
"detected_stack": [
"Shadcn",
"Tailwind",
"Next.js"
],
"config_file": "wrangler.jsonc.worker-backup",
"discovered_at": "2026-06-06T00:25:29.851418+00:00"
},
{
"name": "Frexida/mas",
"url": "https://github.com/Frexida/mas",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.pages",
"discovered_at": "2026-06-06T00:25:31.087033+00:00"
},
{
"name": "Salahabi/polygone-via-worker",
"url": "https://github.com/Salahabi/polygone-via-worker",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc ",
"discovered_at": "2026-06-06T00:25:32.355162+00:00"
},
{
"name": "Linli1221/worker",
"url": "https://github.com/Linli1221/worker",
"description": "No description",
"detected_stack": [
"Postgres"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:33.616762+00:00"
},
{
"name": "aitorroma/n8n-webhook-cf",
"url": "https://github.com/aitorroma/n8n-webhook-cf",
"description": "Worker de Cloudflare para actuar como proxy de n8n",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml_example",
"discovered_at": "2026-06-06T00:25:34.854900+00:00"
},
{
"name": "BruceWind/domain-for-sale",
"url": "https://github.com/BruceWind/domain-for-sale",
"description": "Deploy a for-sale page on Cloudflare Workers.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml ",
"discovered_at": "2026-06-06T00:25:36.085986+00:00"
},
{
"name": "itangbaotop/itangbao-auth",
"url": "https://github.com/itangbaotop/itangbao-auth",
"description": "\u8ba4\u8bc1\u670d\u52a1",
"detected_stack": [
"Radix",
"Drizzle",
"Tailwind",
"Next.js"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:25:37.340761+00:00"
},
{
"name": "siemah/astro-on-cf-workers",
"url": "https://github.com/siemah/astro-on-cf-workers",
"description": "deploy a static website to Cloudflare Workers",
"detected_stack": [
"Next.js",
"Astro",
"Radix",
"Tailwind",
"Drizzle"
],
"config_file": "wrangler.jsonc.copy",
"discovered_at": "2026-06-06T00:25:38.604766+00:00"
},
{
"name": "celestial-rose/stack",
"url": "https://github.com/celestial-rose/stack",
"description": "The Ultimate Full-Stack Meta-Framework for Cloudflare",
"detected_stack": [
"Next.js"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:39.854326+00:00"
},
{
"name": "S7SSL/clearlegacy-site",
"url": "https://github.com/S7SSL/clearlegacy-site",
"description": "Clear Legacy \u2014 Wills & Estate Planning",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.bak.20260430T092043",
"discovered_at": "2026-06-06T00:25:41.065554+00:00"
},
{
"name": "laurentfabre/akm",
"url": "https://github.com/laurentfabre/akm",
"description": "akm \u2014 Cloudflare + Neon full-stack app toolkit driven by a Zig orchestrator",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.tmpl",
"discovered_at": "2026-06-06T00:25:42.284409+00:00"
},
{
"name": "thomas-decloedt/foosball-rating-tracker",
"url": "https://github.com/thomas-decloedt/foosball-rating-tracker",
"description": "No description",
"detected_stack": [
"Drizzle",
"Hono",
"Tailwind"
],
"config_file": "wrangler.toml.public",
"discovered_at": "2026-06-06T00:25:43.546120+00:00"
},
{
"name": "yo-han/cloudflare-images-worker",
"url": "https://github.com/yo-han/cloudflare-images-worker",
"description": "A Cloudflare Worker for proxying and caching images, with optional rate limiting and a convenient setup process.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.tpl",
"discovered_at": "2026-06-06T00:25:44.790569+00:00"
},
{
"name": "mo0rti/prism",
"url": "https://github.com/mo0rti/prism",
"description": "A production-grade, AI-ready multi-platform system generator with a living product wiki. Turn an idea into a fully scaffolded monorepo - then keep every platform's AI agent in sync as your product evolves.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.jinja",
"discovered_at": "2026-06-06T00:25:46.017530+00:00"
},
{
"name": "huangrx6/cloudflare_temp_email",
"url": "https://github.com/huangrx6/cloudflare_temp_email",
"description": "\u4e00\u4e2a\u7b80\u5355\u7684\u4e2a\u4eba\u4e34\u65f6\u90ae\u7bb1\u670d\u52a1\uff0c\u57fa\u4e8e cloudflare_temp_email \u9879\u76ee\u4f18\u5316\u8c03\u6574\u3002 \u611f\u8c22\u539f\u4f5c\u8005 dreamhunter2333 \u7684\u5f00\u6e90\u5206\u4eab\u3002",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:47.253548+00:00"
},
{
"name": "ZUROS-NETWORK/zuros-web",
"url": "https://github.com/ZUROS-NETWORK/zuros-web",
"description": "Zuros Network es un servidor de Minecraft y una comunidad enfocada en ofrecer una experiencia pac\u00edfica, inclusiva y de alta calidad para jugadores de todas las plataformas. Compatible con Java y Bedrock, cuenta con modos como Survival, Skyblock, PvE, PvP, Parkour y m\u00e1s.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc example",
"discovered_at": "2026-06-06T00:25:48.474692+00:00"
},
{
"name": "devniti/obsidian",
"url": "https://github.com/devniti/obsidian",
"description": "Obsidian work-home",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.md",
"discovered_at": "2026-06-06T00:25:49.691453+00:00"
},
{
"name": "rownative/worker",
"url": "https://github.com/rownative/worker",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc~",
"discovered_at": "2026-06-06T00:25:50.965190+00:00"
},
{
"name": "nextify-limited/libra",
"url": "https://github.com/nextify-limited/libra",
"description": "The open-source V0/Lovable alternative",
"detected_stack": [
"Drizzle",
"Next.js"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:52.186767+00:00"
},
{
"name": "PortNumber53/3-options-coding",
"url": "https://github.com/PortNumber53/3-options-coding",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.save",
"discovered_at": "2026-06-06T00:25:53.439480+00:00"
},
{
"name": "Bonzokoles/my-bonzo-ai-blog",
"url": "https://github.com/Bonzokoles/my-bonzo-ai-blog",
"description": "MyBonzo AI Blog - Blog o sztucznej inteligencji dla mybonzoaiblog.com",
"detected_stack": [
"Astro",
"Tailwind"
],
"config_file": "Astro_subpage_wrangler.toml.md",
"discovered_at": "2026-06-06T00:25:54.664006+00:00"
},
{
"name": "ropean/scripts",
"url": "https://github.com/ropean/scripts",
"description": "A curated collection of production-ready scripts and code examples for modern web development",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.removed",
"discovered_at": "2026-06-06T00:25:55.903989+00:00"
},
{
"name": "anghunk/cwd",
"url": "https://github.com/anghunk/cwd",
"description": "\u57fa\u4e8e Cloudflare Workers \u4e0e\u5168\u7403\u8fb9\u7f18\u7f51\u7edc\u7684\u514d\u670d\u52a1\u5668\u3001\u6781\u901f\u5b89\u5168\u3001\u5373\u63d2\u5373\u7528\u8bc4\u8bba\u7cfb\u7edf\u3002",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:57.196097+00:00"
},
{
"name": "soficis/gemini-cli-proxy",
"url": "https://github.com/soficis/gemini-cli-proxy",
"description": "A Cloudflare Workers proxy that provides an OpenAI-compatible API for Google Gemini CLI with credential rotation and load\u2011balancing.",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:25:58.437214+00:00"
},
{
"name": "BaseOut/baseout",
"url": "https://github.com/BaseOut/baseout",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:25:59.695891+00:00"
},
{
"name": "jmbish04/core-github-api",
"url": "https://github.com/jmbish04/core-github-api",
"description": "No description",
"detected_stack": [
"Drizzle",
"Hono",
"OpenAI"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:26:00.949005+00:00"
},
{
"name": "figozhu/Sub-Merger-CFWorker",
"url": "https://github.com/figozhu/Sub-Merger-CFWorker",
"description": "\u8ba2\u9605\u5408\u5e76\uff08\u57fa\u4e8eCF Worker\uff09",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:26:02.181875+00:00"
},
{
"name": "hotwatermorning/cloudflare-test",
"url": "https://github.com/hotwatermorning/cloudflare-test",
"description": "Cloudflare Pages + Cloudflare D1 + Drizzle ORM + SvelteKit",
"detected_stack": [
"Drizzle"
],
"config_file": "wrangler.toml.in",
"discovered_at": "2026-06-06T00:26:03.431779+00:00"
},
{
"name": "taheito26-sys/TRACKER_CLOUDFLARE-",
"url": "https://github.com/taheito26-sys/TRACKER_CLOUDFLARE-",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.disabled",
"discovered_at": "2026-06-06T00:26:04.676029+00:00"
},
{
"name": "zacjones93/spicy-wod-3",
"url": "https://github.com/zacjones93/spicy-wod-3",
"description": "No description",
"detected_stack": [
"Radix",
"Drizzle",
"Tailwind",
"Next.js"
],
"config_file": "wrangler.toml.development",
"discovered_at": "2026-06-06T00:26:05.924693+00:00"
},
{
"name": "thanhluan208/middleware-standalone-cloudflare-worker",
"url": "https://github.com/thanhluan208/middleware-standalone-cloudflare-worker",
"description": "No description",
"detected_stack": [
"Tailwind",
"Next.js"
],
"config_file": "wrangler.jsonc.bak",
"discovered_at": "2026-06-06T00:26:07.179004+00:00"
},
{
"name": "Robert-gif/temp-email",
"url": "https://github.com/Robert-gif/temp-email",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:26:08.413531+00:00"
},
{
"name": "yypyyd/cloudflare_temp_email-storyatelier",
"url": "https://github.com/yypyyd/cloudflare_temp_email-storyatelier",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:26:09.648576+00:00"
},
{
"name": "Hzao/PocketChest",
"url": "https://github.com/Hzao/PocketChest",
"description": "Secure, serverless file and text sharing built on Cloudflare with large file support.",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.jsonc.template",
"discovered_at": "2026-06-06T00:26:10.897163+00:00"
},
{
"name": "LouisHitchcock/cygnetBedSearch",
"url": "https://github.com/LouisHitchcock/cygnetBedSearch",
"description": "Python Script to Grab Bed data from Cygnet Website",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.bak",
"discovered_at": "2026-06-06T00:26:12.123451+00:00"
},
{
"name": "limit5/OmniSight-Productizer",
"url": "https://github.com/limit5/OmniSight-Productizer",
"description": "No description",
"detected_stack": [
"Radix",
"OpenAI",
"Tailwind",
"Next.js"
],
"config_file": "wrangler.toml.j2",
"discovered_at": "2026-06-06T00:26:13.364645+00:00"
},
{
"name": "FilipaoVfx/crackingWall",
"url": "https://github.com/FilipaoVfx/crackingWall",
"description": "No description",
"detected_stack": [
"Astro",
"Tailwind"
],
"config_file": "wrangler.toml.md",
"discovered_at": "2026-06-06T00:26:14.629222+00:00"
},
{
"name": "VoloBuilds/volo-app",
"url": "https://github.com/VoloBuilds/volo-app",
"description": "No description",
"detected_stack": [
"Standard Worker"
],
"config_file": "wrangler.toml.template",
"discovered_at": "2026-06-06T00:26:15.880776+00:00"
},
{
"name": "project-empat/doit-tracker",
"url": "https://github.com/project-empat/doit-tracker",
"description": "Guilt-free habit tracker",
"detected_stack": [
"Drizzle",
"Tailwind"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:26:17.154332+00:00"
},
{
"name": "ben-vargas/obsidian-vectorize-mcp",
"url": "https://github.com/ben-vargas/obsidian-vectorize-mcp",
"description": "Obsidian Vectorize (obvec) - Serverless Vector Search with MCP for your Obsidian notes",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.toml.upgrade",
"discovered_at": "2026-06-06T00:26:18.408540+00:00"
},
{
"name": "atomicbyte100/script-hosting-for-the-handy-devices",
"url": "https://github.com/atomicbyte100/script-hosting-for-the-handy-devices",
"description": "No description",
"detected_stack": [
"Hono"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:26:19.663288+00:00"
},
{
"name": "H-ymt/sitemap-generator",
"url": "https://github.com/H-ymt/sitemap-generator",
"description": "Web sitemap generator using Next.js and Cloudflare Workers",
"detected_stack": [
"Tailwind",
"Next.js"
],
"config_file": "wrangler.toml.new",
"discovered_at": "2026-06-06T00:26:20.913844+00:00"
},
{
"name": "corymhayes/job-journal",
"url": "https://github.com/corymhayes/job-journal",
"description": "A modern, full-stack job application management system that helps you organize, track, and monitor your job applications through every stage of the hiring pipeline.",
"detected_stack": [
"Next.js",
"Postgres",
"Radix",
"Tailwind",
"Shadcn",
"Drizzle",
"Hono"
],
"config_file": "wrangler.jsonc.example",
"discovered_at": "2026-06-06T00:26:22.174256+00:00"
},
{
"name": "che3000/cf-url-shortener",
"url": "https://github.com/che3000/cf-url-shortener",
"description": "\u4e00\u500b\u53ef\u4ee5\u5ba2\u88fd\u5316\u77ed\u7db2\u5740\u7684\u5c0f\u6771\u897f",
"detected_stack": [
"Tailwind"
],
"config_file": "wrangler.toml.sample",
"discovered_at": "2026-06-06T00:26:23.405084+00:00"
},
{
"name": "HilaryTorn/ThoughtGuards",
"url": "https://github.com/HilaryTorn/ThoughtGuards",
"description": "A real-time dashboard monitoring AI chain-of-thought traces for manipulative patterns, deception, and reward hacking.",
"detected_stack": [
"Standard Worker"
],