-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustom-node-list.json
6741 lines (6741 loc) · 404 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
[
{
"author": "Dr.Lt.Data",
"description": "ComfyUI-Manager itself is also a custom node.",
"files": ["https://github.com/ltdrdata/ComfyUI-Manager"],
"install_type": "git-clone",
"reference": "https://github.com/ltdrdata/ComfyUI-Manager",
"title": "ComfyUI-Manager",
"zh_description": "ComfyUI-Manager本身也是一个自定义节点。"
},
{
"author": "Dr.Lt.Data",
"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.]",
"files": ["https://github.com/ltdrdata/ComfyUI-Impact-Pack"],
"install_type": "git-clone",
"pip": ["ultralytics"],
"reference": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
"title": "ComfyUI Impact Pack",
"zh_description": "此扩展提供了各种检测器节点和细节器节点,允许您配置自动增强面部细节的工作流程。并提供迭代升标器。\n[w/注意:'Segs & Mask'已更名为'ImpactSegsAndMask'。“请用新名称替换节点。”"
},
{
"author": "Dr.Lt.Data",
"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.",
"files": ["https://github.com/ltdrdata/ComfyUI-Inspire-Pack"],
"install_type": "git-clone",
"nodename_pattern": "Inspire$",
"reference": "https://github.com/ltdrdata/ComfyUI-Inspire-Pack",
"title": "ComfyUI Inspire Pack",
"zh_description": "此扩展提供了各种节点来支持Lora Block Weight和Impact Pack。提供了许多易于应用的区域特性和应用程序的变体种子。"
},
{
"author": "comfyanonymous",
"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.]",
"files": ["https://github.com/comfyanonymous/ComfyUI_experiments"],
"install_type": "git-clone",
"reference": "https://github.com/comfyanonymous/ComfyUI_experiments",
"title": "ComfyUI_experiments",
"zh_description": "节点:Model SamplerTonemap NoiseTest、Tonemap NoiseWith RescaleCFL、ReferenceOnlySimple、RescaleClassifierFreeGuidanceTest、Model MergeBlockNumber、Model MergeSDXL、Model MergeSDXL Transformers、Model MergeSDXL详细Transformers。[w/注:这是以前独立的自定义节点的合并。请删除之前安装在custom_nodes中的sampler_tonemap.py、sampler_rescalecfg.py、advancement_model_merge.py、sdxl_model_merge.py和reference_only.py文件。]"
},
{
"author": "Stability-AI",
"description": "Nodes: ColorBlend, ControlLoraSave, GetImageSize. NOTE: Control-LoRA recolor example uses these nodes.",
"files": ["https://github.com/Stability-AI/stability-ComfyUI-nodes"],
"install_type": "git-clone",
"reference": "https://github.com/Stability-AI/stability-ComfyUI-nodes",
"title": "stability-ComfyUI-nodes",
"zh_description": "节点:ColorBlend、ControlLoraSave、GetImageSize。注意:Control-LoRA重新着色示例使用这些节点。"
},
{
"author": "Fannovel16",
"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.]",
"files": ["https://github.com/Fannovel16/comfyui_controlnet_aux"],
"install_type": "git-clone",
"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"
],
"reference": "https://github.com/Fannovel16/comfyui_controlnet_aux",
"title": "ComfyUI's ControlNet Auxiliary Preprocessors",
"zh_description": "这是一个基于ControlNet辅助模型的comfyui_controlnet_preprocessors的返工。🤗我觉得旧的回购不足以维持。所有旧的工作流将仍然与这个仓库工作,但版本选项不会做任何事情。几乎所有的v1预处理器都被v1.1所取代,除了那些没有出现在v1.1中。[注:请不要在安装过程中使用controlnet预处理器,因为这可能会导致冲突并妨碍正确识别。]"
},
{
"author": "Fannovel16",
"description": "Nodes: KSampler Gradually Adding More Denoise (efficient)",
"files": ["https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"],
"install_type": "git-clone",
"reference": "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation",
"title": "ComfyUI Frame Interpolation",
"zh_description": "节点:KSampler逐渐增加降噪(高效)"
},
{
"author": "Fannovel16",
"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.",
"files": ["https://github.com/Fannovel16/ComfyUI-Loopchain"],
"install_type": "git-clone",
"reference": "https://github.com/Fannovel16/ComfyUI-Loopchain",
"title": "ComfyUI Loopchain",
"zh_description": "在ComfyUI中对动画有用的节点集合。这个扩展的主要焦点是实现一个称为loopchain的机制。在这种情况下,循环链是在工作流中仅重复执行的节点链。如果节点链包含来自此扩展的循环节点,则它将成为循环链。"
},
{
"author": "Fannovel16",
"description": "Implementation of MDM, MotionDiffuse and ReMoDiffuse into ComfyUI.",
"files": ["https://github.com/Fannovel16/ComfyUI-MotionDiff"],
"install_type": "git-clone",
"reference": "https://github.com/Fannovel16/ComfyUI-MotionDiff",
"title": "ComfyUI MotionDiff",
"zh_description": "在ComfyUI中实现MDM、MotionDiffuse和ReMoDiffuse。"
},
{
"author": "Fannovel16",
"description": "A minimalistic implementation of [a/Robust Video Matting (RVM)](https://github.com/PeterL1n/RobustVideoMatting/) in ComfyUI",
"files": ["https://github.com/Fannovel16/ComfyUI-Video-Matting"],
"install_type": "git-clone",
"reference": "https://github.com/Fannovel16/ComfyUI-Video-Matting",
"title": "ComfyUI-Video-Matting",
"zh_description": "[a/Robust Video Matting(RVM)](https://github.com/PeterL1n/RobustVideoMatting/)在ComfyUI中的最小实现"
},
{
"author": "biegert",
"description": "The CLIPSeg node generates a binary mask for a given input image and text prompt.",
"files": [
"https://github.com/biegert/ComfyUI-CLIPSeg/raw/main/custom_nodes/clipseg.py"
],
"install_type": "copy",
"reference": "https://github.com/biegert/ComfyUI-CLIPSeg",
"title": "CLIPSeg",
"zh_description": "CLIPSeg节点为给定的输入图像和文本提示符生成二进制掩码。"
},
{
"author": "BlenderNeko",
"description": "These custom nodes provides features that allow for better control over the effects of the text prompt.",
"files": ["https://github.com/BlenderNeko/ComfyUI_Cutoff"],
"install_type": "git-clone",
"reference": "https://github.com/BlenderNeko/ComfyUI_Cutoff",
"title": "ComfyUI Cutoff",
"zh_description": "这些自定义节点提供的特性允许更好地控制文本提示的效果。"
},
{
"author": "BlenderNeko",
"description": "Advanced CLIP Text Encode (if you need A1111 like prompt. you need this. But Cutoff node includes this feature, already.)",
"files": ["https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb"],
"install_type": "git-clone",
"reference": "https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb",
"title": "Advanced CLIP Text Encode",
"zh_description": "高级CLIP文本编码(如果您需要A1111类似提示符。你需要这个但Cutoff节点已经包含了这个功能。)"
},
{
"author": "BlenderNeko",
"description": "This extension contains 6 nodes for ComfyUI that allows for more control and flexibility over the noise.",
"files": ["https://github.com/BlenderNeko/ComfyUI_Noise"],
"install_type": "git-clone",
"reference": "https://github.com/BlenderNeko/ComfyUI_Noise",
"title": "ComfyUI Noise",
"zh_description": "该扩展包含6个ComfyUI节点,允许对噪声进行更多的控制和灵活性。"
},
{
"author": "BlenderNeko",
"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.",
"files": ["https://github.com/BlenderNeko/ComfyUI_TiledKSampler"],
"install_type": "git-clone",
"reference": "https://github.com/BlenderNeko/ComfyUI_TiledKSampler",
"title": "Tiled sampling for ComfyUI",
"zh_description": "此扩展包含一个ComfyUI的平铺采样器。它允许通过将较大的图像分割成较小的瓦片并对其进行降噪来对这些图像进行降噪。它试图最小化任何接缝显示在最终结果中,通过逐步去噪所有瓷砖的时间和随机化瓷砖的位置为每一步。"
},
{
"author": "BlenderNeko",
"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**)",
"files": ["https://github.com/BlenderNeko/ComfyUI_SeeCoder"],
"install_type": "git-clone",
"reference": "https://github.com/BlenderNeko/ComfyUI_SeeCoder",
"title": "SeeCoder [WIP]",
"zh_description": "它提供了从图像输入生成CLIP的能力,不像unCLIP,它适用于所有模型。(To使用此扩展,您需要从 ** 安装模型 ** 下载所需的模型文件)"
},
{
"author": "jags111",
"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.]",
"files": ["https://github.com/jags111/efficiency-nodes-comfyui"],
"install_type": "git-clone",
"reference": "https://github.com/jags111/efficiency-nodes-comfyui",
"title": "Efficiency Nodes for ComfyUI Version 2.0+",
"zh_description": "ComfyUI自定义节点的集合,帮助简化工作流并减少总节点数。[注:这个节点最初是由LucianoCirino创建的,但是[a/original repository](https://github.com/LucianoCirino/efficiency-nodes-comfyui)不再被维护,并被一个新的维护者分叉。要使用分叉版本,您应该卸载原始版本,并 ** 删除所有 ** 此版本。]"
},
{
"author": "jags111",
"description": "a collection of nodes to explore Vector and image manipulation",
"files": ["https://github.com/jags111/ComfyUI_Jags_VectorMagic"],
"install_type": "git-clone",
"reference": "https://github.com/jags111/ComfyUI_Jags_VectorMagic",
"title": "Jags_VectorMagic",
"zh_description": "用于探索矢量和图像操作的节点集合"
},
{
"author": "jags111",
"description": "This extension offers various audio generation tools",
"files": ["https://github.com/jags111/ComfyUI_Jags_Audiotools"],
"install_type": "git-clone",
"reference": "https://github.com/jags111/ComfyUI_Jags_Audiotools",
"title": "Jags_Audiotools",
"zh_description": "此扩展提供各种音频生成工具"
},
{
"author": "Derfuu",
"description": "Automate calculation depending on image sizes or something you want.",
"files": ["https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes"],
"install_type": "git-clone",
"reference": "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes",
"title": "Derfuu_ComfyUI_ModdedNodes",
"zh_description": "自动计算取决于图像大小或您想要的东西。"
},
{
"apt_dependency": ["rustc", "cargo"],
"author": "paulo-coronado",
"description": "CLIPTextEncodeBLIP: This custom node provides a CLIP Encoder that is capable of receiving images as input.",
"files": ["https://github.com/paulo-coronado/comfy_clip_blip_node"],
"install_type": "git-clone",
"reference": "https://github.com/paulo-coronado/comfy_clip_blip_node",
"title": "comfy_clip_blip_node",
"zh_description": "CLIPTextEncodeBLIP:这个自定义节点提供了一个CLIP编码器,它能够接收图像作为输入。"
},
{
"author": "WASasquatch",
"description": "A node suite for ComfyUI with many new nodes, such as image processing, text processing, and more.",
"files": ["https://github.com/WASasquatch/was-node-suite-comfyui"],
"install_type": "git-clone",
"pip": ["numba"],
"reference": "https://github.com/WASasquatch/was-node-suite-comfyui",
"title": "WAS Node Suite",
"zh_description": "ComfyUI的节点套件,包含许多新节点,如图像处理、文本处理等。"
},
{
"author": "WASasquatch",
"description": "Nodes: ModelMergeByPreset. Merge checkpoint models by preset",
"files": ["https://github.com/WASasquatch/ComfyUI_Preset_Merger"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/ComfyUI_Preset_Merger",
"title": "ComfyUI Preset Merger",
"zh_description": "节点:ModelMergeByPreset。按预设合并检查点模型"
},
{
"author": "WASasquatch",
"description": "Nodes: WAS_PFN_Latent. Perlin Power Fractal Noisey Latents",
"files": ["https://github.com/WASasquatch/PPF_Noise_ComfyUI"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/PPF_Noise_ComfyUI",
"title": "PPF_Noise_ComfyUI",
"zh_description": "节点:WAS_PFN_潜伏。Perlin幂分形噪声潜在"
},
{
"author": "WASasquatch",
"description": "Power Noise Suite contains nodes centered around latent noise input, and diffusion, as well as latent adjustments.",
"files": ["https://github.com/WASasquatch/PowerNoiseSuite"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/PowerNoiseSuite",
"title": "Power Noise Suite for ComfyUI",
"zh_description": "Power Noise Suite包含以潜在噪声输入、扩散以及潜在调整为中心的节点。"
},
{
"author": "WASasquatch",
"description": "This custom node provides advanced settings for FreeU.",
"files": ["https://github.com/WASasquatch/FreeU_Advanced"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/FreeU_Advanced",
"title": "FreeU_Advanced",
"zh_description": "此自定义节点提供FreeU的高级设置。"
},
{
"author": "WASasquatch",
"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.]",
"files": ["https://github.com/WASasquatch/ASTERR"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/ASTERR",
"title": "ASTERR",
"zh_description": "抽象树评估限制运行(ASTERR)是一个Python脚本执行器,适用于ComfyUI。[W/警告:ASTERR从Web界面运行Python代码!强烈建议在封闭环境中运行此操作,因为它可能存在潜在的安全风险。"
},
{
"author": "WASasquatch",
"description": "Nodes:Conditioning (Blend), Inpainting VAE Encode (WAS), VividSharpen. Experimental nodes, or other random extra helper nodes.",
"files": ["https://github.com/WASasquatch/WAS_Extras"],
"install_type": "git-clone",
"reference": "https://github.com/WASasquatch/WAS_Extras",
"title": "WAS_Extras",
"zh_description": "节点:调节(混合)、修补VAE编码(WAS)、VividSharpen。实验节点,或其他随机额外的辅助节点。"
},
{
"author": "SaltAI",
"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.",
"files": ["https://github.com/get-salt-AI/SaltAI"],
"install_type": "git-clone",
"pip": ["numba"],
"reference": "https://github.com/get-salt-AI/SaltAI",
"title": "SaltAI-Open-Resources",
"zh_description": "这个存储库是ComfyUI的开源节点和工作流的集合,ComfyUI是一个开发工具,允许用户创建基于节点的工作流,通常由各种人工智能模型提供支持,以做几乎任何事情。\n我们的使命是随时随地将人们和组织与世界上最重要的人工智能创新无缝连接。我们的愿景是培育一个蓬勃发展的人工智能生态系统,让世界上最优秀的开发人员可以构建和分享他们的工作,从而重新定义软件的制作方式,推动创新向前发展,并确保尽可能多的人可以从人工智能技术的积极承诺中受益。\n我们相信ComfyUI是一个强大的工具,可以帮助我们实现我们的使命和愿景,让任何人都能够以可视化和交互的方式探索人工智能模型的可能性和局限性,而无需进行编码。\n我们希望通过共享我们的节点和工作流程,我们可以激励和授权更多的人使用ComfyUI创建令人惊叹的人工智能内容。"
},
{
"author": "omar92",
"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.",
"files": ["https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92"],
"install_type": "git-clone",
"reference": "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92",
"title": "Quality of life Suit:V2",
"zh_description": "openAI suite、String suite、Latent Tools、Image Tools:这些自定义节点为图像和字符串处理、潜在处理提供了扩展功能,以及与ChatGPT/DallE-2等模型接口的能力。\n注意:目前,该扩展不支持新的OpenAI API,导致兼容性问题。"
},
{
"author": "lilly1987",
"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.",
"files": ["https://github.com/lilly1987/ComfyUI_node_Lilly"],
"install_type": "git-clone",
"reference": "https://github.com/lilly1987/ComfyUI_node_Lilly",
"title": "simple wildcard for ComfyUI",
"zh_description": "这些自定义节点提供了一种功能,可以通过提示符中的通配符插入任意输入。此外,该工具还提供了有助于简化工作流的功能,例如VAELoaderDecoder和SimplerSample。"
},
{
"author": "sylym",
"description": "A node suite for ComfyUI that allows you to load image sequence and generate new image sequence with different styles or content.",
"files": ["https://github.com/sylym/comfy_vid2vid"],
"install_type": "git-clone",
"reference": "https://github.com/sylym/comfy_vid2vid",
"title": "Vid2vid",
"zh_description": "ComfyUI的一个节点套件,允许您加载图像序列并生成具有不同样式或内容的新图像序列。"
},
{
"author": "EllangoK",
"description": "A collection of post processing nodes for ComfyUI, simply download this repo and drag.",
"files": ["https://github.com/EllangoK/ComfyUI-post-processing-nodes"],
"install_type": "git-clone",
"reference": "https://github.com/EllangoK/ComfyUI-post-processing-nodes",
"title": "ComfyUI-post-processing-nodes",
"zh_description": "ComfyUI的后处理节点的集合,只需下载该repo并拖动即可。"
},
{
"author": "LEv145",
"description": "This tool provides a viewer node that allows for checking multiple outputs in a grid, similar to the X/Y Plot extension.",
"files": ["https://github.com/LEv145/images-grid-comfy-plugin"],
"install_type": "git-clone",
"reference": "https://github.com/LEv145/images-grid-comfy-plugin",
"title": "ImagesGrid",
"zh_description": "此工具提供了一个查看器节点,允许检查网格中的多个输出,类似于X/Y Plot扩展。"
},
{
"author": "diontimmer",
"description": "Nodes: Pixel Sort, Swap Color Mode, Solid Color, Glitch This, Add Text To Image, Play Sound, Prettify Prompt, Generate Noise, Flatten Colors",
"files": ["https://github.com/diontimmer/ComfyUI-Vextra-Nodes"],
"install_type": "git-clone",
"reference": "https://github.com/diontimmer/ComfyUI-Vextra-Nodes",
"title": "ComfyUI-Vextra-Nodes",
"zh_description": "节点:像素排序,交换颜色模式,纯色,毛刺此,添加文本到图像,播放声音,美化提示,生成噪波,展平颜色"
},
{
"author": "CYBERLOOM-INC",
"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.",
"files": ["https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr"],
"install_type": "git-clone",
"reference": "https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr",
"title": "ComfyUI-nodes-hnmr",
"zh_description": "为潜在、采样、模型、加载器、图像、文本提供各种自定义节点。这是hnmr 293的原始[a/ComfyUI-nodes-hnmr](https://github.com/hnmr293/ComfyUI-nodes-hnmr)的固定版本。"
},
{
"author": "BadCafeCode",
"description": "This is a node pack for ComfyUI, primarily dealing with masks.",
"files": ["https://github.com/BadCafeCode/masquerade-nodes-comfyui"],
"install_type": "git-clone",
"reference": "https://github.com/BadCafeCode/masquerade-nodes-comfyui",
"title": "Masquerade Nodes",
"zh_description": "这是一个ComfyUI的节点包,主要处理掩码。"
},
{
"author": "guoyk93",
"description": "Nodes: YKImagePadForOutpaint, YKMaskToImage",
"files": ["https://github.com/guoyk93/yk-node-suite-comfyui"],
"install_type": "git-clone",
"reference": "https://github.com/guoyk93/yk-node-suite-comfyui",
"title": "y.k.'s ComfyUI node suite",
"zh_description": "节点:YKImagePadForOutpaint,YKMaskToImage"
},
{
"author": "Jcd1230",
"description": "Nodes: Image Remove Background (rembg)",
"files": ["https://github.com/Jcd1230/rembg-comfyui-node"],
"install_type": "git-clone",
"reference": "https://github.com/Jcd1230/rembg-comfyui-node",
"title": "Rembg Background Removal Node for ComfyUI",
"zh_description": "节点:图像删除背景(rembg)"
},
{
"author": "YinBailiang",
"description": "Nodes: MergeBlockWeighted",
"files": ["https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI"],
"install_type": "git-clone",
"reference": "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI",
"title": "MergeBlockWeighted_fo_ComfyUI",
"zh_description": "节点:MergeBlockWeighted"
},
{
"author": "trojblue",
"description": "Nodes: image_layering, color_correction, model_router",
"files": ["https://github.com/trojblue/trNodes"],
"install_type": "git-clone",
"reference": "https://github.com/trojblue/trNodes",
"title": "trNodes",
"zh_description": "节点:image_layering,color_correction,model_router"
},
{
"author": "szhublox",
"description": "Auto-MBW for ComfyUI loosely based on sdweb-auto-MBW. Nodes: auto merge block weighted",
"files": ["https://github.com/szhublox/ambw_comfyui"],
"install_type": "git-clone",
"reference": "https://github.com/szhublox/ambw_comfyui",
"title": "Auto-MBW",
"zh_description": "ComfyUI的Auto-MBW松散地基于sdweb-auto-MBW。节点:自动合并块加权"
},
{
"author": "city96",
"description": "Run ComfyUI workflows on multiple local GPUs/networked machines. Nodes: Remote images, Local Remote control",
"files": ["https://github.com/city96/ComfyUI_NetDist"],
"install_type": "git-clone",
"reference": "https://github.com/city96/ComfyUI_NetDist",
"title": "ComfyUI_NetDist",
"zh_description": "在多个本地GPU/联网机器上运行ComfyUI工作流。节点:远程映像,本地远程控制"
},
{
"author": "city96",
"description": "Custom node to convert the lantents between SDXL and SD v1.5 directly without the VAE decoding/encoding step.",
"files": ["https://github.com/city96/SD-Latent-Interposer"],
"install_type": "git-clone",
"reference": "https://github.com/city96/SD-Latent-Interposer",
"title": "Latent-Interposer",
"zh_description": "自定义节点,直接在SDXL和SD v1.5之间转换lantent,而无需VAE解码/编码步骤。"
},
{
"author": "city96",
"description": "Nodes: LatentGaussianNoise, MathEncode. An experimental custom node that generates latent noise directly by utilizing the linear characteristics of the latent space.",
"files": ["https://github.com/city96/SD-Advanced-Noise"],
"install_type": "git-clone",
"reference": "https://github.com/city96/SD-Advanced-Noise",
"title": "SD-Advanced-Noise",
"zh_description": "节点:LatentGaussianNoise,MathEncode。一个实验性的自定义节点,利用潜在空间的线性特性直接产生潜在噪声。"
},
{
"author": "city96",
"description": "Upscaling stable diffusion latents using a small neural network.",
"files": ["https://github.com/city96/SD-Latent-Upscaler"],
"install_type": "git-clone",
"pip": ["huggingface-hub"],
"reference": "https://github.com/city96/SD-Latent-Upscaler",
"title": "SD-Latent-Upscaler",
"zh_description": "使用小型神经网络扩大稳定扩散潜势。"
},
{
"author": "city96",
"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.]",
"files": ["https://github.com/city96/ComfyUI_DiT"],
"install_type": "git-clone",
"pip": ["huggingface-hub"],
"reference": "https://github.com/city96/ComfyUI_DiT",
"title": "ComfyUI_DiT [WIP]",
"zh_description": "[a/DiT(带变压器的可扩展扩散模型)]的测试床(https://github.com/facebookresearch/DiT)。[w/没有一个代码是稳定的,如果出于某种原因你想使用它,请期待破坏性的更改。]"
},
{
"author": "city96",
"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.",
"files": ["https://github.com/city96/ComfyUI_ColorMod"],
"install_type": "git-clone",
"reference": "https://github.com/city96/ComfyUI_ColorMod",
"title": "ComfyUI_ColorMod",
"zh_description": "此扩展目前有两组节点-一组用于编辑图像的对比度/颜色,另一组用于将图像保存为16位PNG文件。"
},
{
"author": "city96",
"description": "This extension aims to add support for various random image diffusion models to ComfyUI.",
"files": ["https://github.com/city96/ComfyUI_ExtraModels"],
"install_type": "git-clone",
"reference": "https://github.com/city96/ComfyUI_ExtraModels",
"title": "Extra Models for ComfyUI",
"zh_description": "此扩展旨在为ComfyUI添加对各种随机图像扩散模型的支持。"
},
{
"author": "Kaharos94",
"description": "Save a picture as Webp file in Comfy + Workflow loading",
"files": ["https://github.com/Kaharos94/ComfyUI-Saveaswebp"],
"install_type": "git-clone",
"reference": "https://github.com/Kaharos94/ComfyUI-Saveaswebp",
"title": "ComfyUI-Saveaswebp",
"zh_description": "将图片保存为Webp文件在Comfy +工作流加载"
},
{
"author": "SLAPaper",
"description": "A custom node for ComfyUI, which can select one or some of images from a batch.",
"files": ["https://github.com/SLAPaper/ComfyUI-Image-Selector"],
"install_type": "git-clone",
"reference": "https://github.com/SLAPaper/ComfyUI-Image-Selector",
"title": "ComfyUI-Image-Selector",
"zh_description": "ComfyUI的自定义节点,可以从批处理中选择一个或一些图像。"
},
{
"author": "SLAPaper",
"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)",
"files": ["https://github.com/SLAPaper/ComfyUI-dpmpp_2m_alt-Sampler"],
"install_type": "git-clone",
"reference": "https://github.com/SLAPaper/ComfyUI-dpmpp_2m_alt-Sampler",
"title": "ComfyUI DPM++ 2M Alt Sampler",
"zh_description": "[a/hallatore](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/8457)引入的采样器\n代码取自[a/smZNodes](https://github.com/shimizu/ComfyUI_smZNodes)"
},
{
"author": "flyingshutter",
"description": "Manipulation nodes for Image, Latent",
"files": ["https://github.com/flyingshutter/As_ComfyUI_CustomNodes"],
"install_type": "git-clone",
"reference": "https://github.com/flyingshutter/As_ComfyUI_CustomNodes",
"title": "As_ComfyUI_CustomNodes",
"zh_description": "图像的操作节点,潜在"
},
{
"author": "Zuellni",
"description": "Nodes: DeepFloyd, Filter, Select, Save, Decode, Encode, Repeat, Noise, Noise",
"files": ["https://github.com/Zuellni/ComfyUI-Custom-Nodes"],
"install_type": "git-clone",
"reference": "https://github.com/Zuellni/ComfyUI-Custom-Nodes",
"title": "Zuellni/ComfyUI-Custom-Nodes",
"zh_description": "节点:DeepFloyd,过滤器,选择,保存,解码,编码,重复,噪声,噪声"
},
{
"author": "Zuellni",
"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)]",
"files": ["https://github.com/Zuellni/ComfyUI-ExLlama"],
"install_type": "git-clone",
"pip": [
"sentencepiece",
"https://github.com/jllllll/exllama/releases/download/0.0.17/exllama-0.0.17+cu118-cp310-cp310-win_amd64.whl"
],
"reference": "https://github.com/Zuellni/ComfyUI-ExLlama",
"title": "ComfyUI-ExLlama",
"zh_description": "节点:ExLama加载器、ExLama生成器。\n用于加载4位GPTQ Llama/2型号。你可以在[a/https://huggingface.co/TheBloke](https://huggingface.co/TheBloke)[w/注意:你需要手动安装适合你系统的pip包。比如如果您的系统是'Python3.10 + Windows + CUDA 11.8',那么您需要安装'exllama-0.0.17+ cu 118-cp 310-cp 310-win_amd64.whl'。可用的软件包文件是[a/here](https://github.com/jllllllama/releases)]"
},
{
"author": "Zuellni",
"description": "A simple local text generator for ComfyUI utilizing [a/ExLlamaV2](https://github.com/turboderp/exllamav2).\n[w/NOTE:Manual package installation is required.]",
"files": ["https://github.com/Zuellni/ComfyUI-ExLlama-Nodes"],
"install_type": "git-clone",
"reference": "https://github.com/Zuellni/ComfyUI-ExLlama-Nodes",
"title": "ComfyUI ExLlamaV2 Nodes",
"zh_description": "一个简单的ComfyUI本地文本生成器,使用[a/ExLlamaV 2](https://github.com/turboderp/exllamav2)。\n[w/注意:需要手动安装包。]"
},
{
"author": "Zuellni",
"description": "Image scoring nodes for ComfyUI using PickScore with a batch of images to predict which ones fit a given prompt the best.",
"files": ["https://github.com/Zuellni/ComfyUI-PickScore-Nodes"],
"install_type": "git-clone",
"reference": "https://github.com/Zuellni/ComfyUI-PickScore-Nodes",
"title": "ComfyUI PickScore Nodes",
"zh_description": "ComfyUI的图像评分节点使用PickScore与一批图像一起预测哪些图像最适合给定提示。"
},
{
"author": "AlekPet",
"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.",
"files": ["https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet"],
"install_type": "git-clone",
"reference": "https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"title": "AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"zh_description": "节点:PoseNode,PainterNode,TranslateText Node,TranslateCLIPTextEncodeNode,DeepTranslatorTextNode,DeepTranslatorCLIPTextEncodeNode,ArgosTranslateTextNode,ArgosTranslateCLIPTextEncodeNode,PreviewTextNode.\n\n注意:由于节点名称定义的动态性质,ComfyUI-Manager无法识别来自此扩展的节点列表。缺少节点和徽章功能不适用于此扩展。"
},
{
"author": "pythongosssss",
"description": "A ComfyUI extension allowing the interrogation of booru tags from images.",
"files": ["https://github.com/pythongosssss/ComfyUI-WD14-Tagger"],
"install_type": "git-clone",
"reference": "https://github.com/pythongosssss/ComfyUI-WD14-Tagger",
"title": "ComfyUI WD 1.4 Tagger",
"zh_description": "一个ComfyUI扩展,允许从图像中查询booru标签。"
},
{
"author": "pythongosssss",
"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",
"files": ["https://github.com/pythongosssss/ComfyUI-Custom-Scripts"],
"install_type": "git-clone",
"reference": "https://github.com/pythongosssss/ComfyUI-Custom-Scripts",
"title": "pythongosssss/ComfyUI-Custom-Scripts",
"zh_description": "这一扩展提供:自动排列图形,工作流SVG,Favicon状态,图像馈送,潜在放大方式,锁定节点和组,Lora子文件夹,预设文本,显示文本,触摸支持,链接渲染模式,锁定,节点删除,快速节点,在菜单上显示图像,显示文本,工作流管理,自定义小部件默认值"
},
{
"author": "strimmlarn",
"description": "Nodes: CalculateAestheticScore, LoadAesteticModel, AesthetlcScoreSorter, ScoreToNumber",
"files": [
"https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score"
],
"install_type": "git-clone",
"js_path": "strimmlarn",
"reference": "https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score",
"title": "ComfyUI_Strimmlarns_aesthetic_score",
"zh_description": "节点:CalculateAesteticScore,LoadAesteticModel,AesteticScoreSorter,ScoreToNumber"
},
{
"author": "tinyterra",
"description": "This extension offers various pipe nodes, fullscreen image viewer based on node history, dynamic widgets, interface customization, and more.",
"files": ["https://github.com/TinyTerra/ComfyUI_tinyterraNodes"],
"install_type": "git-clone",
"nodename_pattern": "^ttN ",
"reference": "https://github.com/tinyterra/ComfyUI_tinyterraNodes",
"title": "tinyterraNodes",
"zh_description": "该扩展提供了各种管道节点、基于节点历史记录的全屏图像查看器、动态小部件、界面定制等。"
},
{
"author": "Jordach",
"description": "Nodes: Plasma Noise, Random Noise, Greyscale Noise, Pink Noise, Brown Noise, Plasma KSampler",
"files": ["https://github.com/Jordach/comfy-plasma"],
"install_type": "git-clone",
"reference": "https://github.com/Jordach/comfy-plasma",
"title": "comfy-plasma",
"zh_description": "节点:等离子体噪声、随机噪声、灰度噪声、粉红噪声、棕色噪声、等离子体KSampler"
},
{
"author": "bvhari",
"description": "ComfyUI custom nodes to apply various image processing techniques.",
"files": ["https://github.com/bvhari/ComfyUI_ImageProcessing"],
"install_type": "git-clone",
"reference": "https://github.com/bvhari/ComfyUI_ImageProcessing",
"title": "ImageProcessing",
"zh_description": "ComfyUI自定义节点应用各种图像处理技术。"
},
{
"author": "bvhari",
"description": "ComfyUI custom node to convert latent to RGB.",
"files": ["https://github.com/bvhari/ComfyUI_LatentToRGB"],
"install_type": "git-clone",
"reference": "https://github.com/bvhari/ComfyUI_LatentToRGB",
"title": "LatentToRGB",
"zh_description": "ComfyUI自定义节点用于将潜在转换为RGB。"
},
{
"author": "bvhari",
"description": "A novel weighting scheme for token vectors from CLIP. Allows a wider range of values for the weight. Inspired by Perp-Neg.",
"files": ["https://github.com/bvhari/ComfyUI_PerpWeight"],
"install_type": "git-clone",
"reference": "https://github.com/bvhari/ComfyUI_PerpWeight",
"title": "ComfyUI_PerpWeight",
"zh_description": "一种新的CLIP令牌向量加权方案。允许更广泛的权重值范围。灵感来自Perp-Negg"
},
{
"author": "bvhari",
"description": "Scaled Uniform Noise for Ancestral and Stochastic samplers",
"files": ["https://github.com/bvhari/ComfyUI_SUNoise"],
"install_type": "git-clone",
"reference": "https://github.com/bvhari/ComfyUI_SUNoise",
"title": "ComfyUI_SUNoise",
"zh_description": "祖先采样器和随机采样器的标度均匀噪声"
},
{
"author": "ssitu",
"description": "ComfyUI nodes for the Ultimate Stable Diffusion Upscale script by Coyote-A.",
"files": ["https://github.com/ssitu/ComfyUI_UltimateSDUpscale"],
"install_type": "git-clone",
"reference": "https://github.com/ssitu/ComfyUI_UltimateSDUpscale",
"title": "UltimateSDUpscale",
"zh_description": "ComfyUI节点用于Coyote-A的终极稳定扩散上限脚本。"
},
{
"author": "ssitu",
"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))",
"files": ["https://github.com/ssitu/ComfyUI_restart_sampling"],
"install_type": "git-clone",
"reference": "https://github.com/ssitu/ComfyUI_restart_sampling",
"title": "Restart Sampling",
"zh_description": "基于论文“Restart Sampling for Improving Generative Processes”([a/paper](https://arxiv.org/abs/2306.14878),[a/repo](https://github.com/Newbeeer/diffusion_restart_sampling))的重启采样的非官方ComfyUI节点"
},
{
"author": "ssitu",
"description": "ComfyUI nodes for the roop A1111 webui script.",
"files": ["https://github.com/ssitu/ComfyUI_roop"],
"install_type": "git-clone",
"reference": "https://github.com/ssitu/ComfyUI_roop",
"title": "ComfyUI roop",
"zh_description": "roop A1111 webui脚本的ComfyUI节点。"
},
{
"author": "ssitu",
"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)",
"files": ["https://github.com/ssitu/ComfyUI_fabric"],
"install_type": "git-clone",
"reference": "https://github.com/ssitu/ComfyUI_fabric",
"title": "ComfyUI fabric",
"zh_description": "ComfyUI节点基于论文[a/FABRIC:个性化扩散模型与迭代反馈](https://arxiv.org/abs/2307.10159)(通过基于注意力的参考图像调节反馈)"
},
{
"author": "space-nuko",
"description": "Modularized version of Disco Diffusion for use with ComfyUI.",
"files": ["https://github.com/space-nuko/ComfyUI-Disco-Diffusion"],
"install_type": "git-clone",
"reference": "https://github.com/space-nuko/ComfyUI-Disco-Diffusion",
"title": "Disco Diffusion",
"zh_description": "模块化版本的Disco Diffusion用于ComfyUI。"
},
{
"author": "space-nuko",
"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",
"files": ["https://github.com/space-nuko/ComfyUI-OpenPose-Editor"],
"install_type": "git-clone",
"reference": "https://github.com/space-nuko/ComfyUI-OpenPose-Editor",
"title": "OpenPose Editor",
"zh_description": "stable-diffusion-webui的openpose-editor扩展的一个端口。注意:需要[a/this ComfyUI补丁](https://github.com/comfyanouss/ComfyUI/pull/711)才能正常工作"
},
{
"author": "space-nuko",
"description": "NODES: Dynamic Prompts Text Encode, Feeling Lucky Text Encode, Output String",
"files": ["https://github.com/space-nuko/nui-suite"],
"install_type": "git-clone",
"reference": "https://github.com/space-nuko/nui-suite",
"title": "nui suite",
"zh_description": "NODES:动态的文本编码,感觉幸运的文本编码,输出字符串"
},
{
"author": "Nourepide",
"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))]",
"files": ["https://github.com/Nourepide/ComfyUI-Allor"],
"install_type": "git-clone",
"reference": "https://github.com/Nourepide/ComfyUI-Allor",
"title": "Allor Plugin",
"zh_description": "Allor是ComfyUI的插件,强调透明度和性能。\n[注:如果您没有禁用设置中的默认节点覆盖功能,则内置节点(即ImageScale和ImageScaleBy节点)将被禁用。(ref:[a/配置](https://github.com/Nourepide/ComfyUI-Allor#configuration))]"
},
{
"author": "melMass",
"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, ...",
"files": ["https://github.com/melMass/comfy_mtb"],
"install_type": "git-clone",
"nodename_pattern": "\\(mtb\\)$",
"reference": "https://github.com/melMass/comfy_mtb",
"title": "MTB Nodes",
"zh_description": "节点:Face Swap,Film Interpolation,潜伏Lerp,Int To Number,Bounding Box,裁剪,Uncrop,ImageBlur,去噪,ImageCompare,RGV to HSV,HSV to RGB,颜色校正,模,去釉图像,智能步骤,."
},
{
"author": "xXAdonesXx",
"description": "Implementation of AutoGen inside ComfyUI. This repository is under development, and not everything is functioning correctly yet.",
"files": ["https://github.com/xXAdonesXx/NodeGPT"],
"install_type": "git-clone",
"reference": "https://github.com/xXAdonesXx/NodeGPT",
"title": "NodeGPT",
"zh_description": "在ComfyUI中实现AutoGen。这个存储库正在开发中,并不是所有的东西都能正常运行。"
},
{
"author": "Suzie1",
"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.]",
"files": ["https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes"],
"install_type": "git-clone",
"reference": "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes",
"title": "Comfyroll Studio",
"zh_description": "SDXL和SD1.5的自定义节点,包括Multi-ControlNet、LoRA、纵横比、过程交换机和更多节点。注意:Maintain从RockOfFire改为Suzie 1。[w/使用过时的版本导致报告的问题,更新未得到应用。建议尝试重新安装软件。]"
},
{
"author": "bmad4ever",
"description": "ComfyUI extension that adds undo (and redo) functionality.",
"files": ["https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo",
"title": "ComfyUI-Bmad-DirtyUndoRedo",
"zh_description": "ComfyUI扩展,添加了撤消(和重做)功能。"
},
{
"author": "bmad4ever",
"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.",
"files": ["https://github.com/bmad4ever/comfyui_bmad_nodes"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/comfyui_bmad_nodes",
"title": "Bmad Nodes",
"zh_description": "此自定义节点提供以下功能:API支持用于设置API请求,计算机视觉主要用于掩蔽或拼贴,以及用于简化工作流设置或实现基本缺失功能的通用实用程序。"
},
{
"author": "bmad4ever",
"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.",
"files": ["https://github.com/bmad4ever/comfyui_ab_samplercustom"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/comfyui_ab_samplercustom",
"title": "comfyui_ab_sampler",
"zh_description": "实验采样器节点。采样在A和B输入之间交替进行,直到只剩下一个,从A开始。B步在2x2网格上运行,其中网格的3/4是原始输入潜伏的副本。当使用可选掩码时,在每一步结束时,定义roi之外的区域将从原始潜在区域复制。"
},
{
"author": "bmad4ever",
"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.",
"files": ["https://github.com/bmad4ever/comfyui_lists_cartesian_product"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/comfyui_lists_cartesian_product",
"title": "Lists Cartesian Product",
"zh_description": "给定一组列表,节点调整它们,以便当用作另一个节点的输入时,计算所有可能的参数排列。"
},
{
"author": "bmad4ever",
"description": "An 'opinionated' Wave Function Collapse implementation with a set of nodes for comfyui",
"files": ["https://github.com/bmad4ever/comfyui_wfc_like"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/comfyui_wfc_like",
"title": "comfyui_wfc_like",
"zh_description": "一个具有comfyui节点集的“固执己见”Wave Function Collapse实现"
},
{
"author": "bmad4ever",
"description": "image and latent quilting nodes for comfyui",
"files": ["https://github.com/bmad4ever/comfyui_quilting"],
"install_type": "git-clone",
"reference": "https://github.com/bmad4ever/comfyui_quilting",
"title": "comfyui_quilting",
"zh_description": "用于Comfyui的图像和潜在绗缝节点"
},
{
"author": "FizzleDorf",
"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.",
"files": ["https://github.com/FizzleDorf/ComfyUI_FizzNodes"],
"install_type": "git-clone",
"reference": "https://github.com/FizzleDorf/ComfyUI_FizzNodes",
"title": "FizzNodes",
"zh_description": "动画和实用程序的预定提示、预定float/int值和wave函数节点。与[a/framesync](https://www.framesync.xyz/)和[a/keyframe-string-generator](https://www.chigozie.co.uk/keyframe-string-generator/)兼容,用于Comfyui中的音频同步动画。"
},
{
"author": "FizzleDorf",
"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.",
"files": ["https://github.com/FizzleDorf/ComfyUI-AIT"],
"install_type": "git-clone",
"reference": "https://github.com/FizzleDorf/ComfyUI-AIT",
"title": "ComfyUI-AIT",
"zh_description": "Facebook Meta [a/AITemplate](https://github.com/facebookincubator/AITemplate)repo的ComfyUI实现,用于使用cpp/cuda更快的推理。这个新的repo落后于旧版本,但是一个更稳定的基础,以保持AIT在线。请耐心等待,因为回购最终将包括与之前相同的功能。\n注意:您可以在传统通道中找到旧的AIT扩展。"
},
{
"author": "filipemeneses",
"description": "ComfyUI node that pixelizes images.",
"files": ["https://github.com/filipemeneses/comfy_pixelization"],
"install_type": "git-clone",
"reference": "https://github.com/filipemeneses/comfy_pixelization",
"title": "Pixelization",
"zh_description": "用于像素化图像的ComfyUI节点。"
},
{
"author": "shiimizu",
"description": "NODES: CLIP Text Encode++. Achieve identical embeddings from stable-diffusion-webui for ComfyUI.",
"files": ["https://github.com/shiimizu/ComfyUI_smZNodes"],
"install_type": "git-clone",
"reference": "https://github.com/shiimizu/ComfyUI_smZNodes",
"title": "smZNodes",
"zh_description": "NODES:CLIP文本编码++.从稳定扩散-webui为ComfyUI实现相同的嵌入。"
},
{
"author": "shiimizu",
"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.",
"files": ["https://github.com/shiimizu/ComfyUI-TiledDiffusion"],
"install_type": "git-clone",
"reference": "https://github.com/shiimizu/ComfyUI-TiledDiffusion",
"title": "Tiled Diffusion & VAE for ComfyUI",
"zh_description": "该扩展通过以下技术,在有限的VRAM下实现大型图像绘制和放大:\n1.两种SOTA扩散平铺算法:[a/Mixture of Diffusers](https://github.com/albarji/mixture-of-diffusers)和[a/MultiDiffusion](https://github.com/omerbt/MultiDiffusion)\n2.pkuliyi2015的Tiled VAE算法。"
},
{
"author": "ZaneA",
"description": "NODES: ImageRewardLoader, ImageRewardScore",
"files": ["https://github.com/ZaneA/ComfyUI-ImageReward"],
"install_type": "git-clone",
"reference": "https://github.com/ZaneA/ComfyUI-ImageReward",
"title": "ImageReward",
"zh_description": "NODES:ImageRewardLOAD,ImageRewardScore"
},
{
"author": "SeargeDP",
"description": "Custom nodes for easier use of SDXL in ComfyUI including an img2img workflow that utilizes both the base and refiner checkpoints.",
"files": ["https://github.com/SeargeDP/SeargeSDXL"],
"install_type": "git-clone",
"reference": "https://github.com/SeargeDP/SeargeSDXL",
"title": "SeargeSDXL",
"zh_description": "自定义节点,以便在ComfyUI中更轻松地使用SDXL,包括一个使用基本检查点和优化检查点的img 2img工作流。"
},
{
"author": "cubiq",
"description": "custom node for ComfyUI to perform simple math operations",
"files": ["https://github.com/cubiq/ComfyUI_SimpleMath"],
"install_type": "git-clone",
"reference": "https://github.com/cubiq/ComfyUI_SimpleMath",
"title": "Simple Math",
"zh_description": "ComfyUI的自定义节点用于执行简单的数学运算"
},
{
"author": "cubiq",
"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.",
"files": ["https://github.com/cubiq/ComfyUI_IPAdapter_plus"],
"install_type": "git-clone",
"pip": ["insightface"],
"reference": "https://github.com/cubiq/ComfyUI_IPAdapter_plus",
"title": "ComfyUI_IPAdapter_plus",
"zh_description": "IPAdapter模型的ComfyUI参考实现。代码大部分来自原始的IPAdapter存储库和laksjdjf的实现,所有的功劳都归于他们。我只是使扩展更接近ComfyUI哲学。"
},
{
"author": "cubiq",
"description": "Native [a/InstantID](https://github.com/InstantID/InstantID) support for ComfyUI.\nThis extension differs from the many already available as it doesn't use diffusers but instead implements InstantID natively and it fully integrates with ComfyUI.\nPlease note this still could be considered beta stage, looking forward to your feedback.",
"files": ["https://github.com/cubiq/ComfyUI_InstantID"],
"install_type": "git-clone",
"reference": "https://github.com/cubiq/ComfyUI_InstantID",
"title": "ComfyUI InstantID (Native Support)",
"zh_description": "本机[a/InstantID](https://github.com/InstantID)支持ComfyUI。\n这个扩展与许多已经可用的扩展不同,因为它不使用扩散器,而是本地实现InstantID,并且它与ComfyUI完全集成。\n请注意,这仍然可以被认为是测试阶段,期待您的反馈。"
},
{
"author": "cubiq",
"description": "This extension uses [a/DLib](http://dlib.net/) to calculate the Euclidean and Cosine distance between two faces.\nNOTE: Install the Shape Predictor, Face Recognition model from the Install models menu.",
"files": ["https://github.com/cubiq/ComfyUI_FaceAnalysis"],
"install_type": "git-clone",
"reference": "https://github.com/cubiq/ComfyUI_FaceAnalysis",
"title": "Face Analysis for ComfyUI",
"zh_description": "这个扩展使用[a/DLib](http://dlib.net/)来计算两个面之间的欧几里得和余弦距离。\n注意:从安装模型菜单中安装形状预测器,面部识别模型。"
},
{
"author": "shockz0rz",
"description": "Nodes: Interpolate Poses, Interpolate Lineart, ... Custom nodes for interpolating between, well, everything in the Stable Diffusion ComfyUI.",
"files": ["https://github.com/shockz0rz/ComfyUI_InterpolateEverything"],
"install_type": "git-clone",
"reference": "https://github.com/shockz0rz/ComfyUI_InterpolateEverything",
"title": "InterpolateEverything",
"zh_description": "节点:插值姿势,插值线性,.自定义节点用于在稳定扩散ComfyUI中的所有内容之间进行插值。"
},
{
"author": "shockz0rz",
"description": "A set of custom nodes for creating image grids, sequences, and batches in ComfyUI.",
"files": ["https://github.com/shockz0rz/comfy-easy-grids"],
"install_type": "git-clone",
"reference": "https://github.com/shockz0rz/comfy-easy-grids",
"title": "comfy-easy-grids",
"zh_description": "用于在ComfyUI中创建图像网格、序列和批处理的一组自定义节点。"
},
{
"author": "yolanother",
"description": "Nodes: Prompt Agent, Prompt Agent (String). This script provides a prompt agent node for the Comfy UI stable diffusion client.",
"files": ["https://github.com/yolanother/DTAIComfyPromptAgent"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIComfyPromptAgent",
"title": "Comfy UI Prompt Agent",
"zh_description": "节点:提示代理,提示代理(字符串)。该脚本为Comfy UI稳定扩散客户端提供了一个提示代理节点。"
},
{
"author": "yolanother",
"description": "Nodes: Image URL to Text, Image to Text.",
"files": ["https://github.com/yolanother/DTAIImageToTextNode"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIImageToTextNode",
"title": "Image to Text Node",
"zh_description": "节点:图像URL到文本,图像到文本。"
},
{
"author": "yolanother",
"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.",
"files": ["https://github.com/yolanother/DTAIComfyLoaders"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIComfyLoaders",
"title": "Comfy UI Online Loaders",
"zh_description": "节点:提交图像(参数),提交图像。一个加载程序的集合,它们使用共享的公共联机数据源,而不是依赖于本地存在的文件。"
},
{
"author": "yolanother",
"description": "A ComfyAI submit node to upload images to DoubTech.ai",
"files": ["https://github.com/yolanother/DTAIComfyImageSubmit"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIComfyImageSubmit",
"title": "Comfy AI DoubTech.ai Image Sumission Node",
"zh_description": "一个ComfyAI提交节点,用于上传图片到DoubTech.ai"
},
{
"author": "yolanother",
"description": "This extension introduces QR code nodes for the Comfy UI stable diffusion client. NOTE: ComfyUI qrcode extension required.",
"files": ["https://github.com/yolanother/DTAIComfyQRCodes"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIComfyQRCodes",
"title": "Comfy UI QR Codes",
"zh_description": "这个扩展为Comfy UI稳定扩散客户端引入了QR码节点。注意:需要ComfyUI qrcode扩展。"
},
{
"author": "yolanother",
"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.",
"files": ["https://github.com/yolanother/DTAIComfyVariables"],
"install_type": "git-clone",
"reference": "https://github.com/yolanother/DTAIComfyVariables",
"title": "Variables for Comfy UI",
"zh_description": "节点:字符串,Int,浮点,短字符串,CLIP文本编码(带变量),字符串格式,短字符串格式。这个扩展通过提供变量节点和共享全局变量来提高生活质量。"
},
{
"author": "sipherxyz",