forked from ltdrdata/ComfyUI-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-node-list.json
17843 lines (17800 loc) · 843 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",
"id": "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",
"id": "impact",
"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.",
"preemptions":["SAMLoader"]
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI Inspire Pack",
"id": "inspire",
"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",
"id": "comfy-exp",
"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."
},
{
"author": "comfyanonymous",
"title": "TensorRT Node for ComfyUI",
"id": "tensorrt",
"reference": "https://github.com/comfyanonymous/ComfyUI_TensorRT",
"files": [
"https://github.com/comfyanonymous/ComfyUI_TensorRT"
],
"install_type": "git-clone",
"description": "This node enables the best performance on NVIDIA RTX™ Graphics Cards (GPUs) for Stable Diffusion by leveraging NVIDIA TensorRT."
},
{
"author": "Stability-AI",
"title": "Stability API nodes for ComfyUI",
"id": "sai-api",
"reference": "https://github.com/Stability-AI/ComfyUI-SAI_API",
"files": [
"https://github.com/Stability-AI/ComfyUI-SAI_API"
],
"install_type": "git-clone",
"description": "Nodes:Stability SD3, Stability Outpainting, Stability Search and Replace, Stability Image Core, Stability Inpainting, Stability Remove Background, Stability Creative Upscale.\nAdd API key to environment variable 'SAI_API_KEY'\nAlternatively you can write your API key to file 'sai_platform_key.txt'\nYou can also use and/or override the above by entering your API key in the 'api_key_override' field of each node."
},
{
"author": "Stability-AI",
"title": "stability-ComfyUI-nodes",
"id": "sai-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",
"id": "comfyui_controlnet_aux",
"reference": "https://github.com/Fannovel16/comfyui_controlnet_aux",
"files": [
"https://github.com/Fannovel16/comfyui_controlnet_aux"
],
"preemptions":[
"AIO_Preprocessor",
"AnimalPosePreprocessor",
"AnimeFace_SemSegPreprocessor",
"AnimeLineArtPreprocessor",
"BAE-NormalMapPreprocessor",
"BinaryPreprocessor",
"CannyEdgePreprocessor",
"ColorPreprocessor",
"DSINE-NormalMapPreprocessor",
"DWPreprocessor",
"DensePosePreprocessor",
"DepthAnythingPreprocessor",
"DiffusionEdge_Preprocessor",
"FacialPartColoringFromPoseKps",
"FakeScribblePreprocessor",
"HEDPreprocessor",
"HintImageEnchance",
"ImageGenResolutionFromImage",
"ImageGenResolutionFromLatent",
"ImageIntensityDetector",
"ImageLuminanceDetector",
"InpaintPreprocessor",
"LeReS-DepthMapPreprocessor",
"LineArtPreprocessor",
"LineartStandardPreprocessor",
"M-LSDPreprocessor",
"Manga2Anime_LineArt_Preprocessor",
"MaskOptFlow",
"MediaPipe-FaceMeshPreprocessor",
"MeshGraphormer-DepthMapPreprocessor",
"MiDaS-DepthMapPreprocessor",
"MiDaS-NormalMapPreprocessor",
"OneFormer-ADE20K-SemSegPreprocessor",
"OneFormer-COCO-SemSegPreprocessor",
"OpenposePreprocessor",
"PiDiNetPreprocessor",
"PixelPerfectResolution",
"SAMPreprocessor",
"SavePoseKpsAsJsonFile",
"ScribblePreprocessor",
"Scribble_XDoG_Preprocessor",
"SemSegPreprocessor",
"ShufflePreprocessor",
"TEEDPreprocessor",
"TilePreprocessor",
"UniFormer-SemSegPreprocessor",
"Unimatch_OptFlowPreprocessor",
"Zoe-DepthMapPreprocessor",
"Zoe_DepthAnythingPreprocessor"],
"install_type": "git-clone",
"description": "Plug-and-play ComfyUI node sets for making ControlNet hint images."
},
{
"author": "Fannovel16",
"title": "ComfyUI Frame Interpolation",
"id": "frame-interpolation",
"reference": "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation",
"files": [
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
],
"install_type": "git-clone",
"description": "A custom node suite for Video Frame Interpolation in ComfyUI"
},
{
"author": "Fannovel16",
"title": "ComfyUI MotionDiff",
"id": "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",
"id": "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": "Fannovel16",
"title": "ComfyUI-MagickWand",
"id": "magicwand",
"reference": "https://github.com/Fannovel16/ComfyUI-MagickWand",
"files": [
"https://github.com/Fannovel16/ComfyUI-MagickWand"
],
"install_type": "git-clone",
"description": "Proper implementation of ImageMagick - the famous software suite for editing and manipulating digital images to ComfyUI using [a/wandpy](https://github.com/emcconville/wand).\nNOTE: You need to install ImageMagick, manually."
},
{
"author": "time-river",
"title": "CLIPSeg",
"id": "clipseg",
"reference": "https://github.com/time-river/ComfyUI-CLIPSeg",
"files": [
"https://raw.githubusercontent.com/time-river/ComfyUI-CLIPSeg/main/custom_nodes/clipseg.py"
],
"install_type": "copy",
"description": "The CLIPSeg node generates a binary mask for a given input image and text prompt.\nNOTE:This custom node is a forked custom node with hotfixes applied from the [a/original repository](https://github.com/biegert/ComfyUI-CLIPSeg), which is no longer maintained."
},
{
"author": "BlenderNeko",
"title": "ComfyUI Cutoff",
"id": "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",
"id": "adv-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",
"id": "comfy-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",
"id": "tiled-sampling",
"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]",
"id": "seecoder",
"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+",
"id": "eff-nodes",
"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": "Jags_VectorMagic",
"id": "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": "Jags_Audiotools",
"id": "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",
"id": "derfuu",
"reference": "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes",
"nodename_pattern": "^DF_",
"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",
"id": "blip",
"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": "WASasquatch",
"title": "WAS Node Suite",
"id": "was",
"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",
"id": "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",
"id": "ppf",
"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",
"id": "power-noise",
"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",
"id": "freeu-adv",
"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": "WAS_Extras",
"id": "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": "SaltAI",
"title": "SaltAI-Open-Resources",
"id": "saltai-open-resource",
"reference": "https://github.com/get-salt-AI/SaltAI",
"pip": ["numba"],
"files": [
"https://github.com/get-salt-AI/SaltAI"
],
"install_type": "git-clone",
"description": "This repository is a collection of open-source nodes and workflows for ComfyUI, a dev tool that allows users to create node-based workflows often powered by various AI models to do pretty much anything.\nOur mission is to seamlessly connect people and organizations with the world’s foremost AI innovations, anywhere, anytime. Our vision is to foster a flourishing AI ecosystem where the world’s best developers can build and share their work, thereby redefining how software is made, pushing innovation forward, and ensuring as many people as possible can benefit from the positive promise of AI technologies.\nWe believe that ComfyUI is a powerful tool that can help us achieve our mission and vision, by enabling anyone to explore the possibilities and limitations of AI models in a visual and interactive way, without coding if desired.\nWe hope that by sharing our nodes and workflows, we can inspire and empower more people to create amazing AI-powered content with ComfyUI."
},
{
"author": "SaltAI",
"title": "SaltAI_Language_Toolkit",
"id": "saltai_language_toolkit",
"reference": "https://github.com/get-salt-AI/SaltAI_Language_Toolkit",
"files": [
"https://github.com/get-salt-AI/SaltAI_Language_Toolkit"
],
"install_type": "git-clone",
"description": "The project integrates the Retrieval Augmented Generation (RAG) tool [a/Llama-Index](https://www.llamaindex.ai/), [a/Microsoft's AutoGen](https://microsoft.github.io/autogen/), and [a/LlaVA-Next](https://github.com/LLaVA-VL/LLaVA-NeXT) with ComfyUI's adaptable node interface, enhancing the functionality and user experience of the platform."
},
{
"author": "omar92",
"title": "Quality of life Suit:V2",
"id": "qol",
"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",
"id": "simle-wildcard",
"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",
"id": "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",
"id": "post-processing",
"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",
"id": "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",
"id": "vextra",
"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",
"id": "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",
"id": "masquerade",
"reference": "https://github.com/BadCafeCode/masquerade-nodes-comfyui",
"files": [
"https://github.com/BadCafeCode/masquerade-nodes-comfyui"
],
"install_type": "git-clone",
"description": "This is a low-dependency node pack primarily dealing with masks. The author recommends using Impact-Pack instead (unless you specifically have trouble installing dependencies)."
},
{
"author": "Jcd1230",
"title": "Rembg Background Removal Node for ComfyUI",
"id": "rembg",
"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",
"id": "mbw",
"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",
"id": "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",
"id": "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",
"id": "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",
"id": "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-Latent-Upscaler",
"id": "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]",
"id": "dit",
"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",
"id": "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",
"id": "extramodels",
"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": "city96",
"title": "ComfyUI-GGUF",
"id": "gguf",
"reference": "https://github.com/city96/ComfyUI-GGUF",
"files": [
"https://github.com/city96/ComfyUI-GGUF"
],
"install_type": "git-clone",
"description": "GGUF Quantization support for native ComfyUI models\nThis is currently very much WIP. These custom nodes provide support for model files stored in the GGUF format popularized by llama.cpp.\nWhile quantization wasn't feasible for regular UNET models (conv2d), transformer/DiT models such as flux seem less affected by quantization. This allows running it in much lower bits per weight variable bitrate quants on low-end GPUs."
},
{
"author": "SLAPaper",
"title": "ComfyUI-Image-Selector",
"id": "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": "SLAPaper",
"title": "StableDiffusion-dpmpp_2m_alt-Sampler",
"id": "dpmpp2m-alt",
"reference": "https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler",
"files": [
"https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler"
],
"install_type": "git-clone",
"description": "the sampler introduced by [a/hallatore](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/8457)\ncode extracted from [a/smZNodes](https://github.com/shiimizu/ComfyUI_smZNodes).[w/NOTE:ComfyUI-dpmpp_2m_alt-Sampler is renamed to StableDiffusion-dpmpp_2m_alt-Sampler. Please reinstall.]"
},
{
"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 ExLlamaV2 Nodes",
"id": "exllamav2",
"reference": "https://github.com/Zuellni/ComfyUI-ExLlama-Nodes",
"files": [
"https://github.com/Zuellni/ComfyUI-ExLlama-Nodes"
],
"install_type": "git-clone",
"description": "A simple local text generator for ComfyUI utilizing [a/ExLlamaV2](https://github.com/turboderp/exllamav2).\n[w/NOTE:Manual package installation is required.]"
},
{
"author": "Zuellni",
"title": "ComfyUI PickScore Nodes",
"id": "pickscore",
"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",
"id": "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, HexToHueNode, ColorsCorrectNode, IDENode."
},
{
"author": "pythongosssss",
"title": "ComfyUI WD 1.4 Tagger",
"id": "wd14",
"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",
"id": "pygos-script",
"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",
"id": "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.\nAesthetic score for ComfyUI"
},
{
"author": "TinyTerra",
"title": "ComfyUI_tinyterraNodes",
"id": "ttn",
"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, extensive XYZ plotting, fullscreen image viewer based on node history, dynamic widgets, interface customization, and more."
},
{
"author": "Jordach",
"title": "comfy-plasma",
"id": "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",
"id": "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": "ComfyUI_PerpWeight",
"id": "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": "bvhari",
"title": "ComfyUI_SUNoise",
"id": "sunoise",
"reference": "https://github.com/bvhari/ComfyUI_SUNoise",
"files": [
"https://github.com/bvhari/ComfyUI_SUNoise"
],
"install_type": "git-clone",
"description": "Scaled Uniform Noise for Ancestral and Stochastic samplers"
},
{
"author": "bvhari",
"title": "ComfyUI_PerpCFG",
"reference": "https://github.com/bvhari/ComfyUI_PerpCFG",
"files": [
"https://github.com/bvhari/ComfyUI_PerpCFG"
],
"install_type": "git-clone",
"description": "Perpendicular CFG for reducing oversaturation issues with high guidance scale values."
},
{
"author": "ssitu",
"title": "UltimateSDUpscale",
"id": "usdu",
"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": "Restart Sampling",
"id": "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",
"id": "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",
"id": "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",
"id": "disco",
"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",
"id": "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",
"id": "nui",
"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",
"id": "allor",
"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."
},
{
"author": "melMass",
"title": "MTB Nodes",
"id": "mtb",
"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",
"id": "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": "ciri",
"title": "ComfyUI Model Downloader",
"id": "model-downloader",
"reference": "https://github.com/ciri/comfyui-model-downloader",
"files": [
"https://github.com/ciri/comfyui-model-downloader"
],
"install_type": "git-clone",
"description": "This node allows downloading models directly within ComfyUI for easier use and integration."
},
{
"author": "Suzie1",
"title": "Comfyroll Studio",
"id": "comfyroll",
"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": "comfyui_ab_sampler",
"id": "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": "bmad4ever",
"title": "comfyui_wfc_like",
"id": "wfc",
"reference": "https://github.com/bmad4ever/comfyui_wfc_like",
"files": [
"https://github.com/bmad4ever/comfyui_wfc_like"
],
"install_type": "git-clone",
"description": "An 'opinionated' Wave Function Collapse implementation with a set of nodes for comfyui"
},
{
"author": "bmad4ever",
"title": "comfyui_quilting",
"id": "quilting",
"reference": "https://github.com/bmad4ever/comfyui_quilting",
"files": [
"https://github.com/bmad4ever/comfyui_quilting"
],
"install_type": "git-clone",
"description": "image and latent quilting nodes for comfyui"
},
{
"author": "FizzleDorf",
"title": "FizzNodes",
"id": "fizz",
"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",
"id": "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",