File size: 73,438 Bytes
96d97a7 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 | {
"custom_nodes": [
{
"author": "Tsubasa109",
"title": "comfyui-manga-panel",
"reference": "https://github.com/Tsubasa109/comfyui_manga_panel",
"files": [
"https://github.com/Tsubasa109/comfyui_manga_panel"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for selecting, generating, and compositing rectangular manga panels"
},
{
"author": "OliverCrosby",
"title": "Universal Seamless Tiles",
"reference": "https://github.com/OliverCrosby/ComfyUI-Universal-Seamless-Tiles",
"files": [
"https://github.com/OliverCrosby/ComfyUI-Universal-Seamless-Tiles"
],
"install_type": "git-clone",
"description": "Model-agnostic seamless / tileable image generation for ComfyUI — works on transformer/DiT models (Flux, Wan/Anima) as well as convolutional models (SD1.5, SDXL)."
},
{
"author": "rikunarita",
"title": "ComfyUI-ModelMergeCosmosPredict-2B-Slerp",
"reference": "https://github.com/rikunarita/ComfyUI-ModelMergeCosmosPredict-2B-Slerp",
"files": [
"https://github.com/rikunarita/ComfyUI-ModelMergeCosmosPredict-2B-Slerp"
],
"install_type": "git-clone",
"description": "Slerp model merging node specifically for Cosmos Predict 2B. Supports layer-wise ratio adjustment."
},
{
"author": "wraith-executioner-year-2",
"title": "comfyui-misc",
"id": "wraith-executioner-year-2.comfyui-misc",
"reference": "https://github.com/wraith-executioner-year-2/comfyui-misc",
"files": [
"https://github.com/wraith-executioner-year-2/comfyui-misc"
],
"install_type": "git-clone",
"description": "A small utility custom nodes."
},
{
"author": "VixDreamer",
"title": "Kontext ControlNet Fix",
"id": "kontext-controlnet-fix",
"reference": "https://github.com/VixDreamer/kontext-controlnet-fix",
"files": [
"https://github.com/VixDreamer/kontext-controlnet-fix"
],
"install_type": "git-clone",
"description": "Runtime patch that fixes the shape-mismatch crash when combining Flux Kontext ReferenceLatent with any ControlNet node. No core files modified. Idempotent — skips if upstream fix (PR #9180) is already present."
},
{
"author": "shootthesound",
"title": "ComfyUI-WorkflowDropZone",
"reference": "https://github.com/shootthesound/ComfyUI-WorkflowDropZone",
"files": [
"https://github.com/shootthesound/ComfyUI-WorkflowDropZone"
],
"install_type": "git-clone",
"description": "A persistent drop zone for loading workflows from images or .json files — a reliable alternative to ComfyUI's built-in drag-and-drop, with crash-recovery snapshots, recents, favorites, paste and append."
},
{
"author": "gregowahoo",
"title": "ComfyUI Workflow Group Navigator",
"reference": "https://github.com/gregowahoo/comfyui-navigator",
"files": [
"https://github.com/gregowahoo/comfyui-navigator"
],
"install_type": "git-clone",
"description": "Floating panel that lists every group in your ComfyUI workflow — jump to any group, toggle on/off via rgthree Fast Groups Muter, reorder via drag-and-drop, configurable keyboard shortcuts. Designed for large multi-stage workflows."
},
{
"author": "Azornes",
"title": "ComfyUI Model Resolver",
"reference": "https://github.com/Azornes/Comfyui-Model-Resolver",
"files": [
"https://github.com/Azornes/Comfyui-Model-Resolver"
],
"install_type": "git-clone",
"description": "Automatically resolves missing models in ComfyUI workflows using intelligent local fuzzy matching, online search, direct downloads, background download tracking, and in-place workflow updates."
},
{
"author": "CovertBannana",
"title": "ComfyUI-ImagePlus",
"reference": "https://github.com/CovertBannana/ComfyUI-ImagePlus",
"files": [
"https://github.com/CovertBannana/ComfyUI-ImagePlus"
],
"install_type": "git-clone",
"description": "Unified nodes pack primarily for Image to Image generation with a toggleable Text to Image option for easy switch back. CivitAI and local image inspection."
},
{
"author": "luminatrix",
"title": "Lumina_NIVR2",
"reference": "https://github.com/Luminatrixx/NIVR2",
"files": [
"https://github.com/Luminatrixx/NIVR2"
],
"install_type": "git-clone",
"description": "Native ComfyUI implementation of ByteDance SeedVR2 using ComfyUI's own model stack and core graph nodes."
},
{
"author": "TiwazM",
"title": "ComfyUI-Precision-Model-Save",
"reference": "https://github.com/TiwazM/ComfyUI-Precision-Model-Save",
"files": [
"https://github.com/TiwazM/ComfyUI-Precision-Model-Save"
],
"install_type": "git-clone",
"description": "For users who merge models in ComfyUI and want the saved checkpoint to match the live merged model exactly. A small custom node for saving a live merged MODEL without using ComfyUI's normal ModelSave materialisation path."
},
{
"author": "CocyNoric",
"title": "ComfyUI-Anima-TeaCache",
"reference": "https://github.com/CocyNoric/ComfyUI-Anima-TeaCache",
"files": [
"https://github.com/CocyNoric/ComfyUI-Anima-TeaCache"
],
"install_type": "git-clone",
"description": "TeaCache acceleration for the native ComfyUI implementation of circlestone-labs/Anima."
},
{
"author": "Yasei-no-otoko",
"title": "ComfyUI RDNA35 Attention",
"id": "rdna35-attention",
"reference": "https://github.com/Yasei-no-otoko/ComfyUI-RDNA35-Attention",
"files": [
"https://github.com/Yasei-no-otoko/ComfyUI-RDNA35-Attention"
],
"install_type": "git-clone",
"description": "RDNA 3.5 attention research nodes for ComfyUI, including fixed-block, exact Triton, FlexAttention, and PISA paths with model-local fallback handling."
},
{
"author": "90-RED",
"title": "ComfyUI-LinkRouter",
"reference": "https://github.com/90-RED/ComfyUI-LinkRouter",
"files": [
"https://github.com/90-RED/ComfyUI-LinkRouter"
],
"install_type": "git-clone",
"description": "Object-avoiding orthogonal link routing for ComfyUI. Links automatically detour around nodes with smooth right-angle paths. Flow animation, hover highlight, floating control bar, and full settings panel. Pure frontend — zero impact on generation."
},
{
"author": "cyberdelia",
"title": "NegPiP Prompt (Multi-Model)",
"reference": "https://github.com/cyberdeliaAI/comfyui-negpip-zimage",
"files": [
"https://github.com/cyberdeliaAI/comfyui-negpip-zimage"
],
"install_type": "git-clone",
"description": "One-node NegPiP prompting for Z-Image, SD1, SDXL, and Anima in ComfyUI."
},
{
"author": "smthemex",
"title": "ComfyUI_UniBlockSwap",
"reference": "https://github.com/smthemex/ComfyUI_UniBlockSwap",
"files": [
"https://github.com/smthemex/ComfyUI_UniBlockSwap"
],
"install_type": "git-clone",
"description": "A universal swap node that supports ComfyUI native workflow, allowing 4_6G users to experience Klein9B or other large models"
},
{
"author": "RmaNMetaverse",
"title": "First Frame & Last Frame Extractor",
"reference": "https://github.com/RmaNMetaverse/ComfyUI-FirstframeLastframeExtractor",
"files": [
"https://github.com/RmaNMetaverse/ComfyUI-FirstframeLastframeExtractor"
],
"install_type": "git-clone",
"description": "Extract the first and last frame from any video file or image batch in ComfyUI."
},
{
"author": "galigali",
"title": "ComfyUI-PNGInfo",
"reference": "https://github.com/galigali-san/ComfyUI-PNGInfo",
"files": [
"https://github.com/galigali-san/ComfyUI-PNGInfo"
],
"install_type": "git-clone",
"description": "A1111-style PNG Info for ComfyUI: load an image, read its generation metadata as human-readable text (A1111 parameters and ComfyUI embedded workflows), and reuse positive/negative/seed/steps/cfg as typed outputs."
},
{
"author": "YOUR_COMFY_PUBLISHER_ID",
"title": "Undulating Glitch",
"reference": "https://github.com/jsterlingvids/ComfyUI-UndulatingGlitch",
"files": [
"https://github.com/jsterlingvids/ComfyUI-UndulatingGlitch"
],
"install_type": "git-clone",
"description": "Four-way alignment, travelling wave, and block-glitch video compositor nodes for ComfyUI."
},
{
"author": "nnegret",
"title": "Anima-Tools",
"id": "comfyui-anima-tools",
"reference": "https://github.com/nregret/Comfyui-Anima-Tools",
"files": [
"https://github.com/nregret/Comfyui-Anima-Tools"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for anime prompt selection, random prompt generation, background and character tag composition, and Anima LoRA search, download, and loading."
},
{
"author": "ukr8b3g-cmyk",
"title": "Empty Latent Image Plus",
"reference": "https://github.com/ukr8b3g-cmyk/Empty-Latent-Image-Plus",
"files": [
"https://github.com/ukr8b3g-cmyk/Empty-Latent-Image-Plus"
],
"install_type": "git-clone",
"description": "A compact Empty Latent Image replacement that also outputs WIDTH and HEIGHT values for ComfyUI workflows."
},
{
"author": "KoishiAI",
"title": "LD ComfyUI Prompt Nodes",
"reference": "https://github.com/KoishiAI/LD-ComfyUI-Prompt-Nodes",
"files": [
"https://github.com/KoishiAI/LD-ComfyUI-Prompt-Nodes"
],
"install_type": "git-clone",
"description": "Contains SlopPrompt and BooruPromptGenerator nodes to automate prompt generation for anime models. SlopPrompt allows natural language prompt generation or advanced formats like json and various conversions between them, while BooruPromptGenerator will let you generate random prompts anchored around tags you specify with various sampling options."
},
{
"author": "TrophiHunter",
"title": "ComfyUI-MLUT",
"reference": "https://github.com/TrophiHunter/ComfyUI-MLUT",
"files": [
"https://github.com/TrophiHunter/ComfyUI-MLUT"
],
"install_type": "git-clone",
"description": "Apply color **LUTs** and **swatches/palettes** to images in ComfyUI from one self-contained collection."
},
{
"author": "albert999-pixel",
"title": "comfyui-beeble-switchx",
"reference": "https://github.com/albert999-pixel/comfyui-beeble-switchx",
"files": [
"https://github.com/albert999-pixel/comfyui-beeble-switchx"
],
"install_type": "git-clone",
"description": "Custom ComfyUI nodes for Beeble SwitchX image and video workflows."
},
{
"author": "WaitWut",
"title": "Ultimate Lora Loader",
"reference": "https://github.com/WaitWut/comfyui-ultimate-lora-loader",
"files": [
"https://github.com/WaitWut/comfyui-ultimate-lora-loader"
],
"install_type": "git-clone",
"description": "A Power-Lora-Loader-style dynamic LoRA stack node with a real on-disk folder browser, drag-to-reorder, optional CLIP, and per-lora split model/clip strengths."
},
{
"author": "m0rtus59",
"title": "ComfyUI-ComfySidebar",
"reference": "https://github.com/m0rtus59/ComfyUI-ComfySidebar",
"files": [
"https://github.com/m0rtus59/ComfyUI-ComfySidebar"
],
"install_type": "git-clone",
"description": "Restoring the ComfyUI frontend pre-vue update queue functionality, drag&drop support, quicksave, and more in a clean design that respects your screen area."
},
{
"author": "Anonymzx",
"title": "ComfyUI-Supertonic3TTS",
"reference": "https://github.com/Anonymzx/ComfyUI-Supertonic3TTS",
"files": [
"https://github.com/Anonymzx/ComfyUI-Supertonic3TTS"
],
"install_type": "git-clone",
"description": "custom nodes integrating Supertone's Supertonic-3 — a lightning-fast, on-device, multilingual Text-to-Speech system running natively via ONNX Runtime."
},
{
"author": "vitacon",
"title": "Retro Pixel-Matrix Dither 👾",
"reference": "https://github.com/vitacon/ComfyUI-Retro-Pixel-Matrix-Dither",
"files": [
"https://github.com/vitacon/ComfyUI-Retro-Pixel-Matrix-Dither"
],
"install_type": "git-clone",
"description": "An advanced multi-ratio Bayer matrix dithering node for ComfyUI with edge protection."
},
{
"author": "navalyalgam97",
"title": "XFlow Resolution",
"reference": "https://github.com/navalyalgam97/comfyui-xflow-resolution",
"files": [
"https://github.com/navalyalgam97/comfyui-xflow-resolution"
],
"install_type": "git-clone",
"description": "A premium resolution utility node for ComfyUI with aspect ratio grid, preset selection, custom ratios, favorites, recents, and keyboard navigation."
},
{
"author": "kongo_jun",
"title": "ComfyUI-JITBlockSwap",
"reference": "https://github.com/lovemachine100/ComfyUI-JITBlockSwap",
"files": [
"https://github.com/lovemachine100/ComfyUI-JITBlockSwap"
],
"install_type": "git-clone",
"description": "Block Swap (RAM Offload) node for native ComfyUI MODEL - run DiT models larger than VRAM by streaming transformer blocks from system RAM."
},
{
"author": "nkxx188",
"title": "ComfyUI Krea2 Style Transfer",
"reference": "https://github.com/jieg9341-lab/ComfyUI-Krea2-StyleTransfer",
"files": [
"https://github.com/jieg9341-lab/ComfyUI-Krea2-StyleTransfer"
],
"install_type": "git-clone",
"description": "Training-free Krea2 style reference nodes for ComfyUI, with LoRA-like single-image transfer, experimental two-reference blending, low content leakage, and preserved image quality."
},
{
"author": "r0zaic",
"title": "Reference Image Comparer",
"reference": "https://github.com/r0zaic/comfyui-reference-image-comparer",
"files": [
"https://github.com/r0zaic/comfyui-reference-image-comparer"
],
"install_type": "git-clone",
"description": "Compare your workflow's output against a fixed reference image with a hover swipe slider."
},
{
"author": "shootthesound",
"title": "Krea Reason",
"reference": "https://github.com/shootthesound/ComfyUI-KreaReason",
"files": [
"https://github.com/shootthesound/ComfyUI-KreaReason"
],
"install_type": "git-clone",
"description": "Reason-then-encode for Krea 2. The encoder's own Qwen3-VL rewrites your prompt into a richer one — or reads a reference image (describe → filter → combine) — before conditioning: a built-in prompt enhancer and language-level image reference, running on the exact model that conditions."
},
{
"author": "fni8",
"title": "ComfyUI-fni8 (int8 dp4a / Volta)",
"reference": "https://github.com/jajmangold/ComfyUI-fni8",
"files": [
"https://github.com/jajmangold/ComfyUI-fni8"
],
"install_type": "git-clone",
"description": "int8 dp4a (sm_70/Volta) acceleration for diffusion DiTs in ComfyUI, over the fni8 kernels"
},
{
"author": "inubq8",
"title": "ComfyUI-MultiMaskOps",
"reference": "https://github.com/INuBq8/ComfyUI-MultiMaskOps",
"files": [
"https://github.com/INuBq8/ComfyUI-MultiMaskOps"
],
"install_type": "git-clone",
"description": "A collection of ComfyUI nodes for working with multiple masks at once — sorting them by position, picking one out, removing duplicates, and expanding/feathering them without letting neighbours overlap."
},
{
"author": "SheikhAnas999",
"title": "Image Grid Merger",
"reference": "https://github.com/SheikhAnas999/Images_Merge_ComfyUI",
"files": [
"https://github.com/SheikhAnas999/Images_Merge_ComfyUI"
],
"install_type": "git-clone",
"description": "ComfyUI custom node that merges a batch of images into a single grid canvas."
},
{
"author": "younestft",
"title": "Comfy EverAnimate",
"reference": "https://github.com/younestft/Comfy_EverAnimate",
"files": [
"https://github.com/younestft/Comfy_EverAnimate"
],
"install_type": "git-clone",
"description": "Native ComfyUI nodes for EverAnimate-style chunked WanAnimate workflows, including master/chunk settings, chunk calculation, image carry-over, and boundary color correction."
},
{
"author": "Moon-NE",
"title": "MoonNe_Nodes",
"reference": "https://github.com/Moon-NE/MoonNe_Nodes",
"files": [
"https://github.com/Moon-NE/MoonNe_Nodes"
],
"install_type": "git-clone",
"description": "Custom nodes for text operations, including concatenation, horizontal-to-vertical conversion, and batch processing."
},
{
"author": "TechnoWarrior2",
"title": "ComfyUI Image Picker",
"reference": "https://github.com/TechnoWarrior2/comfyui-image-picker",
"files": [
"https://github.com/TechnoWarrior2/comfyui-image-picker"
],
"install_type": "git-clone",
"description": "Pauses your workflow and opens a popup window to manually pick which generated images pass through to the rest of the graph."
},
{
"author": "TechnoWarrior2",
"title": "ComfyUI Live Preview",
"reference": "https://github.com/TechnoWarrior2/comfyui-live-preview",
"files": [
"https://github.com/TechnoWarrior2/comfyui-live-preview"
],
"install_type": "git-clone",
"description": "Displays a large draggable floating window with live denoising step previews as your image generates, similar to A1111 and Forge."
},
{
"author": "shootthesound",
"title": "Lighthouse",
"reference": "https://github.com/shootthesound/comfyui-lighthouse",
"files": [
"https://github.com/shootthesound/comfyui-lighthouse"
],
"install_type": "git-clone",
"description": "A non-destructive overlay that lights up every node by graph distance from the one you click. Diagnostic for big workflows, educational for understanding workflows others built, and surgical when you need to focus on one neighbourhood at a time."
},
{
"author": "shootthesound",
"title": "CleanFreak",
"reference": "https://github.com/shootthesound/comfyui-CleanFreak",
"files": [
"https://github.com/shootthesound/comfyui-CleanFreak"
],
"install_type": "git-clone",
"description": "One-click tidy-by-role for any ComfyUI workflow — loaders, encoders, samplers, decoders, and outputs each sorted into their own column with coloured group cards and connections preserved. 1200+ node classes pre-classified out of the box."
},
{
"author": "shootthesound",
"title": "Finding LoRA",
"reference": "https://github.com/shootthesound/comfyui-lora-FindingLora",
"files": [
"https://github.com/shootthesound/comfyui-lora-FindingLora"
],
"install_type": "git-clone",
"description": "A LoRA loader with bookmarks, trigger-word storage and click-to-copy, fuzzy search, and a one-click button to drop another loader inline and wire it into the model chain automatically."
},
{
"author": "shootthesound",
"title": "Image of the Day",
"reference": "https://github.com/shootthesound/comfyui-image-of-the-day",
"files": [
"https://github.com/shootthesound/comfyui-image-of-the-day"
],
"install_type": "git-clone",
"description": "Fetch a fresh image straight into your workflow from 8 daily/random sources. Useful for prompt testing, style references, daily-image automations, or just kicking off a workflow with something interesting."
},
{
"author": "boobkake22",
"title": "Sampling Planner",
"reference": "https://github.com/boobkake22/ComfyUI-SamplingPlanner",
"files": [
"https://github.com/boobkake22/ComfyUI-SamplingPlanner"
],
"install_type": "git-clone",
"description": "Task-aware Wan 2.2 sampling plans and sampler-specific breakout nodes for ComfyUI."
},
{
"author": "iljung1106",
"title": "Anima Safe PAG",
"reference": "https://github.com/iljung1106/comfyui-anima-safe-pag",
"files": [
"https://github.com/iljung1106/comfyui-anima-safe-pag"
],
"install_type": "git-clone",
"description": "A soft, Anima-friendly Perturbed Attention Guidance node for ComfyUI."
},
{
"author": "burgstall-labs",
"title": "ComfyUI-Domemaster-Outpaint",
"reference": "https://github.com/Burgstall-labs/ComfyUI-Domemaster-Outpaint",
"files": [
"https://github.com/Burgstall-labs/ComfyUI-Domemaster-Outpaint"
],
"install_type": "git-clone",
"description": "Outpaint flat video into fulldome / planetarium shows: domemaster rendering with tilted-venue presets for ComfyUI, on top of the Burgstall Labs 360 outpaint pipeline."
},
{
"author": "depth-layer-rasterizer",
"title": "Depth Layer Rasterizer",
"reference": "https://github.com/maDcaDDie2000/comfyui_depth_layer_rasterizer",
"files": [
"https://github.com/maDcaDDie2000/comfyui_depth_layer_rasterizer"
],
"install_type": "git-clone",
"description": "Depth-map paper-cut and parallax layer rasterizer for ComfyUI"
},
{
"author": "artokun",
"title": "ComfyUI Agent Panel",
"reference": "https://github.com/artokun/comfyui-mcp-panel",
"files": [
"https://github.com/artokun/comfyui-mcp-panel"
],
"install_type": "git-clone",
"description": "Agent sidebar panel for ComfyUI — chat with an autonomous agent (Claude, Codex/GPT, Gemini, or local Ollama) that builds, runs, and debugs workflows on your live canvas. UI-only pack (also on the Comfy Registry as comfyui-agent-panel); pairs with the comfyui-mcp orchestrator: npx -y comfyui-mcp@latest --panel-orchestrator"
},
{
"author": "designloves2",
"title": "ComfyUI-TJ_NODE_STUDIO_ONE",
"id": "ComfyUI-TJ_NODE_STUDIO_ONE",
"reference": "https://github.com/designloves2/ComfyUI-TJ_NODE_STUDIO_ONE",
"files": [
"https://github.com/designloves2/ComfyUI-TJ_NODE_STUDIO_ONE"
],
"install_type": "git-clone",
"description": "One-node studio UI package for Z-Image Turbo, Flux.2 Klein, Qwen Image Edit 2511, and Krea 2 workflows, including T2I, I2I, inpaint, outpaint, edit, faceswap, angle, and upscale modes."
},
{
"author": "A1-multiply",
"title": "ComfyUI LatentSaver",
"reference": "https://github.com/A1-multiply/ComfyUI-LatentSaver",
"files": [
"https://github.com/A1-multiply/ComfyUI-LatentSaver"
],
"install_type": "git-clone",
"description": "Save and reload ComfyUI latent tensors from the output folder."
},
{
"author": "trix7111",
"title": "ComfyUI-TrixNodes",
"reference": "https://github.com/trx7111/ComfyUI-TrixNodes",
"files": [
"https://github.com/trx7111/ComfyUI-TrixNodes"
],
"install_type": "git-clone",
"description": "An elegant, premium, remote bypass and wire-management nodes suite for ComfyUI."
},
{
"author": "CoreyCorza",
"title": "Corza LoRA Loader (Clean)",
"reference": "https://github.com/CoreyCorza/comfyui-lora-loader",
"files": [
"https://github.com/CoreyCorza/comfyui-lora-loader"
],
"install_type": "git-clone",
"description": "A drop-in ComfyUI LoRA loader with optional spectral cleanup (energy trimming + hot-layer taming) to reduce artifacts from stacked LoRAs and turbo/distilled models."
},
{
"author": "archerkattri",
"title": "ComfyUI-HiCache",
"reference": "https://github.com/Archerkattri/ComfyUI-HiCache",
"files": [
"https://github.com/Archerkattri/ComfyUI-HiCache"
],
"install_type": "git-clone",
"description": "Training-free Hunyuan3D shape-generation acceleration: skip DiT steps and forecast the flow-matching velocity instead (HiCache Hermite / HiCache++ DMD, via hicache-pp). Pairs with kijai/ComfyUI-Hunyuan3DWrapper."
},
{
"author": "archerkattri",
"title": "ComfyUI-TRELLIS2-HiCache",
"reference": "https://github.com/Archerkattri/ComfyUI-TRELLIS2-HiCache",
"files": [
"https://github.com/Archerkattri/ComfyUI-TRELLIS2-HiCache"
],
"install_type": "git-clone",
"description": "Training-free TRELLIS.2 image-to-3D acceleration: forecast the flow-matching velocity on skipped DiT steps (HiCache Hermite / HiCache++ DMD, via hicache-pp) across the sparse-structure and shape-SLaT stages (texture optional). ~2x faster, near-lossless. Pairs with visualbruno/ComfyUI-Trellis2."
},
{
"author": "Stillfront",
"title": "SF ComfyUI Nodes",
"reference": "https://github.com/Stillfront/comfyui-sf-nodes",
"files": [
"https://github.com/Stillfront/comfyui-sf-nodes"
],
"install_type": "git-clone",
"description": "Custom nodes for ComfyUI including LLM Chat (Claude, Gemini, GPT), WaveSpeed AI image and video generation, VertexAI integration, and workflow utilities."
},
{
"author": "maikios",
"title": "ComfyUI Gemma4 Reference Prompt",
"reference": "https://github.com/MaikiOS/ComfyUI-Gemma4-ReferencePrompt",
"files": [
"https://github.com/MaikiOS/ComfyUI-Gemma4-ReferencePrompt"
],
"install_type": "git-clone",
"description": "Gemma 4 reference-image prompt nodes for ComfyUI"
},
{
"author": "ashen3",
"title": "Two-Stage Sampler and Krea 2 Resolution Picker",
"reference": "https://github.com/Auryg/Krea-2-Two-Stage-Sampler",
"files": [
"https://github.com/Auryg/Krea-2-Two-Stage-Sampler"
],
"install_type": "git-clone",
"description": "Sigma-locked two-stage sampler and dual resolution selector for Krea 2 (and possibly other) workflows in ComfyUI."
},
{
"author": "DutchyDutch",
"title": "ComfyUI Local Wildcards",
"reference": "https://github.com/DutchyDutch/ComfyUI_Local_Wildcards",
"files": [
"https://github.com/DutchyDutch/ComfyUI_Local_Wildcards"
],
"install_type": "git-clone",
"description": "A ComfyUI local wildcard text expansion node with support for .txt, .json, .yaml, and .yml wildcard files, plus Dynamic Prompts-style syntax."
},
{
"author": "Kevin Gilper",
"title": "ComfyUI Krea Reference",
"reference": "https://github.com/kgilper/krea-reference",
"files": [
"https://github.com/kgilper/krea-reference"
],
"install_type": "git-clone",
"description": "Give each reference image a job before it reaches Krea 2. Guide cards assign per-image roles (keep the same subject, suggest the visual style, copy lighting or pose, big shapes only, avoid copying text/logos) and the stack encoder builds Krea conditioning with per-card strength, per-layer gains, and guarded prompt handling."
},
{
"author": "monja",
"title": "Monja Image Validator",
"reference": "https://github.com/andremonjardim/comfyui-image-validator",
"files": [
"https://github.com/andremonjardim/comfyui-image-validator"
],
"install_type": "git-clone",
"description": "Valida se a imagem é múltipla de 8 para workflows de Upscale e Flux."
},
{
"author": "workordie",
"title": "ComfyUI-GridSplit",
"reference": "https://github.com/workordie/ComfyUI-GridSplit",
"files": [
"https://github.com/workordie/ComfyUI-GridSplit"
],
"install_type": "git-clone",
"description": "Auto-detect seams in stitched grid/carousel/collage images and split into panels — no model, any resolution, even/uneven/irregular layouts."
},
{
"author": "lhy666",
"title": "ComfyUI-TomatoCrypt",
"reference": "https://github.com/lihaoyun6/ComfyUI-TomatoCrypt",
"files": [
"https://github.com/lihaoyun6/ComfyUI-TomatoCrypt"
],
"install_type": "git-clone",
"description": "ComfyUI expansion of the 🍅Tomato Crypt"
},
{
"author": "y4236512",
"title": "Wan Camera Advanced",
"reference": "https://github.com/thepororo/ComfyUI-WanCameraAdvanced",
"files": [
"https://github.com/thepororo/ComfyUI-WanCameraAdvanced"
],
"install_type": "git-clone",
"description": "Native-compatible 6DoF camera paths, chaining, visualization, and multi-frame reference conditioning for ComfyUI Wan video workflows"
},
{
"author": "g-raw",
"title": "ComfyUI-LTX-Attention-Toolkit",
"reference": "https://github.com/g-raw/ComfyUI-LTX-Attention-Toolkit",
"files": [
"https://github.com/g-raw/ComfyUI-LTX-Attention-Toolkit"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node suite for profiling, visualizing and steering attention heads in LTX-Video 2.3 (distill & dev)."
},
{
"author": "ketle-man",
"title": "Mask Editor One",
"id": "comfyui-mask-editor-one",
"reference": "https://github.com/ketle-man/comfyui-mask-editor-one",
"files": [
"https://github.com/ketle-man/comfyui-mask-editor-one"
],
"install_type": "git-clone",
"description": "A layer-based modal mask editor for ComfyUI with Photoshop-like controls. Features paint, color selection, alpha extraction, vector (Catmull-Rom spline), shape, and text tools, SAM3 AI segmentation, BiRefNet background removal, layer management with Undo/Redo (30 levels), ABR brush import, brush library, and multilingual UI (en/ja/zh)."
},
{
"author": "File_xor",
"title": "SEGA for Anima",
"reference": "https://github.com/Filexor/SEGA_Anima",
"files": [
"https://github.com/Filexor/SEGA_Anima"
],
"install_type": "git-clone",
"description": "SEGA anima is implementation of \"SEGA: Spectral-Energy Guided Attention for Resolution Extrapolation in Diffusion Transformers\" (arXiv:2605.22668) for Anima model in ComfyUI."
},
{
"author": "beakfx",
"title": "MBQ Wedge",
"reference": "https://github.com/Beakfx/mbq",
"files": [
"https://github.com/Beakfx/mbq"
],
"install_type": "git-clone",
"description": "Compare ComfyUI parameter values without contact sheets — sweep numerics, samplers, or schedulers, then inspect each result full-res in MBQ Viewer."
},
{
"author": "nekodificador",
"title": "NKD Preview Tools",
"reference": "https://github.com/Nekodificador/ComfyUI-NKD-Preview-Tools",
"files": [
"https://github.com/Nekodificador/ComfyUI-NKD-Preview-Tools"
],
"install_type": "git-clone",
"description": "Preview and masking tools for ComfyUI: floating popup preview window (multi-monitor, live TAESD preview) and a procedural mask painter that bridges any IMAGE source into the native mask editor."
},
{
"author": "ruminar",
"title": "ComfyUI-GMImageSaver",
"id": "gmimagesaver",
"reference": "https://github.com/ruminar/ComfyUI-GMImageSaver",
"files": [
"https://github.com/ruminar/ComfyUI-GMImageSaver"
],
"install_type": "git-clone",
"description": "GraphicsMagick-based direct JPEG saver node for ComfyUI. Saves IMAGE tensors directly as JPEG without intermediate PNG files. JPEG-only, previewless, label-aware, and useful for organized batch/inventory workflows. NOTE: GraphicsMagick must be installed separately and available via GM_PATH or PATH."
},
{
"author": "EnragedAntelope",
"title": "EA_LMStudio",
"id": "ea-lmstudio",
"reference": "https://github.com/EnragedAntelope/EA_LMStudio",
"files": [
"https://github.com/EnragedAntelope/EA_LMStudio"
],
"install_type": "git-clone",
"pip": [
"lmstudio>=1.0.0"
],
"description": "LM Studio ComfyUI integration with easy model selection and many optimizations! Features auto model discovery, vision/VLM support, reasoning extraction for DeepSeek R1/Qwen3/QwQ models, and detailed stats with VRAM management."
},
{
"author": "sorryhyun",
"title": "Anima Block Compile",
"reference": "https://github.com/sorryhyun/ComfyUI-Anima-BlockCompile",
"files": [
"https://github.com/sorryhyun/ComfyUI-Anima-BlockCompile"
],
"install_type": "git-clone",
"description": "Anima Block Compile for ComfyUI: a one-purpose node that runs torch.compile on the Anima DiT per transformer block (diffusion_model.blocks.{i}) instead of the whole model. Faster compile, fewer graph breaks. A thin, Anima-named wrapper over ComfyUI core's set_torch_compile_wrapper."
},
{
"author": "nynxz",
"title": "NK2E",
"reference": "https://github.com/Nynxz/ComfyUI-NK2E",
"files": [
"https://github.com/Nynxz/ComfyUI-NK2E"
],
"install_type": "git-clone",
"description": "NK2E — experimental, unofficial in-context image editing for Krea 2 (community project; not affiliated with Krea)."
},
{
"author": "glashkoff",
"title": "Random Seed Batch Generator",
"reference": "https://github.com/Glashkoff/comfyui-random-seed-batch-generator",
"files": [
"https://github.com/Glashkoff/comfyui-random-seed-batch-generator"
],
"install_type": "git-clone",
"description": "Generate multiple groups of seeds for batch image processing in ComfyUI."
},
{
"author": "bonestudio",
"title": "Bone-Studio Workflow Manager",
"reference": "https://github.com/juangea/bs-comfyui-workflow-manager",
"files": [
"https://github.com/juangea/bs-comfyui-workflow-manager"
],
"install_type": "git-clone",
"description": "Organize your ComfyUI workflows for production: a folder manager plus a project layer (exportable internal DB), bulk export and optional Git versioning, from a built-in panel."
},
{
"author": "andrometa",
"title": "Krea Moodboards",
"reference": "https://github.com/Andro-Meta/ComfyUI-Krea-Moodboards",
"files": [
"https://github.com/Andro-Meta/ComfyUI-Krea-Moodboards"
],
"install_type": "git-clone",
"description": "Prompt-only Krea moodboard search and style nodes for ComfyUI."
},
{
"author": "tylervw99",
"title": "ComfyUI-camera-shake-node",
"reference": "https://github.com/tylervw99/ComfyUI-camera-shake-node",
"files": [
"https://github.com/tylervw99/ComfyUI-camera-shake-node"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node that applies subtle, handheld-style camera shake to an image batch. It adds per-frame affine transforms (translate, rotate, scale) to simulate natural micro-movement, ideal for adding life to video/animation frame sequences."
},
{
"author": "judian17",
"title": "ComfyUI-JoyAI-Image-Edit",
"reference": "https://github.com/judian17/ComfyUI-JoyAI-Image-Edit",
"files": [
"https://github.com/judian17/ComfyUI-JoyAI-Image-Edit"
],
"install_type": "git-clone",
"description": "Native ComfyUI implementation of the JoyAI-Image family supporting single and multi-image image editing and text-to-image generation using JoyAI-Image models with Qwen3-VL support."
},
{
"author": "dugdiamond6-afk",
"title": "ComfyUI-Orientation_Mate",
"reference": "https://github.com/dugdiamond6-afk/ComfyUI-Orientation_Mate",
"files": [
"https://github.com/dugdiamond6-afk/ComfyUI-Orientation_Mate"
],
"install_type": "git-clone",
"description": "A simple scaling node for ComfyUI, allowing the changing of the length of the input's longest edge."
},
{
"author": "julienpmorand",
"title": "comfyui_custom_pipe",
"reference": "https://github.com/julienpmorand/comfyui_custom_pipe",
"files": [
"https://github.com/julienpmorand/comfyui_custom_pipe"
],
"install_type": "git-clone",
"description": "ComfyUI Dynamic Pipe is a lightweight custom node extension that lets you bundle multiple arbitrary node connections into a single pipe connection, then unpack them later."
},
{
"author": "Sekiun",
"title": "ComfyUI-fusenchatPrompter",
"reference": "https://github.com/Sekiun/ComfyUI-fusenchatPrompter",
"files": [
"https://github.com/Sekiun/ComfyUI-fusenchatPrompter"
],
"install_type": "git-clone",
"description": "Custom node for converting metadata-enriched PNG images from fusenchat into ComfyUI prompt text chips with drag-and-drop reordering capabilities."
},
{
"author": "BitPoet",
"title": "ComfyUI-bitpoet-IG4Inpaint",
"reference": "https://github.com/BitPoet/ComfyUI-bitpoet-IG4Inpaint",
"files": [
"https://github.com/BitPoet/ComfyUI-bitpoet-IG4Inpaint"
],
"install_type": "git-clone",
"description": "ComfyUI conditioning node for reference-conditioned Ideogram 4 LoRAs. Enables inpainting with the Ideogram 4 model."
},
{
"author": "BetaDoggo",
"title": "comfyui-image-resize-plus",
"reference": "https://github.com/BetaDoggo/comfyui-image-resize-plus",
"files": [
"https://github.com/BetaDoggo/comfyui-image-resize-plus"
],
"install_type": "git-clone",
"description": "An extraction of the one node I actually wanted from ComfyUI_essentials"
},
{
"author": "veoreg",
"title": "ComfyUI-ForcedAlignTimings",
"reference": "https://github.com/veoreg/ComfyUI-ForcedAlignTimings",
"files": [
"https://github.com/veoreg/ComfyUI-ForcedAlignTimings"
],
"install_type": "git-clone",
"description": "Word-level forced alignment for the Synthy/iRead custom TTS provider that aligns generated speech against known input text and returns per-word timings."
},
{
"author": "Dawizzer",
"title": "ComfyUI-Qwen3TTS-Emotional",
"reference": "https://github.com/Dawizzer/ComfyUI-Qwen3TTS-Emotional",
"files": [
"https://github.com/Dawizzer/ComfyUI-Qwen3TTS-Emotional"
],
"install_type": "git-clone",
"description": "Advanced voice cloning with 80+ emotion presets and multi-emotion mixing for ComfyUI. (Description by CC)"
},
{
"author": "pmarmotte2",
"title": "Comfyui-Song-Generation-Suite",
"reference": "https://github.com/pmarmotte2/Comfyui-Song-Generation-Suite",
"files": [
"https://github.com/pmarmotte2/Comfyui-Song-Generation-Suite"
],
"install_type": "git-clone",
"description": "SongGenerationSuite generates complete, structured songs (lyrics + music prompt) and converts them into conditioning compatible with ACE 1.5 audio generation workflows."
},
{
"author": "jamesstothard",
"title": "renderzero-comfyui-nodes",
"reference": "https://github.com/jamesstothard/renderzero-comfyui-nodes",
"files": [
"https://github.com/jamesstothard/renderzero-comfyui-nodes"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for RenderZero Studio image and video workflows."
},
{
"author": "Codes4Fun",
"title": "c4f-wire-loom",
"reference": "https://github.com/Codes4Fun/c4f-wire-loom",
"files": [
"https://github.com/Codes4Fun/c4f-wire-loom"
],
"install_type": "git-clone",
"description": "Wire Loom nodes for organizing and bundling wires in ComfyUI workflows into reusable streams. (Description by CC)"
},
{
"author": "SvKora",
"title": "ComfyUI-Kora",
"reference": "https://github.com/SvKora/ComfyUI-Kora",
"files": [
"https://github.com/SvKora/ComfyUI-Kora"
],
"install_type": "git-clone",
"description": "Advanced custom node for ComfyUI with an integrated sketching and mask drawing editor built directly into the node interface for drawing masks, sketches, and generating Ideogram prompts."
},
{
"author": "capitan01r",
"title": "ComfyUI-Krea2T-Enhancer",
"reference": "https://github.com/capitan01R/ComfyUI-Krea2T-Enhancer",
"files": [
"https://github.com/capitan01R/ComfyUI-Krea2T-Enhancer"
],
"install_type": "git-clone",
"description": "Krea2 Turbo Enhancement Nodes"
},
{
"author": "gh055",
"title": "ComfyUI Dynamic Text-to-Combo Generator",
"reference": "https://github.com/gh055/ComfyUI-Dynamic-Combo",
"files": [
"https://github.com/gh055/ComfyUI-Dynamic-Combo"
],
"install_type": "git-clone",
"description": "Generates dynamic combo/dropdown choices from multiline text inputs compatible with Set/Get node setups."
},
{
"author": "arrssenne",
"title": "ComfyUI-Arrssenne",
"reference": "https://github.com/arrssenne/comfyui-arrssenne",
"files": [
"https://github.com/arrssenne/comfyui-arrssenne"
],
"install_type": "git-clone",
"description": "Collection personnelle de custom nodes pour ComfyUI (arrssenne)."
},
{
"author": "stevelasmin4real",
"title": "Auto_Metadata_Ksampler_Stamp by Steve Lasmin",
"reference": "https://github.com/Eklipsis/auto_metadata_ksampler_stamp_by_steve_lasmin",
"files": [
"https://github.com/Eklipsis/auto_metadata_ksampler_stamp_by_steve_lasmin"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node that automatically extracts KSampler metadata and stamps it onto generated images."
},
{
"author": "DanielBartolic",
"title": "ComfyUI-SaveIntermediates",
"reference": "https://github.com/DanielBartolic/ComfyUI-SaveIntermediates",
"files": [
"https://github.com/DanielBartolic/ComfyUI-SaveIntermediates"
],
"install_type": "git-clone",
"description": "Save and stream intermediate sampling steps during diffusion. Perfect for showing generation progress on your frontend instead of a loading spinner."
},
{
"author": "aimoviestudio",
"title": "ComfyUI Iterator Nodes",
"reference": "https://github.com/AIMovieStudio/comfyui-iterator",
"files": [
"https://github.com/AIMovieStudio/comfyui-iterator"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for iterating over files (images, text) in directories."
},
{
"author": "nova452",
"title": "ComfyUI-Conditioning-Rebalance",
"reference": "https://github.com/nova452/ComfyUI-ConditioningKrea2Rebalance",
"files": [
"https://github.com/nova452/ComfyUI-ConditioningKrea2Rebalance"
],
"install_type": "git-clone",
"description": "Conditioning optimizer nodes with per layer weighting that offers IP-Adapter-like features for Krea 2 image reference editing along with bypassing the built in quality diluation from the trained safety filter and also works as a means to unfilter the model."
},
{
"author": "niknah",
"title": "MiniT2I",
"reference": "https://github.com/niknah/MiniT2I-ComfyUI",
"files": [
"https://github.com/niknah/MiniT2I-ComfyUI"
],
"install_type": "git-clone",
"description": "MiniT2i for ComfyUI"
},
{
"author": "bradsec",
"title": "ComfyUI_LLMSetRole",
"reference": "https://github.com/bradsec/ComfyUI_LLMSetRole",
"files": [
"https://github.com/bradsec/ComfyUI_LLMSetRole"
],
"install_type": "git-clone",
"description": "Pick an LLM role (system prompt) from a dropdown and output it as a STRING for an LLM node's system_prompt. Modes: fixed, increment, or random over a start..end slice, with index/seed control_after_generate to step roles across a batch. Roles are plain Markdown files in roles/; add a .md file and restart to add a role. Node name: Set Role. Located under Add Node > LLM."
},
{
"author": "nynxz",
"title": "ComfyUI JoyAI",
"reference": "https://github.com/Nynxz/ComfyUI-JoyAI",
"files": [
"https://github.com/Nynxz/ComfyUI-JoyAI"
],
"install_type": "git-clone",
"description": "JoyAI-Image-Edit (16B MMDiT + Qwen3-VL-8B) instruction image editing for ComfyUI."
},
{
"author": "kwokkakiu233",
"title": "LoRA Txt Loader",
"reference": "https://github.com/kwokkakiu233/comfyui-lora-txt-loader",
"files": [
"https://github.com/kwokkakiu233/comfyui-lora-txt-loader"
],
"install_type": "git-clone",
"description": "Automatically loads trigger words from a .txt file with the same name as the LoRA. Supports offline use and custom-trained models."
},
{
"author": "verias",
"title": "ComfyUI Body Decal",
"reference": "https://github.com/verias/comfyui-body-decal",
"files": [
"https://github.com/verias/comfyui-body-decal"
],
"install_type": "git-clone",
"description": "Pose-aware decal placement, projection, masking, displacement, and compositing tools for ComfyUI."
},
{
"author": "DemonGatanjieu",
"title": "Anomalous Model Browser",
"reference": "https://github.com/DemonGatanjieu/Anomalous_Model_Browser",
"files": [
"https://github.com/DemonGatanjieu/Anomalous_Model_Browser"
],
"install_type": "git-clone",
"description": "Auto-injects model hashes and auto-fixes missing nodes or renamed models paths when sharing workflows.",
"nodename_pattern": ".*"
},
{
"author": "Pikselkroken",
"title": "ComfyUI-PixlStash",
"reference": "https://github.com/Pikselkroken/ComfyUI-PixlStash",
"files": [
"https://github.com/Pikselkroken/ComfyUI-PixlStash"
],
"install_type": "git-clone",
"description": "Custom ComfyUI nodes for loading and saving images to a PixlStash vault."
},
{
"author": "SencneS",
"title": "Excel Styles Loader",
"reference": "https://github.com/SencneS/ComfyUI-ExcelStylesLoader",
"files": [
"https://github.com/SencneS/ComfyUI-ExcelStylesLoader"
],
"install_type": "git-clone",
"description": "A dynamic ComfyUI custom node that reads prompts from individual sheets/tabs within a local Excel (.xlsx) workbook."
},
{
"author": "smthemex",
"title": "Nine_Image_Compare",
"reference": "https://github.com/smthemex/Nine_Image_Compare",
"files": [
"https://github.com/smthemex/Nine_Image_Compare"
],
"install_type": "git-clone",
"description": "Compare one to nine images when use ComfyUI"
},
{
"author": "huwhitememes",
"title": "Krea 2 Conditioning Control",
"reference": "https://github.com/huwhitememes/comfyui-krea2-conditioning",
"files": [
"https://github.com/huwhitememes/comfyui-krea2-conditioning"
],
"install_type": "git-clone",
"description": "Quality-preserving per-layer conditioning control for Krea 2 - ComfyUI custom node (enhanced fork of nova452/ComfyUI-ConditioningKrea2Rebalance)."
},
{
"author": "aiknowledge2go",
"title": "ComfyUI-AI2Go-Utils",
"reference": "https://github.com/Little-God1983/ComfyUI-AI2Go-Utils",
"files": [
"https://github.com/Little-God1983/ComfyUI-AI2Go-Utils"
],
"install_type": "git-clone",
"description": "ComfyUI utility nodes by AIKnowledge2Go."
},
{
"author": "pollockjj",
"title": "comfyui-sealedcuda",
"reference": "https://github.com/pollockjj/ComfyUI-SealedCuda",
"files": [
"https://github.com/pollockjj/ComfyUI-SealedCuda"
],
"install_type": "git-clone",
"description": "Sealed-worker CUDA image nodes (NATTEN, fused-ssim) sourced from prebuilt cuda-wheels"
},
{
"author": "surrealbydesign",
"title": "ComfyUI Krea Palette Tools",
"reference": "https://github.com/SurrealByDesign/ComfyUI-Krea-Palette-Tools",
"files": [
"https://github.com/SurrealByDesign/ComfyUI-Krea-Palette-Tools"
],
"install_type": "git-clone",
"description": "Extract color palettes from reference images and package them as Krea 2 image_style_references."
},
{
"author": "ethanfel",
"title": "Text Encode (Krea2)",
"reference": "https://github.com/ethanfel/ComfyUI-Krea2TextEncoder",
"files": [
"https://github.com/ethanfel/ComfyUI-Krea2TextEncoder"
],
"install_type": "git-clone",
"description": "Vision-aware text conditioning for the Krea2 / K2 model. Feeds reference images through the Qwen3-VL-4B vision path with the Krea2 descriptor template; optional per-image mask crops to the masked region. No VAE (Krea2 has no reference-latent pathway). Auto-growing image+mask slots."
},
{
"author": "HallettVisual",
"title": "Smart Image Crop and Stitch",
"reference": "https://github.com/HallettVisual/ComfyUI-Smart-Image-Crop-and-Stitch",
"files": [
"https://github.com/HallettVisual/ComfyUI-Smart-Image-Crop-and-Stitch"
],
"install_type": "git-clone",
"description": "Mask-driven smart crop and stitch nodes for ComfyUI inpaint and edit workflows."
},
{
"author": "kevinsun",
"title": "ComfyUI-Quick-Latent",
"reference": "https://github.com/Zhen-Bo/comfyui-quick-latent",
"files": [
"https://github.com/Zhen-Bo/comfyui-quick-latent"
],
"install_type": "git-clone",
"description": "A streamlined latent size node for ComfyUI with resolution presets, scale control, and batch output."
},
{
"author": "TK22-26",
"title": "Inspect Image Overlay",
"reference": "https://github.com/TK22-26/comfyui-inspect-image-overlay",
"files": [
"https://github.com/TK22-26/comfyui-inspect-image-overlay"
],
"install_type": "git-clone",
"description": "ComfyUI node that opens generated images in a fullscreen inspector overlay."
},
{
"author": "ThunderFun",
"title": "ComfyUI-INT-Crush",
"reference": "https://github.com/ThunderFun/ComfyUI-INT-Crush",
"files": [
"https://github.com/ThunderFun/ComfyUI-INT-Crush"
],
"install_type": "git-clone",
"description": "INT4/INT8 quantized inference for ComfyUI diffusion models"
},
{
"author": "xmarre",
"title": "comfyui-global-memory-trim",
"reference": "https://github.com/xmarre/ComfyUI-Global-Memory-Trim",
"files": [
"https://github.com/xmarre/ComfyUI-Global-Memory-Trim"
],
"install_type": "git-clone",
"description": "Global native heap trimming custom node for ComfyUI on Linux/WSL"
},
{
"author": "saganaki22",
"title": "Higgs v3 TTS",
"reference": "https://github.com/Saganaki22/Higgs_v3-TTS-ComfyUI",
"files": [
"https://github.com/Saganaki22/Higgs_v3-TTS-ComfyUI"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for Higgs Audio v3 TTS with native inference, voice cloning, multi-speaker dialogue, longform chunking, and AIMDO DynamicVRAM support"
},
{
"author": "ukr8b3g-cmyk",
"title": "Save WEBP Meta",
"reference": "https://github.com/ukr8b3g-cmyk/ComfyUI-save-webp-meta-node",
"files": [
"https://github.com/ukr8b3g-cmyk/ComfyUI-save-webp-meta-node"
],
"install_type": "git-clone",
"description": "ComfyUI node for saving WebP, PNG, JPEG, and AVIF images with embedded prompt metadata."
},
{
"author": "Lumi4s",
"title": "Natural Prompt Editor",
"reference": "https://github.com/Lumi4s/natural_prompt_editor",
"files": [
"https://github.com/Lumi4s/natural_prompt_editor"
],
"install_type": "git-clone",
"description": "Natural language prompt editing and workflow enhancement tools for ComfyUI."
},
{
"author": "surrealbydesign",
"title": "ComfyUI Ideogram Palette and Prompt Tools",
"reference": "https://github.com/SurrealByDesign/ComfyUI-Ideogram-Palette-and-Prompt-Tools",
"files": [
"https://github.com/SurrealByDesign/ComfyUI-Ideogram-Palette-and-Prompt-Tools"
],
"install_type": "git-clone",
"description": "Extract color palettes from reference images and assemble/validate/embed Ideogram 4's structured prompt JSON."
},
{
"author": "ukr8b3g-cmyk",
"title": "Anima Regional Canvas",
"reference": "https://github.com/ukr8b3g-cmyk/Anima_Regional_Canvas",
"files": [
"https://github.com/ukr8b3g-cmyk/Anima_Regional_Canvas"
],
"install_type": "git-clone",
"description": "ANIMA-focused regional canvas node for Anima-LLLite Regional ControlNet workflows in ComfyUI."
},
{
"author": "bnwa",
"title": "ComfyUI Latent Presets",
"reference": "https://github.com/bnwa/ComfyUI-LatentPresets",
"files": [
"https://github.com/bnwa/ComfyUI-LatentPresets"
],
"install_type": "git-clone",
"description": "Model-scoped latent presets for ComfyUI"
},
{
"author": "bradsec",
"title": "ComfyUI_RandomPerson",
"reference": "https://github.com/bradsec/ComfyUI_RandomPerson",
"files": [
"https://github.com/bradsec/ComfyUI_RandomPerson"
],
"install_type": "git-clone",
"description": "Generate randomised, structured physical person descriptions for image-generation prompts. Sex-aware traits, per-category random/allow_list/fixed/off modes, age ranges, body details, and individual output pins. Full node plus Identity, Face, Hair, Body, and Style segment nodes under the Random Person menu category."
},
{
"author": "bradsec",
"title": "ComfyUI_OllamaUnload",
"reference": "https://github.com/bradsec/ComfyUI_OllamaUnload",
"files": [
"https://github.com/bradsec/ComfyUI_OllamaUnload"
],
"install_type": "git-clone",
"description": "Unload one or all Ollama models mid-workflow to free VRAM before image sampling. Wire your prompt through the passthrough socket so the node runs before the sampler. Node name: Ollama Unload (free VRAM). Located under Add Node > Ollama."
},
{
"author": "mooshieblob",
"title": "Mooshie Tiled Diffusion",
"reference": "https://github.com/Mooshieblob1/ComfyUI-MooshieTiledDiffusion",
"files": [
"https://github.com/Mooshieblob1/ComfyUI-MooshieTiledDiffusion"
],
"install_type": "git-clone",
"description": "MultiDiffusion and SpotDiffusion tiled diffusion for ComfyUI, with Anima (COSMOS) 5D latent support."
},
{
"author": "ethanfel",
"title": "ComfyUI-Lora-Sweeper",
"reference": "https://github.com/ethanfel/ComfyUI-Lora-Sweeper",
"files": [
"https://github.com/ethanfel/ComfyUI-Lora-Sweeper"
],
"install_type": "git-clone",
"description": "Sweep a folder of LoRA training epochs: pick a step range + stride and sample one image per epoch from a single queue."
},
{
"author": "enragedantelope",
"title": "Identity Forge",
"reference": "https://github.com/EnragedAntelope/comfyui-identity-forge",
"files": [
"https://github.com/EnragedAntelope/comfyui-identity-forge"
],
"install_type": "git-clone",
"description": "A 70+ field character randomizer node pack for ComfyUI with a constraint engine, themed archetype presets with varying costumes, and dual prose/JSON output."
},
{
"author": "bulldog68",
"title": "ComfyUI_FMJ_LLMP",
"reference": "https://github.com/bulldog68/ComfyUI_FMJ_LLMP",
"files": [
"https://github.com/bulldog68/ComfyUI_FMJ_LLMP"
],
"install_type": "git-clone",
"description": "Generate random prompts easily for FMJ using TXT files (1 prompt per file)."
},
{
"author": "cyberdelia",
"title": "Anima Resolutions",
"reference": "https://github.com/cyberdeliaAI/ComfyUI-anima-Resolutions",
"files": [
"https://github.com/cyberdeliaAI/ComfyUI-anima-Resolutions"
],
"install_type": "git-clone",
"description": "Anima-friendly first-pass resolution picker for ComfyUI. Outputs resolution, width, and height integers for image generation workflows."
},
{
"author": "monkeykim111",
"title": "comfyui-image-safety-gate",
"reference": "https://github.com/monkeykim111/ComfyUI-Image-Safety-Gate",
"files": [
"https://github.com/monkeykim111/ComfyUI-Image-Safety-Gate"
],
"install_type": "git-clone",
"description": "ComfyUI custom node combining SmilingWolf WD EVA02 Large Tagger v3 (anime rating) and CompVis stable-diffusion-safety-checker (CLIP) with boolean OR for illustration-friendly NSFW detection."
},
{
"author": "lebensignal",
"title": "ComfyUI Ultimate SD Upscale FLS LLLite",
"reference": "https://github.com/Lebensignal/ComfyUI-UltimateSDUpscale-FLS-LLLite",
"files": [
"https://github.com/Lebensignal/ComfyUI-UltimateSDUpscale-FLS-LLLite"
],
"install_type": "git-clone",
"description": "ComfyUI Ultimate SD Upscale nodes with FLS tile sampling and optional Anima LLLite tile repair."
},
{
"author": "smai-lee",
"title": "Lee-RIFE",
"reference": "https://github.com/Smai-Lee/Lee-RIFE",
"files": [
"https://github.com/Smai-Lee/Lee-RIFE"
],
"install_type": "git-clone",
"description": "Fast, GPU-batched RIFE frame interpolation for ComfyUI with working bidirectional ensemble in fp16/32. Self-contained, weights bundled, no extra dependencies."
},
{
"author": "ruminar",
"title": "ComfyUI-CheckpointHandpickerSuite",
"id": "checkpointhandpickersuite",
"reference": "https://github.com/ruminar/ComfyUI-CheckpointHandpickerSuite",
"files": [
"https://github.com/ruminar/ComfyUI-CheckpointHandpickerSuite"
],
"install_type": "git-clone",
"description": "Review-first checkpoint cycling and handpicking suite for ComfyUI. Auto-cycle checkpoints, review generated images, tag checkpoints, and export cleanup scripts without deleting files immediately."
},
{
"author": "ketle-man",
"title": "PSD Figure Creator",
"id": "psd-figure-creator",
"reference": "https://github.com/ketle-man/PSD-Figure-Creator",
"files": [
"https://github.com/ketle-man/PSD-Figure-Creator"
],
"install_type": "git-clone",
"description": "Load PSD files, rig layers with interactive R / MR / SW control points, and composite as IMAGE + MASK. Supports setup/pose modes, model/pose library, background options, and i18n (ja/en/zh)."
},
{
"author": "shootthesound",
"title": "ComfyUI-Angelo",
"reference": "https://github.com/shootthesound/ComfyUI-Angelo",
"files": [
"https://github.com/shootthesound/ComfyUI-Angelo"
],
"install_type": "git-clone",
"description": "Click-to-refine sampler. Generate, then click or paint regions to refine them in place. First-class support for FLUX 2 Klein 9B and Qwen-Image-Edit (Smart Inpaint / Smart Guided Inpaint / Xtra-Fine), works with any sampler-compatible model for Refine + Area Prompt. Optional SAM 3 Detect for text-prompted segmentation, and a companion Overrides node for custom samplers (power-sigma, Flux 2 scheduler, NAG)."
},
{
"author": "shootthesound",
"title": "ComfyUI-SequentialImageLoader",
"reference": "https://github.com/shootthesound/ComfyUI-SequentialImageLoader",
"files": [
"https://github.com/shootthesound/ComfyUI-SequentialImageLoader"
],
"install_type": "git-clone",
"description": "Load a folder of images one at a time, in order — a fresh image on every Queue. Natural sort, filetype picker, reverse, subfolders, hold/pause, scrub bar, folder browser, and current/next previews."
},
{
"author": "pooria98",
"title": "ComfyUI-Config-Presets",
"reference": "https://github.com/pooria98/ComfyUI-Config-Presets",
"files": [
"https://github.com/pooria98/ComfyUI-Config-Presets"
],
"install_type": "git-clone",
"description": "Preset nodes to save and use prompt and sampler settings presets for different models."
},
{
"author": "verqqa",
"title": "PromptNodethingLD",
"id": "promptnodethingld",
"reference": "https://github.com/verqqa/PromptNodethingLD",
"files": [
"https://github.com/verqqa/PromptNodethingLD"
],
"install_type": "git-clone",
"description": "Cinematic AI prompt node for LTX video. Three-pass pipeline: Choreography pre-pass, main generation, lint + auto-repair. Supports Windows, Linux, macOS via llama.cpp (Gemma 4 26B)."
},
{
"author": "vantang",
"title": "ComfyUI MediaHub",
"id": "mediahub-cloud",
"reference": "https://github.com/vantang/ComfyUI-MediaHub",
"files": [
"https://github.com/vantang/ComfyUI-MediaHub"
],
"install_type": "git-clone",
"description": "Connect cloud image and video generation APIs to composable ComfyUI workflows."
},
{
"author": "elowbe",
"title": "comfyui-save-text",
"reference": "https://github.com/elowbe/comfyui-save-text",
"files": [
"https://github.com/elowbe/comfyui-save-text"
],
"install_type": "git-clone",
"description": "API friendly save text to file."
},
{
"author": "hypnichorse",
"title": "ComfyUI-Hypnodes",
"id": "ComfyUI-Hypnodes",
"reference": "https://github.com/hypnichorse/ComfyUI-Hypnodes",
"files": [
"https://github.com/hypnichorse/ComfyUI-Hypnodes"
],
"install_type": "git-clone",
"description": "Procedural Multi-character framework & character library with smart-injection technology."
},
{
"author": "rookiestar28",
"title": "ComfyUI-LongCat-Avatar",
"reference": "https://github.com/rookiestar28/ComfyUI-LongCat-Avatar",
"files": [
"https://github.com/rookiestar28/ComfyUI-LongCat-Avatar"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for LongCat Video Avatar 1.5 audio-driven human video generation."
}
]
}
|