forked from ltdrdata/ComfyUI-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-node-list.json
4838 lines (4832 loc) · 234 KB
/
custom-node-list.json
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
{
"custom_nodes": [
{
"author": "Dr.Lt.Data",
"title": "ComfyUI-Manager",
"reference": "https://github.com/ltdrdata/ComfyUI-Manager",
"files": [
"https://github.com/ltdrdata/ComfyUI-Manager"
],
"install_type": "git-clone",
"description": "ComfyUI-Manager itself is also a custom node."
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI Impact Pack",
"reference": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
"files": [
"https://github.com/ltdrdata/ComfyUI-Impact-Pack"
],
"pip": ["ultralytics"],
"install_type": "git-clone",
"description": "This extension offers various detector nodes and detailer nodes that allow you to configure a workflow that automatically enhances facial details. And provide iterative upscaler.\n[w/NOTE:'Segs & Mask' has been renamed to 'ImpactSegsAndMask.' Please replace the node with the new name.]"
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI Inspire Pack",
"reference": "https://github.com/ltdrdata/ComfyUI-Inspire-Pack",
"nodename_pattern": "Inspire$",
"files": [
"https://github.com/ltdrdata/ComfyUI-Inspire-Pack"
],
"install_type": "git-clone",
"description": "This extension provides various nodes to support Lora Block Weight and the Impact Pack. Provides many easily applicable regional features and applications for Variation Seed."
},
{
"author": "comfyanonymous",
"title": "ComfyUI_experiments",
"reference": "https://github.com/comfyanonymous/ComfyUI_experiments",
"files": [
"https://github.com/comfyanonymous/ComfyUI_experiments"
],
"install_type": "git-clone",
"description": "Nodes: ModelSamplerTonemapNoiseTest, TonemapNoiseWithRescaleCFG, ReferenceOnlySimple, RescaleClassifierFreeGuidanceTest, ModelMergeBlockNumber, ModelMergeSDXL, ModelMergeSDXLTransformers, ModelMergeSDXLDetailedTransformers.[w/NOTE: This is a consolidation of the previously separate custom nodes. Please delete the sampler_tonemap.py, sampler_rescalecfg.py, advanced_model_merging.py, sdxl_model_merging.py, and reference_only.py files installed in custom_nodes before.]"
},
{
"author": "Stability-AI",
"title": "stability-ComfyUI-nodes",
"reference": "https://github.com/Stability-AI/stability-ComfyUI-nodes",
"files": [
"https://github.com/Stability-AI/stability-ComfyUI-nodes"
],
"install_type": "git-clone",
"description": "Nodes: ColorBlend, ControlLoraSave, GetImageSize. NOTE: Control-LoRA recolor example uses these nodes."
},
{
"author": "Fannovel16",
"title": "ComfyUI's ControlNet Auxiliary Preprocessors",
"reference": "https://github.com/Fannovel16/comfyui_controlnet_aux",
"files": [
"https://github.com/Fannovel16/comfyui_controlnet_aux"
],
"install_type": "git-clone",
"description": "This is a rework of comfyui_controlnet_preprocessors based on ControlNet auxiliary models by 🤗. I think the old repo isn't good enough to maintain. All old workflow will still be work with this repo but the version option won't do anything. Almost all v1 preprocessors are replaced by v1.1 except those doesn't appear in v1.1. [w/NOTE: Please refrain from using the controlnet preprocessor alongside this installation, as it may lead to conflicts and prevent proper recognition.]"
},
{
"author": "Fannovel16",
"title": "ComfyUI Frame Interpolation",
"reference": "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation",
"files": [
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
],
"install_type": "git-clone",
"description": "Nodes: KSampler Gradually Adding More Denoise (efficient)"
},
{
"author": "Fannovel16",
"title": "ComfyUI Loopchain",
"reference": "https://github.com/Fannovel16/ComfyUI-Loopchain",
"files": [
"https://github.com/Fannovel16/ComfyUI-Loopchain"
],
"install_type": "git-clone",
"description": "A collection of nodes which can be useful for animation in ComfyUI. The main focus of this extension is implementing a mechanism called loopchain. A loopchain in this case is the chain of nodes only executed repeatly in the workflow. If a node chain contains a loop node from this extension, it will become a loop chain."
},
{
"author": "Fannovel16",
"title": "ComfyUI MotionDiff",
"reference": "https://github.com/Fannovel16/ComfyUI-MotionDiff",
"files": [
"https://github.com/Fannovel16/ComfyUI-MotionDiff"
],
"install_type": "git-clone",
"description": "Implementation of MDM, MotionDiffuse and ReMoDiffuse into ComfyUI."
},
{
"author": "Fannovel16",
"title": "ComfyUI-Video-Matting",
"reference": "https://github.com/Fannovel16/ComfyUI-Video-Matting",
"files": [
"https://github.com/Fannovel16/ComfyUI-Video-Matting"
],
"install_type": "git-clone",
"description": "A minimalistic implementation of [a/Robust Video Matting (RVM)](https://github.com/PeterL1n/RobustVideoMatting/) in ComfyUI"
},
{
"author": "biegert",
"title": "CLIPSeg",
"reference": "https://github.com/biegert/ComfyUI-CLIPSeg",
"files": [
"https://github.com/biegert/ComfyUI-CLIPSeg/raw/main/custom_nodes/clipseg.py"
],
"install_type": "copy",
"description": "The CLIPSeg node generates a binary mask for a given input image and text prompt."
},
{
"author": "BlenderNeko",
"title": "ComfyUI Cutoff",
"reference": "https://github.com/BlenderNeko/ComfyUI_Cutoff",
"files": [
"https://github.com/BlenderNeko/ComfyUI_Cutoff"
],
"install_type": "git-clone",
"description": "These custom nodes provides features that allow for better control over the effects of the text prompt."
},
{
"author": "BlenderNeko",
"title": "Advanced CLIP Text Encode",
"reference": "https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb",
"files": [
"https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb"
],
"install_type": "git-clone",
"description": "Advanced CLIP Text Encode (if you need A1111 like prompt. you need this. But Cutoff node includes this feature, already.)"
},
{
"author": "BlenderNeko",
"title": "ComfyUI Noise",
"reference": "https://github.com/BlenderNeko/ComfyUI_Noise",
"files": [
"https://github.com/BlenderNeko/ComfyUI_Noise"
],
"install_type": "git-clone",
"description": "This extension contains 6 nodes for ComfyUI that allows for more control and flexibility over the noise."
},
{
"author": "BlenderNeko",
"title": "Tiled sampling for ComfyUI",
"reference": "https://github.com/BlenderNeko/ComfyUI_TiledKSampler",
"files": [
"https://github.com/BlenderNeko/ComfyUI_TiledKSampler"
],
"install_type": "git-clone",
"description": "This extension contains a tiled sampler for ComfyUI. It allows for denoising larger images by splitting it up into smaller tiles and denoising these. It tries to minimize any seams for showing up in the end result by gradually denoising all tiles one step at the time and randomizing tile positions for every step."
},
{
"author": "BlenderNeko",
"title": "SeeCoder [WIP]",
"reference": "https://github.com/BlenderNeko/ComfyUI_SeeCoder",
"files": [
"https://github.com/BlenderNeko/ComfyUI_SeeCoder"
],
"install_type": "git-clone",
"description": "It provides the capability to generate CLIP from an image input, unlike unCLIP, which works in all models. (To use this extension, you need to download the required model file from **Install Models**)"
},
{
"author": "jags111",
"title": "Efficiency Nodes for ComfyUI Version 2.0+",
"reference": "https://github.com/jags111/efficiency-nodes-comfyui",
"files": [
"https://github.com/jags111/efficiency-nodes-comfyui"
],
"install_type": "git-clone",
"description": "A collection of ComfyUI custom nodes to help streamline workflows and reduce total node count.[w/NOTE: This node is originally created by LucianoCirino, but the [a/original repository](https://github.com/LucianoCirino/efficiency-nodes-comfyui) is no longer maintained and has been forked by a new maintainer. To use the forked version, you should uninstall the original version and **REINSTALL** this one.]"
},
{
"author": "jags111",
"title": "ComfyUI_Jags_VectorMagic",
"reference": "https://github.com/jags111/ComfyUI_Jags_VectorMagic",
"files": [
"https://github.com/jags111/ComfyUI_Jags_VectorMagic"
],
"install_type": "git-clone",
"description": "a collection of nodes to explore Vector and image manipulation"
},
{
"author": "jags111",
"title": "ComfyUI_Jags_Audiotools",
"reference": "https://github.com/jags111/ComfyUI_Jags_Audiotools",
"files": [
"https://github.com/jags111/ComfyUI_Jags_Audiotools"
],
"install_type": "git-clone",
"description": "This extension offers various audio generation tools"
},
{
"author": "Derfuu",
"title": "Derfuu_ComfyUI_ModdedNodes",
"reference": "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes",
"files": [
"https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes"
],
"install_type": "git-clone",
"description": "Automate calculation depending on image sizes or something you want."
},
{
"author": "paulo-coronado",
"title": "comfy_clip_blip_node",
"reference": "https://github.com/paulo-coronado/comfy_clip_blip_node",
"files": [
"https://github.com/paulo-coronado/comfy_clip_blip_node"
],
"install_type": "git-clone",
"apt_dependency": [
"rustc",
"cargo"
],
"description": "CLIPTextEncodeBLIP: This custom node provides a CLIP Encoder that is capable of receiving images as input."
},
{
"author": "Davemane42",
"title": "Visual Area Conditioning / Latent composition",
"reference": "https://github.com/Davemane42/ComfyUI_Dave_CustomNode",
"files": [
"https://github.com/Davemane42/ComfyUI_Dave_CustomNode"
],
"install_type": "git-clone",
"description": "This tool provides custom nodes that allow visualization and configuration of area conditioning and latent composite."
},
{
"author": "WASasquatch",
"title": "WAS Node Suite",
"reference": "https://github.com/WASasquatch/was-node-suite-comfyui",
"pip": ["numba"],
"files": [
"https://github.com/WASasquatch/was-node-suite-comfyui"
],
"install_type": "git-clone",
"description": "A node suite for ComfyUI with many new nodes, such as image processing, text processing, and more."
},
{
"author": "WASasquatch",
"title": "ComfyUI Preset Merger",
"reference": "https://github.com/WASasquatch/ComfyUI_Preset_Merger",
"files": [
"https://github.com/WASasquatch/ComfyUI_Preset_Merger"
],
"install_type": "git-clone",
"description": "Nodes: ModelMergeByPreset. Merge checkpoint models by preset"
},
{
"author": "WASasquatch",
"title": "PPF_Noise_ComfyUI",
"reference": "https://github.com/WASasquatch/PPF_Noise_ComfyUI",
"files": [
"https://github.com/WASasquatch/PPF_Noise_ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes: WAS_PFN_Latent. Perlin Power Fractal Noisey Latents"
},
{
"author": "WASasquatch",
"title": "Power Noise Suite for ComfyUI",
"reference": "https://github.com/WASasquatch/PowerNoiseSuite",
"files": [
"https://github.com/WASasquatch/PowerNoiseSuite"
],
"install_type": "git-clone",
"description": "Power Noise Suite contains nodes centered around latent noise input, and diffusion, as well as latent adjustments."
},
{
"author": "WASasquatch",
"title": "FreeU_Advanced",
"reference": "https://github.com/WASasquatch/FreeU_Advanced",
"files": [
"https://github.com/WASasquatch/FreeU_Advanced"
],
"install_type": "git-clone",
"description": "This custom node provides advanced settings for FreeU."
},
{
"author": "WASasquatch",
"title": "ASTERR",
"reference": "https://github.com/WASasquatch/ASTERR",
"files": [
"https://github.com/WASasquatch/ASTERR"
],
"install_type": "git-clone",
"description": "Abstract Syntax Trees Evaluated Restricted Run (ASTERR) is a Python Script executor for ComfyUI. [w/Warning:ASTERR runs Python Code from a Web Interface! It is highly recommended to run this in a closed-off environment, as it could have potential security risks.]"
},
{
"author": "WASasquatch",
"title": "WAS_Extras",
"reference": "https://github.com/WASasquatch/WAS_Extras",
"files": [
"https://github.com/WASasquatch/WAS_Extras"
],
"install_type": "git-clone",
"description": "Nodes:Conditioning (Blend), Inpainting VAE Encode (WAS), VividSharpen. Experimental nodes, or other random extra helper nodes."
},
{
"author": "omar92",
"title": "Quality of life Suit:V2",
"reference": "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92",
"files": [
"https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92"
],
"install_type": "git-clone",
"description": "openAI suite, String suite, Latent Tools, Image Tools: These custom nodes provide expanded functionality for image and string processing, latent processing, as well as the ability to interface with models such as ChatGPT/DallE-2.\nNOTE: Currently, this extension does not support the new OpenAI API, leading to compatibility issues."
},
{
"author": "lilly1987",
"title": "simple wildcard for ComfyUI",
"reference": "https://github.com/lilly1987/ComfyUI_node_Lilly",
"files": [
"https://github.com/lilly1987/ComfyUI_node_Lilly"
],
"install_type": "git-clone",
"description": "These custom nodes provides a feature to insert arbitrary inputs through wildcards in the prompt. Additionally, this tool provides features that help simplify workflows, such as VAELoaderDecoder and SimplerSample."
},
{
"author": "sylym",
"title": "Vid2vid",
"reference": "https://github.com/sylym/comfy_vid2vid",
"files": [
"https://github.com/sylym/comfy_vid2vid"
],
"install_type": "git-clone",
"description": "A node suite for ComfyUI that allows you to load image sequence and generate new image sequence with different styles or content."
},
{
"author": "EllangoK",
"title": "ComfyUI-post-processing-nodes",
"reference": "https://github.com/EllangoK/ComfyUI-post-processing-nodes",
"files": [
"https://github.com/EllangoK/ComfyUI-post-processing-nodes"
],
"install_type": "git-clone",
"description": "A collection of post processing nodes for ComfyUI, simply download this repo and drag."
},
{
"author": "LEv145",
"title": "ImagesGrid",
"reference": "https://github.com/LEv145/images-grid-comfy-plugin",
"files": [
"https://github.com/LEv145/images-grid-comfy-plugin"
],
"install_type": "git-clone",
"description": "This tool provides a viewer node that allows for checking multiple outputs in a grid, similar to the X/Y Plot extension."
},
{
"author": "diontimmer",
"title": "ComfyUI-Vextra-Nodes",
"reference": "https://github.com/diontimmer/ComfyUI-Vextra-Nodes",
"files": [
"https://github.com/diontimmer/ComfyUI-Vextra-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: Pixel Sort, Swap Color Mode, Solid Color, Glitch This, Add Text To Image, Play Sound, Prettify Prompt, Generate Noise, Flatten Colors"
},
{
"author": "CYBERLOOM-INC",
"title": "ComfyUI-nodes-hnmr",
"reference": "https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr",
"files": [
"https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr"
],
"install_type": "git-clone",
"description": "Provide various custom nodes for Latent, Sampling, Model, Loader, Image, Text. This is the fixed version of the original [a/ComfyUI-nodes-hnmr](https://github.com/hnmr293/ComfyUI-nodes-hnmr) by hnmr293."
},
{
"author": "BadCafeCode",
"title": "Masquerade Nodes",
"reference": "https://github.com/BadCafeCode/masquerade-nodes-comfyui",
"files": [
"https://github.com/BadCafeCode/masquerade-nodes-comfyui"
],
"install_type": "git-clone",
"description": "This is a node pack for ComfyUI, primarily dealing with masks."
},
{
"author": "guoyk93",
"title": "y.k.'s ComfyUI node suite",
"reference": "https://github.com/guoyk93/yk-node-suite-comfyui",
"files": [
"https://github.com/guoyk93/yk-node-suite-comfyui"
],
"install_type": "git-clone",
"description": "Nodes: YKImagePadForOutpaint, YKMaskToImage"
},
{
"author": "Jcd1230",
"title": "Rembg Background Removal Node for ComfyUI",
"reference": "https://github.com/Jcd1230/rembg-comfyui-node",
"files": [
"https://github.com/Jcd1230/rembg-comfyui-node"
],
"install_type": "git-clone",
"description": "Nodes: Image Remove Background (rembg)"
},
{
"author": "YinBailiang",
"title": "MergeBlockWeighted_fo_ComfyUI",
"reference": "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI",
"files": [
"https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes: MergeBlockWeighted"
},
{
"author": "trojblue",
"title": "trNodes",
"reference": "https://github.com/trojblue/trNodes",
"files": [
"https://github.com/trojblue/trNodes"
],
"install_type": "git-clone",
"description": "Nodes: image_layering, color_correction, model_router"
},
{
"author": "szhublox",
"title": "Auto-MBW",
"reference": "https://github.com/szhublox/ambw_comfyui",
"files": [
"https://github.com/szhublox/ambw_comfyui"
],
"install_type": "git-clone",
"description": "Auto-MBW for ComfyUI loosely based on sdweb-auto-MBW. Nodes: auto merge block weighted"
},
{
"author": "city96",
"title": "ComfyUI_NetDist",
"reference": "https://github.com/city96/ComfyUI_NetDist",
"files": [
"https://github.com/city96/ComfyUI_NetDist"
],
"install_type": "git-clone",
"description": "Run ComfyUI workflows on multiple local GPUs/networked machines. Nodes: Remote images, Local Remote control"
},
{
"author": "city96",
"title": "Latent-Interposer",
"reference": "https://github.com/city96/SD-Latent-Interposer",
"files": [
"https://github.com/city96/SD-Latent-Interposer"
],
"install_type": "git-clone",
"description": "Custom node to convert the lantents between SDXL and SD v1.5 directly without the VAE decoding/encoding step."
},
{
"author": "city96",
"title": "SD-Advanced-Noise",
"reference": "https://github.com/city96/SD-Advanced-Noise",
"files": [
"https://github.com/city96/SD-Advanced-Noise"
],
"install_type": "git-clone",
"description": "Nodes: LatentGaussianNoise, MathEncode. An experimental custom node that generates latent noise directly by utilizing the linear characteristics of the latent space."
},
{
"author": "city96",
"title": "SD-Latent-Upscaler",
"reference": "https://github.com/city96/SD-Latent-Upscaler",
"files": [
"https://github.com/city96/SD-Latent-Upscaler"
],
"pip": ["huggingface-hub"],
"install_type": "git-clone",
"description": "Upscaling stable diffusion latents using a small neural network."
},
{
"author": "city96",
"title": "ComfyUI_DiT [WIP]",
"reference": "https://github.com/city96/ComfyUI_DiT",
"files": [
"https://github.com/city96/ComfyUI_DiT"
],
"pip": ["huggingface-hub"],
"install_type": "git-clone",
"description": "Testbed for [a/DiT(Scalable Diffusion Models with Transformers)](https://github.com/facebookresearch/DiT). [w/None of this code is stable, expect breaking changes if for some reason you want to use this.]"
},
{
"author": "city96",
"title": "ComfyUI_ColorMod",
"reference": "https://github.com/city96/ComfyUI_ColorMod",
"files": [
"https://github.com/city96/ComfyUI_ColorMod"
],
"install_type": "git-clone",
"description": "This extension currently has two sets of nodes - one set for editing the contrast/color of images and another set for saving images as 16 bit PNG files."
},
{
"author": "city96",
"title": "Extra Models for ComfyUI",
"reference": "https://github.com/city96/ComfyUI_ExtraModels",
"files": [
"https://github.com/city96/ComfyUI_ExtraModels"
],
"install_type": "git-clone",
"description": "This extension aims to add support for various random image diffusion models to ComfyUI."
},
{
"author": "Kaharos94",
"title": "ComfyUI-Saveaswebp",
"reference": "https://github.com/Kaharos94/ComfyUI-Saveaswebp",
"files": [
"https://github.com/Kaharos94/ComfyUI-Saveaswebp"
],
"install_type": "git-clone",
"description": "Save a picture as Webp file in Comfy + Workflow loading"
},
{
"author": "SLAPaper",
"title": "ComfyUI-Image-Selector",
"reference": "https://github.com/SLAPaper/ComfyUI-Image-Selector",
"files": [
"https://github.com/SLAPaper/ComfyUI-Image-Selector"
],
"install_type": "git-clone",
"description": "A custom node for ComfyUI, which can select one or some of images from a batch."
},
{
"author": "flyingshutter",
"title": "As_ComfyUI_CustomNodes",
"reference": "https://github.com/flyingshutter/As_ComfyUI_CustomNodes",
"files": [
"https://github.com/flyingshutter/As_ComfyUI_CustomNodes"
],
"install_type": "git-clone",
"description": "Manipulation nodes for Image, Latent"
},
{
"author": "Zuellni",
"title": "Zuellni/ComfyUI-Custom-Nodes",
"reference": "https://github.com/Zuellni/ComfyUI-Custom-Nodes",
"files": [
"https://github.com/Zuellni/ComfyUI-Custom-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: DeepFloyd, Filter, Select, Save, Decode, Encode, Repeat, Noise, Noise"
},
{
"author": "Zuellni",
"title": "ComfyUI-ExLlama",
"reference": "https://github.com/Zuellni/ComfyUI-ExLlama",
"files": [
"https://github.com/Zuellni/ComfyUI-ExLlama"
],
"pip": ["sentencepiece", "https://github.com/jllllll/exllama/releases/download/0.0.17/exllama-0.0.17+cu118-cp310-cp310-win_amd64.whl"],
"install_type": "git-clone",
"description": "Nodes: ExLlama Loader, ExLlama Generator.\nUsed to load 4-bit GPTQ Llama/2 models. You can find a lot of them over at [a/https://huggingface.co/TheBloke](https://huggingface.co/TheBloke)[w/NOTE: You need to manually install a pip package that suits your system. For example. If your system is 'Python3.10 + Windows + CUDA 11.8' then you need to install 'exllama-0.0.17+cu118-cp310-cp310-win_amd64.whl'. Available package files are [a/here](https://github.com/jllllll/exllama/releases)]"
},
{
"author": "Zuellni",
"title": "ComfyUI PickScore Nodes",
"reference": "https://github.com/Zuellni/ComfyUI-PickScore-Nodes",
"files": [
"https://github.com/Zuellni/ComfyUI-PickScore-Nodes"
],
"install_type": "git-clone",
"description": "Image scoring nodes for ComfyUI using PickScore with a batch of images to predict which ones fit a given prompt the best."
},
{
"author": "AlekPet",
"title": "AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"reference": "https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"files": [
"https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet"
],
"install_type": "git-clone",
"description": "Nodes: PoseNode, PainterNode, TranslateTextNode, TranslateCLIPTextEncodeNode, DeepTranslatorTextNode, DeepTranslatorCLIPTextEncodeNode, ArgosTranslateTextNode, ArgosTranslateCLIPTextEncodeNode, PreviewTextNode.\n\nNOTE: Due to the dynamic nature of node name definitions, ComfyUI-Manager cannot recognize the node list from this extension. The Missing nodes and Badge features are not available for this extension."
},
{
"author": "pythongosssss",
"title": "ComfyUI WD 1.4 Tagger",
"reference": "https://github.com/pythongosssss/ComfyUI-WD14-Tagger",
"files": [
"https://github.com/pythongosssss/ComfyUI-WD14-Tagger"
],
"install_type": "git-clone",
"description": "A ComfyUI extension allowing the interrogation of booru tags from images."
},
{
"author": "pythongosssss",
"title": "pythongosssss/ComfyUI-Custom-Scripts",
"reference": "https://github.com/pythongosssss/ComfyUI-Custom-Scripts",
"files": [
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
],
"install_type": "git-clone",
"description": "This extension provides: Auto Arrange Graph, Workflow SVG, Favicon Status, Image Feed, Latent Upscale By, Lock Nodes & Groups, Lora Subfolders, Preset Text, Show Text, Touch Support, Link Render Mode, Locking, Node Finder, Quick Nodes, Show Image On Menu, Show Text, Workflow Managements, Custom Widget Default Values"
},
{
"author": "strimmlarn",
"title": "ComfyUI_Strimmlarns_aesthetic_score",
"reference": "https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score",
"js_path": "strimmlarn",
"files": [
"https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score"
],
"install_type": "git-clone",
"description": "Nodes: CalculateAestheticScore, LoadAesteticModel, AesthetlcScoreSorter, ScoreToNumber"
},
{
"author": "tinyterra",
"title": "tinyterraNodes",
"reference": "https://github.com/tinyterra/ComfyUI_tinyterraNodes",
"files": [
"https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
],
"install_type": "git-clone",
"nodename_pattern": "^ttN ",
"description": "This extension offers various pipe nodes, fullscreen image viewer based on node history, dynamic widgets, interface customization, and more."
},
{
"author": "Jordach",
"title": "comfy-plasma",
"reference": "https://github.com/Jordach/comfy-plasma",
"files": [
"https://github.com/Jordach/comfy-plasma"
],
"install_type": "git-clone",
"description": "Nodes: Plasma Noise, Random Noise, Greyscale Noise, Pink Noise, Brown Noise, Plasma KSampler"
},
{
"author": "bvhari",
"title": "ImageProcessing",
"reference": "https://github.com/bvhari/ComfyUI_ImageProcessing",
"files": [
"https://github.com/bvhari/ComfyUI_ImageProcessing"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes to apply various image processing techniques."
},
{
"author": "bvhari",
"title": "LatentToRGB",
"reference": "https://github.com/bvhari/ComfyUI_LatentToRGB",
"files": [
"https://github.com/bvhari/ComfyUI_LatentToRGB"
],
"install_type": "git-clone",
"description": "ComfyUI custom node to convert latent to RGB."
},
{
"author": "bvhari",
"title": "ComfyUI_PerpWeight",
"reference": "https://github.com/bvhari/ComfyUI_PerpWeight",
"files": [
"https://github.com/bvhari/ComfyUI_PerpWeight"
],
"install_type": "git-clone",
"description": "A novel weighting scheme for token vectors from CLIP. Allows a wider range of values for the weight. Inspired by Perp-Neg."
},
{
"author": "ssitu",
"title": "UltimateSDUpscale",
"reference": "https://github.com/ssitu/ComfyUI_UltimateSDUpscale",
"files": [
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for the Ultimate Stable Diffusion Upscale script by Coyote-A."
},
{
"author": "ssitu",
"title": "NestedNodeBuilder",
"reference": "https://github.com/ssitu/ComfyUI_NestedNodeBuilder",
"files": [
"https://github.com/ssitu/ComfyUI_NestedNodeBuilder"
],
"install_type": "git-clone",
"description": "This extension provides the ability to combine multiple nodes into a single node."
},
{
"author": "ssitu",
"title": "Restart Sampling",
"reference": "https://github.com/ssitu/ComfyUI_restart_sampling",
"files": [
"https://github.com/ssitu/ComfyUI_restart_sampling"
],
"install_type": "git-clone",
"description": "Unofficial ComfyUI nodes for restart sampling based on the paper 'Restart Sampling for Improving Generative Processes' ([a/paper](https://arxiv.org/abs/2306.14878), [a/repo](https://github.com/Newbeeer/diffusion_restart_sampling))"
},
{
"author": "ssitu",
"title": "ComfyUI roop",
"reference": "https://github.com/ssitu/ComfyUI_roop",
"files": [
"https://github.com/ssitu/ComfyUI_roop"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for the roop A1111 webui script."
},
{
"author": "ssitu",
"title": "ComfyUI fabric",
"reference": "https://github.com/ssitu/ComfyUI_fabric",
"files": [
"https://github.com/ssitu/ComfyUI_fabric"
],
"install_type": "git-clone",
"description": "ComfyUI nodes based on the paper [a/FABRIC: Personalizing Diffusion Models with Iterative Feedback](https://arxiv.org/abs/2307.10159) (Feedback via Attention-Based Reference Image Conditioning)"
},
{
"author": "space-nuko",
"title": "Disco Diffusion",
"reference": "https://github.com/space-nuko/ComfyUI-Disco-Diffusion",
"files": [
"https://github.com/space-nuko/ComfyUI-Disco-Diffusion"
],
"install_type": "git-clone",
"description": "Modularized version of Disco Diffusion for use with ComfyUI."
},
{
"author": "space-nuko",
"title": "OpenPose Editor",
"reference": "https://github.com/space-nuko/ComfyUI-OpenPose-Editor",
"files": [
"https://github.com/space-nuko/ComfyUI-OpenPose-Editor"
],
"install_type": "git-clone",
"description": "A port of the openpose-editor extension for stable-diffusion-webui. NOTE: Requires [a/this ComfyUI patch](https://github.com/comfyanonymous/ComfyUI/pull/711) to work correctly"
},
{
"author": "space-nuko",
"title": "nui suite",
"reference": "https://github.com/space-nuko/nui-suite",
"files": [
"https://github.com/space-nuko/nui-suite"
],
"install_type": "git-clone",
"description": "NODES: Dynamic Prompts Text Encode, Feeling Lucky Text Encode, Output String"
},
{
"author": "Nourepide",
"title": "Allor Plugin",
"reference": "https://github.com/Nourepide/ComfyUI-Allor",
"files": [
"https://github.com/Nourepide/ComfyUI-Allor"
],
"install_type": "git-clone",
"description": "Allor is a plugin for ComfyUI with an emphasis on transparency and performance.\n[w/NOTE: If you do not disable the default node override feature in the settings, the built-in nodes, namely ImageScale and ImageScaleBy nodes, will be disabled. (ref: [a/Configutation](https://github.com/Nourepide/ComfyUI-Allor#configuration))]"
},
{
"author": "melMass",
"title": "MTB Nodes",
"reference": "https://github.com/melMass/comfy_mtb",
"files": [
"https://github.com/melMass/comfy_mtb"
],
"nodename_pattern": "\\(mtb\\)$",
"install_type": "git-clone",
"description": "NODES: Face Swap, Film Interpolation, Latent Lerp, Int To Number, Bounding Box, Crop, Uncrop, ImageBlur, Denoise, ImageCompare, RGV to HSV, HSV to RGB, Color Correct, Modulo, Deglaze Image, Smart Step, ..."
},
{
"author": "xXAdonesXx",
"title": "NodeGPT",
"reference": "https://github.com/xXAdonesXx/NodeGPT",
"files": [
"https://github.com/xXAdonesXx/NodeGPT"
],
"install_type": "git-clone",
"description": "Implementation of AutoGen inside ComfyUI. This repository is under development, and not everything is functioning correctly yet."
},
{
"author": "Suzie1",
"title": "ComfyUI_Comfyroll_CustomNodes",
"reference": "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes",
"files": [
"https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes"
],
"install_type": "git-clone",
"description": "Custom nodes for SDXL and SD1.5 including Multi-ControlNet, LoRA, Aspect Ratio, Process Switches, and many more nodes. NOTE: Maintainer is changed to Suzie1 from RockOfFire. [w/Using an outdated version has resulted in reported issues with updates not being applied. Trying to reinstall the software is advised.]"
},
{
"author": "bmad4ever",
"title": "ComfyUI-Bmad-DirtyUndoRedo",
"reference": "https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo",
"files": [
"https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo"
],
"install_type": "git-clone",
"description": "ComfyUI extension that adds undo (and redo) functionality."
},
{
"author": "bmad4ever",
"title": "Bmad Nodes",
"reference": "https://github.com/bmad4ever/comfyui_bmad_nodes",
"files": [
"https://github.com/bmad4ever/comfyui_bmad_nodes"
],
"install_type": "git-clone",
"description": "This custom node offers the following functionalities: API support for setting up API requests, computer vision primarily for masking or collages, and general utility to streamline workflow setup or implement essential missing features."
},
{
"author": "bmad4ever",
"title": "comfyui_ab_sampler",
"reference": "https://github.com/bmad4ever/comfyui_ab_samplercustom",
"files": [
"https://github.com/bmad4ever/comfyui_ab_samplercustom"
],
"install_type": "git-clone",
"description": "Experimental sampler node. Sampling alternates between A and B inputs until only one remains, starting with A. B steps run over a 2x2 grid, where 3/4's of the grid are copies of the original input latent. When the optional mask is used, the region outside the defined roi is copied from the original latent at the end of every step."
},
{
"author": "bmad4ever",
"title": "Lists Cartesian Product",
"reference": "https://github.com/bmad4ever/comfyui_lists_cartesian_product",
"files": [
"https://github.com/bmad4ever/comfyui_lists_cartesian_product"
],
"install_type": "git-clone",
"description": "Given a set of lists, the node adjusts them so that when used as input to another node all the possible argument permutations are computed."
},
{
"author": "FizzleDorf",
"title": "FizzNodes",
"reference": "https://github.com/FizzleDorf/ComfyUI_FizzNodes",
"files": [
"https://github.com/FizzleDorf/ComfyUI_FizzNodes"
],
"install_type": "git-clone",
"description": "Scheduled prompts, scheduled float/int values and wave function nodes for animations and utility. compatable with [a/framesync](https://www.framesync.xyz/) and [a/keyframe-string-generator](https://www.chigozie.co.uk/keyframe-string-generator/) for audio synced animations in Comfyui."
},
{
"author": "FizzleDorf",
"title": "ComfyUI-AIT",
"reference": "https://github.com/FizzleDorf/ComfyUI-AIT",
"files": [
"https://github.com/FizzleDorf/ComfyUI-AIT"
],
"install_type": "git-clone",
"description": "A ComfyUI implementation of Facebook Meta's [a/AITemplate](https://github.com/facebookincubator/AITemplate) repo for faster inference using cpp/cuda. This new repo is behind the old version but is a much more stable foundation to keep AIT online. Please be patient as the repo will eventually include the same features as before.\nNOTE: You can find the old AIT extension in the legacy channel."
},
{
"author": "filipemeneses",
"title": "Pixelization",
"reference": "https://github.com/filipemeneses/comfy_pixelization",
"files": [
"https://github.com/filipemeneses/comfy_pixelization"
],
"install_type": "git-clone",
"description": "ComfyUI node that pixelizes images."
},
{
"author": "shiimizu",
"title": "smZNodes",
"reference": "https://github.com/shiimizu/ComfyUI_smZNodes",
"files": [
"https://github.com/shiimizu/ComfyUI_smZNodes"
],
"install_type": "git-clone",
"description": "NODES: CLIP Text Encode++. Achieve identical embeddings from stable-diffusion-webui for ComfyUI."
},
{
"author": "shiimizu",
"title": "Tiled Diffusion & VAE for ComfyUI",
"reference": "https://github.com/shiimizu/ComfyUI-TiledDiffusion",
"files": [
"https://github.com/shiimizu/ComfyUI-TiledDiffusion"
],
"install_type": "git-clone",
"description": "The extension enables large image drawing & upscaling with limited VRAM via the following techniques:\n1.Two SOTA diffusion tiling algorithms: [a/Mixture of Diffusers](https://github.com/albarji/mixture-of-diffusers) and [a/MultiDiffusion](https://github.com/omerbt/MultiDiffusion)\n2.pkuliyi2015's Tiled VAE algorithm."
},
{
"author": "ZaneA",
"title": "ImageReward",
"reference": "https://github.com/ZaneA/ComfyUI-ImageReward",
"files": [
"https://github.com/ZaneA/ComfyUI-ImageReward"
],
"install_type": "git-clone",
"description": "NODES: ImageRewardLoader, ImageRewardScore"
},
{
"author": "SeargeDP",
"title": "SeargeSDXL",
"reference": "https://github.com/SeargeDP/SeargeSDXL",
"files": [
"https://github.com/SeargeDP/SeargeSDXL"
],
"install_type": "git-clone",
"description": "Custom nodes for easier use of SDXL in ComfyUI including an img2img workflow that utilizes both the base and refiner checkpoints."
},
{
"author": "cubiq",
"title": "Simple Math",
"reference": "https://github.com/cubiq/ComfyUI_SimpleMath",
"files": [
"https://github.com/cubiq/ComfyUI_SimpleMath"
],
"install_type": "git-clone",
"description": "custom node for ComfyUI to perform simple math operations"
},
{
"author": "cubiq",
"title": "ComfyUI_IPAdapter_plus",
"reference": "https://github.com/cubiq/ComfyUI_IPAdapter_plus",
"files": [
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
],
"pip": ["insightface"],
"install_type": "git-clone",
"description": "ComfyUI reference implementation for IPAdapter models. The code is mostly taken from the original IPAdapter repository and laksjdjf's implementation, all credit goes to them. I just made the extension closer to ComfyUI philosophy."
},
{
"author": "shockz0rz",
"title": "InterpolateEverything",
"reference": "https://github.com/shockz0rz/ComfyUI_InterpolateEverything",
"files": [
"https://github.com/shockz0rz/ComfyUI_InterpolateEverything"
],
"install_type": "git-clone",
"description": "Nodes: Interpolate Poses, Interpolate Lineart, ... Custom nodes for interpolating between, well, everything in the Stable Diffusion ComfyUI."
},
{
"author": "shockz0rz",
"title": "comfy-easy-grids",
"reference": "https://github.com/shockz0rz/comfy-easy-grids",
"files": [
"https://github.com/shockz0rz/comfy-easy-grids"
],
"install_type": "git-clone",
"description": "A set of custom nodes for creating image grids, sequences, and batches in ComfyUI."
},
{
"author": "yolanother",
"title": "Comfy UI Prompt Agent",
"reference": "https://github.com/yolanother/DTAIComfyPromptAgent",
"files": [
"https://github.com/yolanother/DTAIComfyPromptAgent"
],
"install_type": "git-clone",
"description": "Nodes: Prompt Agent, Prompt Agent (String). This script provides a prompt agent node for the Comfy UI stable diffusion client."
},
{
"author": "yolanother",
"title": "Image to Text Node",
"reference": "https://github.com/yolanother/DTAIImageToTextNode",
"files": [
"https://github.com/yolanother/DTAIImageToTextNode"
],
"install_type": "git-clone",
"description": "Nodes: Image URL to Text, Image to Text."
},
{
"author": "yolanother",
"title": "Comfy UI Online Loaders",
"reference": "https://github.com/yolanother/DTAIComfyLoaders",
"files": [
"https://github.com/yolanother/DTAIComfyLoaders"
],
"install_type": "git-clone",
"description": "Nodes: Submit Image (Parameters), Submit Image. A collection of loaders that use a shared common online data source rather than relying on the files to be present locally."
},
{
"author": "yolanother",
"title": "Comfy AI DoubTech.ai Image Sumission Node",
"reference": "https://github.com/yolanother/DTAIComfyImageSubmit",
"files": [
"https://github.com/yolanother/DTAIComfyImageSubmit"
],
"install_type": "git-clone",
"description": "A ComfyAI submit node to upload images to DoubTech.ai"
},
{
"author": "yolanother",
"title": "Comfy UI QR Codes",
"reference": "https://github.com/yolanother/DTAIComfyQRCodes",
"files": [
"https://github.com/yolanother/DTAIComfyQRCodes"
],
"install_type": "git-clone",
"description": "This extension introduces QR code nodes for the Comfy UI stable diffusion client. NOTE: ComfyUI qrcode extension required."
},
{
"author": "yolanother",
"title": "Variables for Comfy UI",
"reference": "https://github.com/yolanother/DTAIComfyVariables",
"files": [
"https://github.com/yolanother/DTAIComfyVariables"
],
"install_type": "git-clone",
"description": "Nodes: String, Int, Float, Short String, CLIP Text Encode (With Variables), String Format, Short String Format. This extension introduces quality of life improvements by providing variable nodes and shared global variables."
},
{
"author": "sipherxyz",
"title": "comfyui-art-venture",
"reference": "https://github.com/sipherxyz/comfyui-art-venture",
"files": [
"https://github.com/sipherxyz/comfyui-art-venture"
],
"install_type": "git-clone",
"description": "Nodes: ImagesConcat, LoadImageFromUrl, AV_UploadImage"
},
{
"author": "SOELexicon",
"title": "LexMSDBNodes",
"reference": "https://github.com/SOELexicon/ComfyUI-LexMSDBNodes",