-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
1891 lines (1891 loc) · 54.1 KB
/
registry.json
File metadata and controls
1891 lines (1891 loc) · 54.1 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "stackfoundry",
"homepage": "https://stackfoundry.dev",
"items": [
{
"name": "account-deletion",
"type": "registry:block",
"title": "Account Deletion",
"description": "Account deletion requests, grace windows, and cleanup checklist.",
"files": [
{
"path": "registry/modules/account-deletion/module.json",
"type": "registry:file"
}
]
},
{
"name": "account-modes",
"type": "registry:block",
"title": "Account Modes",
"description": "Personal, team, and hybrid account mode configuration for SaaS apps.",
"files": [
{
"path": "registry/modules/account-modes/module.json",
"type": "registry:file"
}
]
},
{
"name": "account-settings",
"type": "registry:block",
"title": "Account Settings",
"description": "Profile, security, sessions, and notification preference pages.",
"files": [
{
"path": "registry/modules/account-settings/module.json",
"type": "registry:file"
}
]
},
{
"name": "admin-console",
"type": "registry:block",
"title": "Admin Console",
"description": "Super-admin shell for users, workspaces, metrics, and operational controls.",
"files": [
{
"path": "registry/modules/admin-console/module.json",
"type": "registry:file"
}
]
},
{
"name": "agent-ready-installs",
"type": "registry:block",
"title": "Agent-Ready Installs",
"description": "One-shot prompt packs and context files for coding assistants to install SaaS infrastructure safely.",
"files": [
{
"path": "registry/modules/agent-ready-installs/module.json",
"type": "registry:file"
}
]
},
{
"name": "ai-chat",
"type": "registry:block",
"title": "AI Chat",
"description": "AI SDK chat route, model selector, message persistence, and prompt input.",
"files": [
{
"path": "registry/modules/ai-chat/module.json",
"type": "registry:file"
}
]
},
{
"name": "ai-chatbot-sdk",
"type": "registry:block",
"title": "AI Chatbot SDK",
"description": "Vercel AI SDK and AI Elements chatbot shell for a source-owned conversational interface.",
"files": [
{
"path": "registry/modules/ai-chatbot-sdk/module.json",
"type": "registry:file"
}
]
},
{
"name": "ai-elements",
"type": "registry:block",
"title": "AI Elements",
"description": "Composable AI chat UI primitives inspired by Vercel AI Elements and shadcn/ui conventions.",
"files": [
{
"path": "registry/modules/ai-elements/module.json",
"type": "registry:file"
}
]
},
{
"name": "ai-sdk",
"type": "registry:block",
"title": "AI SDK",
"description": "Vercel AI SDK model configuration, streaming helpers, and gateway-ready defaults.",
"files": [
{
"path": "registry/modules/ai-sdk/module.json",
"type": "registry:file"
}
]
},
{
"name": "ai-seo",
"type": "registry:block",
"title": "AI SEO",
"description": "llms.txt, llms-full.txt, and AI sitemap routes for AI-ready discovery.",
"files": [
{
"path": "registry/modules/ai-seo/module.json",
"type": "registry:file"
}
]
},
{
"name": "api-docs",
"type": "registry:block",
"title": "API Docs",
"description": "API reference shell with auth, pagination, and error examples.",
"files": [
{
"path": "registry/modules/api-docs/module.json",
"type": "registry:file"
}
]
},
{
"name": "api-errors",
"type": "registry:block",
"title": "API Errors",
"description": "Machine-readable API error shape, code catalog, and response helpers.",
"files": [
{
"path": "registry/modules/api-errors/module.json",
"type": "registry:file"
}
]
},
{
"name": "api-keys",
"type": "registry:block",
"title": "API Keys",
"description": "API key lifecycle, scopes, hashed storage, usage metadata, and management UI.",
"files": [
{
"path": "registry/modules/api-keys/module.json",
"type": "registry:file"
}
]
},
{
"name": "api-usage-dashboard",
"type": "registry:block",
"title": "API Usage Dashboard",
"description": "Per-key usage cards, request totals, errors, and limit visibility.",
"files": [
{
"path": "registry/modules/api-usage-dashboard/module.json",
"type": "registry:file"
}
]
},
{
"name": "arcjet-security",
"type": "registry:block",
"title": "Arcjet Security",
"description": "Arcjet request protection starter for bot detection, shielding, and rate limits.",
"files": [
{
"path": "registry/modules/arcjet-security/module.json",
"type": "registry:file"
}
]
},
{
"name": "audit-log",
"type": "registry:block",
"title": "Audit Log",
"description": "Append-only activity table, event helpers, and admin timeline UI.",
"files": [
{
"path": "registry/modules/audit-log/module.json",
"type": "registry:file"
}
]
},
{
"name": "auth-better-auth",
"type": "registry:block",
"title": "Better Auth",
"description": "Better Auth server config, Next.js route handler, and typed client starter.",
"files": [
{
"path": "registry/modules/auth-better-auth/module.json",
"type": "registry:file"
}
]
},
{
"name": "auth-core",
"type": "registry:block",
"title": "Auth Core",
"description": "Provider-neutral auth architecture, route layout, and provider selection guide for Clerk or Better Auth.",
"files": [
{
"path": "registry/modules/auth-core/module.json",
"type": "registry:file"
}
]
},
{
"name": "autumn-billing",
"type": "registry:block",
"title": "Autumn Billing",
"description": "Autumn billing adapter for plan attach, checkout redirects, usage billing, and plan changes.",
"files": [
{
"path": "registry/modules/autumn-billing/module.json",
"type": "registry:file"
}
]
},
{
"name": "autumn-entitlements",
"type": "registry:block",
"title": "Autumn Entitlements",
"description": "Autumn entitlement adapter for feature checks, metered usage, check-and-consume, and upgrade context.",
"files": [
{
"path": "registry/modules/autumn-entitlements/module.json",
"type": "registry:file"
}
]
},
{
"name": "axiom-logging",
"type": "registry:block",
"title": "Axiom Logging",
"description": "Axiom structured event logger and server route for deployment smoke checks.",
"files": [
{
"path": "registry/modules/axiom-logging/module.json",
"type": "registry:file"
}
]
},
{
"name": "background-jobs",
"type": "registry:block",
"title": "Background Jobs",
"description": "Job table, queue abstraction, retry/cancel UI, and worker handoff patterns.",
"files": [
{
"path": "registry/modules/background-jobs/module.json",
"type": "registry:file"
}
]
},
{
"name": "backup-restore",
"type": "registry:block",
"title": "Backup Restore",
"description": "Backup run records, restore checklist, and continuity dashboard.",
"files": [
{
"path": "registry/modules/backup-restore/module.json",
"type": "registry:file"
}
]
},
{
"name": "billing-core",
"type": "registry:block",
"title": "Billing Core",
"description": "Provider-neutral customer, plan, and subscription primitives.",
"files": [
{
"path": "registry/modules/billing-core/module.json",
"type": "registry:file"
}
]
},
{
"name": "billing-portal",
"type": "registry:block",
"title": "Billing Portal",
"description": "Self-service billing portal link helpers and access checks.",
"files": [
{
"path": "registry/modules/billing-portal/module.json",
"type": "registry:file"
}
]
},
{
"name": "billing-reconciliation",
"type": "registry:block",
"title": "Billing Reconciliation",
"description": "Provider/database drift checks and reconciliation job status.",
"files": [
{
"path": "registry/modules/billing-reconciliation/module.json",
"type": "registry:file"
}
]
},
{
"name": "blog-changelog",
"type": "registry:block",
"title": "Blog Changelog",
"description": "Blog and product changelog list pages with release notes helpers.",
"files": [
{
"path": "registry/modules/blog-changelog/module.json",
"type": "registry:file"
}
]
},
{
"name": "bug-reports",
"type": "registry:block",
"title": "Bug Reports",
"description": "Bug report intake, severity, reproduction steps, and triage workflow.",
"files": [
{
"path": "registry/modules/bug-reports/module.json",
"type": "registry:file"
}
]
},
{
"name": "clerk-auth",
"type": "registry:block",
"title": "Clerk Auth",
"description": "Clerk sign-in/sign-up pages, middleware, server auth helper, and webhook starter.",
"files": [
{
"path": "registry/modules/clerk-auth/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-agents-sdk",
"type": "registry:block",
"title": "Cloudflare Agents SDK",
"description": "Stateful AI agents on Workers, React hooks, WebSocket/RPC surface.",
"files": [
{
"path": "registry/modules/cloudflare-agents-sdk/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-d1",
"type": "registry:block",
"title": "Cloudflare D1",
"description": "D1 binding usage, SQLite schema starter, and Wrangler database notes.",
"files": [
{
"path": "registry/modules/cloudflare-d1/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-durable-objects",
"type": "registry:block",
"title": "Cloudflare Durable Objects",
"description": "Stateful coordination, realtime rooms, per-tenant state, and DO storage.",
"files": [
{
"path": "registry/modules/cloudflare-durable-objects/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-hyperdrive",
"type": "registry:block",
"title": "Cloudflare Hyperdrive",
"description": "Postgres/MySQL connection acceleration for Workers.",
"files": [
{
"path": "registry/modules/cloudflare-hyperdrive/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-kumo-ui",
"type": "registry:block",
"title": "Cloudflare Kumo UI",
"description": "Cloudflare Kumo component-library building blocks for teams that want provider-grade UI primitives.",
"files": [
{
"path": "registry/modules/cloudflare-kumo-ui/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-kv",
"type": "registry:block",
"title": "Cloudflare KV",
"description": "KV binding adapter for low-write configuration, flags, and cached metadata.",
"files": [
{
"path": "registry/modules/cloudflare-kv/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-mcp-server",
"type": "registry:block",
"title": "Cloudflare MCP Server",
"description": "Remote MCP server on Workers with OAuth/auth guidance.",
"files": [
{
"path": "registry/modules/cloudflare-mcp-server/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-next-starter",
"type": "registry:block",
"title": "Cloudflare Next Starter",
"description": "OpenNext and Wrangler starter for deploying a consuming Next.js app to Cloudflare Workers.",
"files": [
{
"path": "registry/modules/cloudflare-next-starter/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-observability",
"type": "registry:block",
"title": "Cloudflare Observability",
"description": "Workers logs, traces, analytics, and tail workers.",
"files": [
{
"path": "registry/modules/cloudflare-observability/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-pages",
"type": "registry:block",
"title": "Cloudflare Pages",
"description": "Alternate deploy path for static and edge-friendly apps.",
"files": [
{
"path": "registry/modules/cloudflare-pages/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-queues",
"type": "registry:block",
"title": "Cloudflare Queues",
"description": "Async jobs, producer/consumer Workers, retries, and DLQ guidance.",
"files": [
{
"path": "registry/modules/cloudflare-queues/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-r2",
"type": "registry:block",
"title": "Cloudflare R2",
"description": "R2 object storage adapter example for uploads and private object reads.",
"files": [
{
"path": "registry/modules/cloudflare-r2/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-terraform",
"type": "registry:block",
"title": "Cloudflare Terraform",
"description": "IaC module for zones, Workers, R2, D1, Queues, and secrets.",
"files": [
{
"path": "registry/modules/cloudflare-terraform/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-tunnel",
"type": "registry:block",
"title": "Cloudflare Tunnel",
"description": "Secure tunnel module for exposing local/internal services.",
"files": [
{
"path": "registry/modules/cloudflare-tunnel/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-turnstile",
"type": "registry:block",
"title": "Cloudflare Turnstile",
"description": "Bot protection for signup, contact, waitlist, and abuse-sensitive forms.",
"files": [
{
"path": "registry/modules/cloudflare-turnstile/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-vectorize",
"type": "registry:block",
"title": "Cloudflare Vectorize",
"description": "Vector search and RAG provider module.",
"files": [
{
"path": "registry/modules/cloudflare-vectorize/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-workers",
"type": "registry:block",
"title": "Cloudflare Workers",
"description": "Cloudflare Worker entrypoint, Wrangler config example, and edge API route starter.",
"files": [
{
"path": "registry/modules/cloudflare-workers/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-workers-ai",
"type": "registry:block",
"title": "Cloudflare Workers AI",
"description": "Workers AI inference, embeddings, and image generation examples.",
"files": [
{
"path": "registry/modules/cloudflare-workers-ai/module.json",
"type": "registry:file"
}
]
},
{
"name": "cloudflare-workflows",
"type": "registry:block",
"title": "Cloudflare Workflows",
"description": "Cloudflare Workflows durable step starter for Workers-native orchestration.",
"files": [
{
"path": "registry/modules/cloudflare-workflows/module.json",
"type": "registry:file"
}
]
},
{
"name": "command-menu",
"type": "registry:block",
"title": "Command Menu",
"description": "Keyboard-first command menu component for SaaS navigation and actions.",
"files": [
{
"path": "registry/modules/command-menu/module.json",
"type": "registry:file"
}
]
},
{
"name": "connected-accounts",
"type": "registry:block",
"title": "Connected Accounts",
"description": "OAuth account linking, provider metadata, and disconnect controls.",
"files": [
{
"path": "registry/modules/connected-accounts/module.json",
"type": "registry:file"
}
]
},
{
"name": "contact-forms",
"type": "registry:block",
"title": "Contact Forms",
"description": "Contact form submissions, spam review, and routing workflow.",
"files": [
{
"path": "registry/modules/contact-forms/module.json",
"type": "registry:file"
}
]
},
{
"name": "convex-backend",
"type": "registry:block",
"title": "Convex Backend",
"description": "Convex project setup, generated functions, provider wrapper, and deployment docs.",
"files": [
{
"path": "registry/modules/convex-backend/module.json",
"type": "registry:file"
}
]
},
{
"name": "convex-integration",
"type": "registry:block",
"title": "Convex Integration",
"description": "Convex dashboard links, deployment status, and schema/function notes.",
"files": [
{
"path": "registry/modules/convex-integration/module.json",
"type": "registry:file"
}
]
},
{
"name": "convex-realtime",
"type": "registry:block",
"title": "Convex Realtime",
"description": "Live queries, subscriptions, realtime dashboards, and optimistic update examples.",
"files": [
{
"path": "registry/modules/convex-realtime/module.json",
"type": "registry:file"
}
]
},
{
"name": "cookie-consent",
"type": "registry:block",
"title": "Cookie Consent",
"description": "Cookie category preferences and consent banner state.",
"files": [
{
"path": "registry/modules/cookie-consent/module.json",
"type": "registry:file"
}
]
},
{
"name": "cors-policy",
"type": "registry:block",
"title": "CORS Policy",
"description": "Allowed origin configuration, preflight helpers, and deployment checklist.",
"files": [
{
"path": "registry/modules/cors-policy/module.json",
"type": "registry:file"
}
]
},
{
"name": "coupons-promotions",
"type": "registry:block",
"title": "Coupons Promotions",
"description": "Coupon, promotion code, and referral discount tracking.",
"files": [
{
"path": "registry/modules/coupons-promotions/module.json",
"type": "registry:file"
}
]
},
{
"name": "credit-wallet",
"type": "registry:block",
"title": "Credit Wallet",
"description": "Prepaid credits, grant/consume ledger, low-balance checks, and AI or usage-based wallet flows.",
"files": [
{
"path": "registry/modules/credit-wallet/module.json",
"type": "registry:file"
}
]
},
{
"name": "csrf-protection",
"type": "registry:block",
"title": "CSRF Protection",
"description": "CSRF token helpers and unsafe-method protection checklist.",
"files": [
{
"path": "registry/modules/csrf-protection/module.json",
"type": "registry:file"
}
]
},
{
"name": "custom-domains",
"type": "registry:block",
"title": "Custom Domains",
"description": "Custom domain records, status, and tenant-owned routing controls.",
"files": [
{
"path": "registry/modules/custom-domains/module.json",
"type": "registry:file"
}
]
},
{
"name": "custom-roles",
"type": "registry:block",
"title": "Custom Roles",
"description": "Custom role definitions, role cloning, and permission assignment boundaries.",
"files": [
{
"path": "registry/modules/custom-roles/module.json",
"type": "registry:file"
}
]
},
{
"name": "data-export",
"type": "registry:block",
"title": "Data Export",
"description": "User and workspace export requests with status tracking.",
"files": [
{
"path": "registry/modules/data-export/module.json",
"type": "registry:file"
}
]
},
{
"name": "data-retention",
"type": "registry:block",
"title": "Data Retention",
"description": "Retention policies, deletion windows, and compliance review UI.",
"files": [
{
"path": "registry/modules/data-retention/module.json",
"type": "registry:file"
}
]
},
{
"name": "data-table",
"type": "registry:block",
"title": "Data Table",
"description": "Typed table shell with empty/loading/error slots and row actions.",
"files": [
{
"path": "registry/modules/data-table/module.json",
"type": "registry:file"
}
]
},
{
"name": "dependency-audit",
"type": "registry:block",
"title": "Dependency Audit",
"description": "Dependency scanning, high-severity gate, and release checklist.",
"files": [
{
"path": "registry/modules/dependency-audit/module.json",
"type": "registry:file"
}
]
},
{
"name": "developer-portal",
"type": "registry:block",
"title": "Developer Portal",
"description": "Developer dashboard shell for keys, docs, webhooks, and usage.",
"files": [
{
"path": "registry/modules/developer-portal/module.json",
"type": "registry:file"
}
]
},
{
"name": "docs-fumadocs",
"type": "registry:block",
"title": "Fumadocs Docs",
"description": "In-app Next.js documentation starter with Fumadocs setup and deployment guidance.",
"files": [
{
"path": "registry/modules/docs-fumadocs/module.json",
"type": "registry:file"
}
]
},
{
"name": "docs-help-center",
"type": "registry:block",
"title": "Docs Help Center",
"description": "Help center index, article metadata, and support escalation paths.",
"files": [
{
"path": "registry/modules/docs-help-center/module.json",
"type": "registry:file"
}
]
},
{
"name": "docs-mintlify",
"type": "registry:block",
"title": "Mintlify Docs",
"description": "Hosted documentation workspace starter with Mintlify configuration, pages, and deployment guidance.",
"files": [
{
"path": "registry/modules/docs-mintlify/module.json",
"type": "registry:file"
}
]
},
{
"name": "domain-verification",
"type": "registry:block",
"title": "Domain Verification",
"description": "DNS TXT/CNAME verification state for tenant domains.",
"files": [
{
"path": "registry/modules/domain-verification/module.json",
"type": "registry:file"
}
]
},
{
"name": "drizzle-postgres",
"type": "registry:block",
"title": "Drizzle Postgres",
"description": "Postgres + Drizzle package, schema barrel, migrations, and server-only DB access.",
"files": [
{
"path": "registry/modules/drizzle-postgres/module.json",
"type": "registry:file"
}
]
},
{
"name": "dunning-recovery",
"type": "registry:block",
"title": "Dunning Recovery",
"description": "Failed payment recovery sequence with email and in-app notices.",
"files": [
{
"path": "registry/modules/dunning-recovery/module.json",
"type": "registry:file"
}
]
},
{
"name": "email-templates",
"type": "registry:block",
"title": "Email Templates",
"description": "Transactional email template catalog with plain-text fallback guidance.",
"files": [
{
"path": "registry/modules/email-templates/module.json",
"type": "registry:file"
}
]
},
{
"name": "email-verification",
"type": "registry:block",
"title": "Email Verification",
"description": "Email verification token helpers and verification state UI.",
"files": [
{
"path": "registry/modules/email-verification/module.json",
"type": "registry:file"
}
]
},
{
"name": "empty-states",
"type": "registry:block",
"title": "Empty States",
"description": "Reusable empty state component with action and guidance slots.",
"files": [
{
"path": "registry/modules/empty-states/module.json",
"type": "registry:file"
}
]
},
{
"name": "enterprise-sso",
"type": "registry:block",
"title": "Enterprise SSO",
"description": "SAML/OIDC connection metadata, enforcement policy, and setup checklist.",
"files": [
{
"path": "registry/modules/enterprise-sso/module.json",
"type": "registry:file"
}
]
},
{
"name": "entitlements",
"type": "registry:block",
"title": "Entitlements",
"description": "Feature entitlement definitions, checks, and admin review UI.",
"files": [
{
"path": "registry/modules/entitlements/module.json",
"type": "registry:file"
}
]
},
{
"name": "error-boundaries",
"type": "registry:block",
"title": "Error Boundaries",
"description": "React error boundary and fallback component for product pages.",
"files": [
{
"path": "registry/modules/error-boundaries/module.json",
"type": "registry:file"
}
]
},
{
"name": "feature-flags",
"type": "registry:block",
"title": "Feature Flags",
"description": "Flag table, evaluation helper, admin UI, and per-org targeting.",
"files": [
{
"path": "registry/modules/feature-flags/module.json",
"type": "registry:file"
}
]
},
{
"name": "feature-requests",
"type": "registry:block",
"title": "Feature Requests",
"description": "Feature request intake, status, votes, and roadmap handoff.",
"files": [
{
"path": "registry/modules/feature-requests/module.json",
"type": "registry:file"
}
]
},
{
"name": "file-uploads",
"type": "registry:block",
"title": "File Uploads",
"description": "File metadata, upload policy helpers, and upload management UI.",
"files": [
{
"path": "registry/modules/file-uploads/module.json",
"type": "registry:file"
}
]
},
{
"name": "fly-deploy",
"type": "registry:block",
"title": "Fly Deploy",
"description": "App and worker deployment with regionality notes and templates.",
"files": [
{
"path": "registry/modules/fly-deploy/module.json",
"type": "registry:file"
}
]
},
{
"name": "github-integration",
"type": "registry:block",
"title": "GitHub Integration",
"description": "GitHub App Octokit client, webhook route starter, and repository action example.",
"files": [
{
"path": "registry/modules/github-integration/module.json",
"type": "registry:file"
}
]