File size: 171,326 Bytes
baa8e90 |
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 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 |
{
"custom_nodes": [
{
"author": "Dr.Lt.Data",
"title": "ComfyUI-Manager",
"reference": "https://github.com/ltdrdata/ComfyUI-Manager",
"files": [
"https://github.com/ltdrdata/ComfyUI-Manager"
],
"install_type": "git-clone",
"description": "ComfyUI-Manager itself is also a custom node."
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI Impact Pack",
"reference": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
"files": [
"https://github.com/ltdrdata/ComfyUI-Impact-Pack"
],
"pip": ["ultralytics"],
"install_type": "git-clone",
"description": "This extension offers various detector nodes and detailer nodes that allow you to configure a workflow that automatically enhances facial details. And provide iterative upscaler.\n[w/NOTE:'Segs & Mask' has been renamed to 'ImpactSegsAndMask.' Please replace the node with the new name.]"
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI Inspire Pack",
"reference": "https://github.com/ltdrdata/ComfyUI-Inspire-Pack",
"nodename_pattern": "Inspire$",
"files": [
"https://github.com/ltdrdata/ComfyUI-Inspire-Pack"
],
"install_type": "git-clone",
"description": "This extension provides various nodes to support Lora Block Weight and the Impact Pack. Provides many easily applicable regional features and applications for Variation Seed."
},
{
"author": "comfyanonymous",
"title": "ComfyUI_experiments",
"reference": "https://github.com/comfyanonymous/ComfyUI_experiments",
"files": [
"https://github.com/comfyanonymous/ComfyUI_experiments"
],
"install_type": "git-clone",
"description": "Nodes: ModelSamplerTonemapNoiseTest, TonemapNoiseWithRescaleCFG, ReferenceOnlySimple, RescaleClassifierFreeGuidanceTest, ModelMergeBlockNumber, ModelMergeSDXL, ModelMergeSDXLTransformers, ModelMergeSDXLDetailedTransformers.[w/NOTE: This is a consolidation of the previously separate custom nodes. Please delete the sampler_tonemap.py, sampler_rescalecfg.py, advanced_model_merging.py, sdxl_model_merging.py, and reference_only.py files installed in custom_nodes before.]"
},
{
"author": "Stability-AI",
"title": "stability-ComfyUI-nodes",
"reference": "https://github.com/Stability-AI/stability-ComfyUI-nodes",
"files": [
"https://github.com/Stability-AI/stability-ComfyUI-nodes"
],
"install_type": "git-clone",
"description": "Nodes: ColorBlend, ControlLoraSave, GetImageSize. NOTE: Control-LoRA recolor example uses these nodes."
},
{
"author": "Fannovel16",
"title": "ComfyUI's ControlNet Auxiliary Preprocessors",
"reference": "https://github.com/Fannovel16/comfyui_controlnet_aux",
"files": [
"https://github.com/Fannovel16/comfyui_controlnet_aux"
],
"install_type": "git-clone",
"description": "This is a rework of comfyui_controlnet_preprocessors based on ControlNet auxiliary models by 🤗. I think the old repo isn't good enough to maintain. All old workflow will still be work with this repo but the version option won't do anything. Almost all v1 preprocessors are replaced by v1.1 except those doesn't appear in v1.1. [w/NOTE: Please refrain from using the controlnet preprocessor alongside this installation, as it may lead to conflicts and prevent proper recognition.]"
},
{
"author": "Fannovel16",
"title": "ComfyUI Frame Interpolation",
"reference": "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation",
"files": [
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
],
"install_type": "git-clone",
"description": "Nodes: KSampler Gradually Adding More Denoise (efficient)"
},
{
"author": "Fannovel16",
"title": "ComfyUI Loopchain",
"reference": "https://github.com/Fannovel16/ComfyUI-Loopchain",
"files": [
"https://github.com/Fannovel16/ComfyUI-Loopchain"
],
"install_type": "git-clone",
"description": "A collection of nodes which can be useful for animation in ComfyUI. The main focus of this extension is implementing a mechanism called loopchain. A loopchain in this case is the chain of nodes only executed repeatly in the workflow. If a node chain contains a loop node from this extension, it will become a loop chain."
},
{
"author": "Fannovel16",
"title": "ComfyUI MotionDiff",
"reference": "https://github.com/Fannovel16/ComfyUI-MotionDiff",
"files": [
"https://github.com/Fannovel16/ComfyUI-MotionDiff"
],
"install_type": "git-clone",
"description": "Implementation of MDM, MotionDiffuse and ReMoDiffuse into ComfyUI."
},
{
"author": "Fannovel16",
"title": "ComfyUI-Video-Matting",
"reference": "https://github.com/Fannovel16/ComfyUI-Video-Matting",
"files": [
"https://github.com/Fannovel16/ComfyUI-Video-Matting"
],
"install_type": "git-clone",
"description": "A minimalistic implementation of [a/Robust Video Matting (RVM)](https://github.com/PeterL1n/RobustVideoMatting/) in ComfyUI"
},
{
"author": "biegert",
"title": "CLIPSeg",
"reference": "https://github.com/biegert/ComfyUI-CLIPSeg",
"files": [
"https://github.com/biegert/ComfyUI-CLIPSeg/raw/main/custom_nodes/clipseg.py"
],
"install_type": "copy",
"description": "The CLIPSeg node generates a binary mask for a given input image and text prompt."
},
{
"author": "BlenderNeko",
"title": "ComfyUI Cutoff",
"reference": "https://github.com/BlenderNeko/ComfyUI_Cutoff",
"files": [
"https://github.com/BlenderNeko/ComfyUI_Cutoff"
],
"install_type": "git-clone",
"description": "These custom nodes provides features that allow for better control over the effects of the text prompt."
},
{
"author": "BlenderNeko",
"title": "Advanced CLIP Text Encode",
"reference": "https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb",
"files": [
"https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb"
],
"install_type": "git-clone",
"description": "Advanced CLIP Text Encode (if you need A1111 like prompt. you need this. But Cutoff node includes this feature, already.)"
},
{
"author": "BlenderNeko",
"title": "ComfyUI Noise",
"reference": "https://github.com/BlenderNeko/ComfyUI_Noise",
"files": [
"https://github.com/BlenderNeko/ComfyUI_Noise"
],
"install_type": "git-clone",
"description": "This extension contains 6 nodes for ComfyUI that allows for more control and flexibility over the noise."
},
{
"author": "BlenderNeko",
"title": "Tiled sampling for ComfyUI",
"reference": "https://github.com/BlenderNeko/ComfyUI_TiledKSampler",
"files": [
"https://github.com/BlenderNeko/ComfyUI_TiledKSampler"
],
"install_type": "git-clone",
"description": "This extension contains a tiled sampler for ComfyUI. It allows for denoising larger images by splitting it up into smaller tiles and denoising these. It tries to minimize any seams for showing up in the end result by gradually denoising all tiles one step at the time and randomizing tile positions for every step."
},
{
"author": "BlenderNeko",
"title": "SeeCoder [WIP]",
"reference": "https://github.com/BlenderNeko/ComfyUI_SeeCoder",
"files": [
"https://github.com/BlenderNeko/ComfyUI_SeeCoder"
],
"install_type": "git-clone",
"description": "It provides the capability to generate CLIP from an image input, unlike unCLIP, which works in all models. (To use this extension, you need to download the required model file from **Install Models**)"
},
{
"author": "jags111",
"title": "Efficiency Nodes for ComfyUI Version 2.0+",
"reference": "https://github.com/jags111/efficiency-nodes-comfyui",
"files": [
"https://github.com/jags111/efficiency-nodes-comfyui"
],
"install_type": "git-clone",
"description": "A collection of ComfyUI custom nodes to help streamline workflows and reduce total node count.[w/NOTE: This node is originally created by LucianoCirino, but the [a/original repository](https://github.com/LucianoCirino/efficiency-nodes-comfyui) is no longer maintained and has been forked by a new maintainer. To use the forked version, you should uninstall the original version and **REINSTALL** this one.]"
},
{
"author": "jags111",
"title": "ComfyUI_Jags_VectorMagic",
"reference": "https://github.com/jags111/ComfyUI_Jags_VectorMagic",
"files": [
"https://github.com/jags111/ComfyUI_Jags_VectorMagic"
],
"install_type": "git-clone",
"description": "a collection of nodes to explore Vector and image manipulation"
},
{
"author": "jags111",
"title": "ComfyUI_Jags_Audiotools",
"reference": "https://github.com/jags111/ComfyUI_Jags_Audiotools",
"files": [
"https://github.com/jags111/ComfyUI_Jags_Audiotools"
],
"install_type": "git-clone",
"description": "A collection amazing audio tools for working with audio and sound files in comfyUI"
},
{
"author": "Derfuu",
"title": "Derfuu_ComfyUI_ModdedNodes",
"reference": "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes",
"files": [
"https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes"
],
"install_type": "git-clone",
"description": "Automate calculation depending on image sizes or something you want."
},
{
"author": "paulo-coronado",
"title": "comfy_clip_blip_node",
"reference": "https://github.com/paulo-coronado/comfy_clip_blip_node",
"files": [
"https://github.com/paulo-coronado/comfy_clip_blip_node"
],
"install_type": "git-clone",
"apt_dependency": [
"rustc",
"cargo"
],
"description": "CLIPTextEncodeBLIP: This custom node provides a CLIP Encoder that is capable of receiving images as input."
},
{
"author": "Davemane42",
"title": "Visual Area Conditioning / Latent composition",
"reference": "https://github.com/Davemane42/ComfyUI_Dave_CustomNode",
"files": [
"https://github.com/Davemane42/ComfyUI_Dave_CustomNode"
],
"install_type": "git-clone",
"description": "This tool provides custom nodes that allow visualization and configuration of area conditioning and latent composite."
},
{
"author": "WASasquatch",
"title": "WAS Node Suite",
"reference": "https://github.com/WASasquatch/was-node-suite-comfyui",
"pip": ["numba"],
"files": [
"https://github.com/WASasquatch/was-node-suite-comfyui"
],
"install_type": "git-clone",
"description": "A node suite for ComfyUI with many new nodes, such as image processing, text processing, and more."
},
{
"author": "WASasquatch",
"title": "ComfyUI Preset Merger",
"reference": "https://github.com/WASasquatch/ComfyUI_Preset_Merger",
"files": [
"https://github.com/WASasquatch/ComfyUI_Preset_Merger"
],
"install_type": "git-clone",
"description": "Nodes: ModelMergeByPreset. Merge checkpoint models by preset"
},
{
"author": "WASasquatch",
"title": "PPF_Noise_ComfyUI",
"reference": "https://github.com/WASasquatch/PPF_Noise_ComfyUI",
"files": [
"https://github.com/WASasquatch/PPF_Noise_ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes: WAS_PFN_Latent. Perlin Power Fractal Noisey Latents"
},
{
"author": "WASasquatch",
"title": "Power Noise Suite for ComfyUI",
"reference": "https://github.com/WASasquatch/PowerNoiseSuite",
"files": [
"https://github.com/WASasquatch/PowerNoiseSuite"
],
"install_type": "git-clone",
"description": "Power Noise Suite contains nodes centered around latent noise input, and diffusion, as well as latent adjustments."
},
{
"author": "WASasquatch",
"title": "FreeU_Advanced",
"reference": "https://github.com/WASasquatch/FreeU_Advanced",
"files": [
"https://github.com/WASasquatch/FreeU_Advanced"
],
"install_type": "git-clone",
"description": "This custom node provides advanced settings for FreeU."
},
{
"author": "WASasquatch",
"title": "ASTERR",
"reference": "https://github.com/WASasquatch/ASTERR",
"files": [
"https://github.com/WASasquatch/ASTERR"
],
"install_type": "git-clone",
"description": "Abstract Syntax Trees Evaluated Restricted Run (ASTERR) is a Python Script executor for ComfyUI. [w/Warning:ASTERR runs Python Code from a Web Interface! It is highly recommended to run this in a closed-off environment, as it could have potential security risks.]"
},
{
"author": "WASasquatch",
"title": "WAS_Extras",
"reference": "https://github.com/WASasquatch/WAS_Extras",
"files": [
"https://github.com/WASasquatch/WAS_Extras"
],
"install_type": "git-clone",
"description": "Nodes:Conditioning (Blend), Inpainting VAE Encode (WAS), VividSharpen. Experimental nodes, or other random extra helper nodes."
},
{
"author": "omar92",
"title": "Quality of life Suit:V2",
"reference": "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92",
"files": [
"https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92"
],
"install_type": "git-clone",
"description": "openAI suite, String suite, Latent Tools, Image Tools: These custom nodes provide expanded functionality for image and string processing, latent processing, as well as the ability to interface with models such as ChatGPT/DallE-2."
},
{
"author": "lilly1987",
"title": "simple wildcard for ComfyUI",
"reference": "https://github.com/lilly1987/ComfyUI_node_Lilly",
"files": [
"https://github.com/lilly1987/ComfyUI_node_Lilly"
],
"install_type": "git-clone",
"description": "These custom nodes provides a feature to insert arbitrary inputs through wildcards in the prompt. Additionally, this tool provides features that help simplify workflows, such as VAELoaderDecoder and SimplerSample."
},
{
"author": "sylym",
"title": "Vid2vid",
"reference": "https://github.com/sylym/comfy_vid2vid",
"files": [
"https://github.com/sylym/comfy_vid2vid"
],
"install_type": "git-clone",
"description": "A node suite for ComfyUI that allows you to load image sequence and generate new image sequence with different styles or content."
},
{
"author": "EllangoK",
"title": "ComfyUI-post-processing-nodes",
"reference": "https://github.com/EllangoK/ComfyUI-post-processing-nodes",
"files": [
"https://github.com/EllangoK/ComfyUI-post-processing-nodes"
],
"install_type": "git-clone",
"description": "A collection of post processing nodes for ComfyUI, simply download this repo and drag."
},
{
"author": "LEv145",
"title": "ImagesGrid",
"reference": "https://github.com/LEv145/images-grid-comfy-plugin",
"files": [
"https://github.com/LEv145/images-grid-comfy-plugin"
],
"install_type": "git-clone",
"description": "This tool provides a viewer node that allows for checking multiple outputs in a grid, similar to the X/Y Plot extension."
},
{
"author": "diontimmer",
"title": "ComfyUI-Vextra-Nodes",
"reference": "https://github.com/diontimmer/ComfyUI-Vextra-Nodes",
"files": [
"https://github.com/diontimmer/ComfyUI-Vextra-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: Pixel Sort, Swap Color Mode, Solid Color, Glitch This, Add Text To Image, Play Sound, Prettify Prompt, Generate Noise, Flatten Colors"
},
{
"author": "hnmr293",
"title": "ComfyUI-nodes-hnmr",
"reference": "https://github.com/hnmr293/ComfyUI-nodes-hnmr",
"files": [
"https://github.com/hnmr293/ComfyUI-nodes-hnmr"
],
"install_type": "git-clone",
"description": "Provide various custom nodes for Latent, Sampling, Model, Loader, Image, Text"
},
{
"author": "BadCafeCode",
"title": "Masquerade Nodes",
"reference": "https://github.com/BadCafeCode/masquerade-nodes-comfyui",
"files": [
"https://github.com/BadCafeCode/masquerade-nodes-comfyui"
],
"install_type": "git-clone",
"description": "This is a node pack for ComfyUI, primarily dealing with masks."
},
{
"author": "guoyk93",
"title": "y.k.'s ComfyUI node suite",
"reference": "https://github.com/guoyk93/yk-node-suite-comfyui",
"files": [
"https://github.com/guoyk93/yk-node-suite-comfyui"
],
"install_type": "git-clone",
"description": "Nodes: YKImagePadForOutpaint, YKMaskToImage"
},
{
"author": "Jcd1230",
"title": "Rembg Background Removal Node for ComfyUI",
"reference": "https://github.com/Jcd1230/rembg-comfyui-node",
"files": [
"https://github.com/Jcd1230/rembg-comfyui-node"
],
"install_type": "git-clone",
"description": "Nodes: Image Remove Background (rembg)"
},
{
"author": "YinBailiang",
"title": "MergeBlockWeighted_fo_ComfyUI",
"reference": "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI",
"files": [
"https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes: MergeBlockWeighted"
},
{
"author": "trojblue",
"title": "trNodes",
"reference": "https://github.com/trojblue/trNodes",
"files": [
"https://github.com/trojblue/trNodes"
],
"install_type": "git-clone",
"description": "Nodes: image_layering, color_correction, model_router"
},
{
"author": "szhublox",
"title": "Auto-MBW",
"reference": "https://github.com/szhublox/ambw_comfyui",
"files": [
"https://github.com/szhublox/ambw_comfyui"
],
"install_type": "git-clone",
"description": "Auto-MBW for ComfyUI loosely based on sdweb-auto-MBW. Nodes: auto merge block weighted"
},
{
"author": "city96",
"title": "ComfyUI_NetDist",
"reference": "https://github.com/city96/ComfyUI_NetDist",
"files": [
"https://github.com/city96/ComfyUI_NetDist"
],
"install_type": "git-clone",
"description": "Run ComfyUI workflows on multiple local GPUs/networked machines. Nodes: Remote images, Local Remote control"
},
{
"author": "city96",
"title": "Latent-Interposer",
"reference": "https://github.com/city96/SD-Latent-Interposer",
"files": [
"https://github.com/city96/SD-Latent-Interposer"
],
"install_type": "git-clone",
"description": "Custom node to convert the lantents between SDXL and SD v1.5 directly without the VAE decoding/encoding step."
},
{
"author": "city96",
"title": "SD-Advanced-Noise",
"reference": "https://github.com/city96/SD-Advanced-Noise",
"files": [
"https://github.com/city96/SD-Advanced-Noise"
],
"install_type": "git-clone",
"description": "Nodes: LatentGaussianNoise, MathEncode. An experimental custom node that generates latent noise directly by utilizing the linear characteristics of the latent space."
},
{
"author": "city96",
"title": "SD-Latent-Upscaler",
"reference": "https://github.com/city96/SD-Latent-Upscaler",
"files": [
"https://github.com/city96/SD-Latent-Upscaler"
],
"pip": ["huggingface-hub"],
"install_type": "git-clone",
"description": "Upscaling stable diffusion latents using a small neural network."
},
{
"author": "city96",
"title": "ComfyUI_DiT [WIP]",
"reference": "https://github.com/city96/ComfyUI_DiT",
"files": [
"https://github.com/city96/ComfyUI_DiT"
],
"pip": ["huggingface-hub"],
"install_type": "git-clone",
"description": "Testbed for [a/DiT(Scalable Diffusion Models with Transformers)](https://github.com/facebookresearch/DiT). [w/None of this code is stable, expect breaking changes if for some reason you want to use this.]"
},
{
"author": "city96",
"title": "ComfyUI_ColorMod",
"reference": "https://github.com/city96/ComfyUI_ColorMod",
"files": [
"https://github.com/city96/ComfyUI_ColorMod"
],
"install_type": "git-clone",
"description": "This extension currently has two sets of nodes - one set for editing the contrast/color of images and another set for saving images as 16 bit PNG files."
},
{
"author": "city96",
"title": "Extra Models for ComfyUI",
"reference": "https://github.com/city96/ComfyUI_ExtraModels",
"files": [
"https://github.com/city96/ComfyUI_ExtraModels"
],
"install_type": "git-clone",
"description": "This extension aims to add support for various random image diffusion models to ComfyUI."
},
{
"author": "Kaharos94",
"title": "ComfyUI-Saveaswebp",
"reference": "https://github.com/Kaharos94/ComfyUI-Saveaswebp",
"files": [
"https://github.com/Kaharos94/ComfyUI-Saveaswebp"
],
"install_type": "git-clone",
"description": "Save a picture as Webp file in Comfy + Workflow loading"
},
{
"author": "SLAPaper",
"title": "ComfyUI-Image-Selector",
"reference": "https://github.com/SLAPaper/ComfyUI-Image-Selector",
"files": [
"https://github.com/SLAPaper/ComfyUI-Image-Selector"
],
"install_type": "git-clone",
"description": "A custom node for ComfyUI, which can select one or some of images from a batch."
},
{
"author": "flyingshutter",
"title": "As_ComfyUI_CustomNodes",
"reference": "https://github.com/flyingshutter/As_ComfyUI_CustomNodes",
"files": [
"https://github.com/flyingshutter/As_ComfyUI_CustomNodes"
],
"install_type": "git-clone",
"description": "Manipulation nodes for Image, Latent"
},
{
"author": "Zuellni",
"title": "Zuellni/ComfyUI-Custom-Nodes",
"reference": "https://github.com/Zuellni/ComfyUI-Custom-Nodes",
"files": [
"https://github.com/Zuellni/ComfyUI-Custom-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: DeepFloyd, Filter, Select, Save, Decode, Encode, Repeat, Noise, Noise"
},
{
"author": "Zuellni",
"title": "ComfyUI-ExLlama",
"reference": "https://github.com/Zuellni/ComfyUI-ExLlama",
"files": [
"https://github.com/Zuellni/ComfyUI-ExLlama"
],
"pip": ["sentencepiece", "https://github.com/jllllll/exllama/releases/download/0.0.17/exllama-0.0.17+cu118-cp310-cp310-win_amd64.whl"],
"install_type": "git-clone",
"description": "Nodes: ExLlama Loader, ExLlama Generator.\nUsed to load 4-bit GPTQ Llama/2 models. You can find a lot of them over at [a/https://huggingface.co/TheBloke](https://huggingface.co/TheBloke)[w/NOTE: You need to manually install a pip package that suits your system. For example. If your system is 'Python3.10 + Windows + CUDA 11.8' then you need to install 'exllama-0.0.17+cu118-cp310-cp310-win_amd64.whl'. Available package files are [a/here](https://github.com/jllllll/exllama/releases)]"
},
{
"author": "Zuellni",
"title": "ComfyUI PickScore Nodes",
"reference": "https://github.com/Zuellni/ComfyUI-PickScore-Nodes",
"files": [
"https://github.com/Zuellni/ComfyUI-PickScore-Nodes"
],
"install_type": "git-clone",
"description": "Image scoring nodes for ComfyUI using PickScore with a batch of images to predict which ones fit a given prompt the best."
},
{
"author": "AlekPet",
"title": "AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"reference": "https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet",
"files": [
"https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet"
],
"install_type": "git-clone",
"description": "Nodes: PoseNode, TranslateCLIPTextEncodeNode"
},
{
"author": "pythongosssss",
"title": "ComfyUI WD 1.4 Tagger",
"reference": "https://github.com/pythongosssss/ComfyUI-WD14-Tagger",
"files": [
"https://github.com/pythongosssss/ComfyUI-WD14-Tagger"
],
"install_type": "git-clone",
"description": "A ComfyUI extension allowing the interrogation of booru tags from images."
},
{
"author": "pythongosssss",
"title": "pythongosssss/ComfyUI-Custom-Scripts",
"reference": "https://github.com/pythongosssss/ComfyUI-Custom-Scripts",
"files": [
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
],
"install_type": "git-clone",
"description": "This extension provides: Auto Arrange Graph, Workflow SVG, Favicon Status, Image Feed, Latent Upscale By, Lock Nodes & Groups, Lora Subfolders, Preset Text, Show Text, Touch Support, Link Render Mode, Locking, Node Finder, Quick Nodes, Show Image On Menu, Show Text, Workflow Managements, Custom Widget Default Values"
},
{
"author": "strimmlarn",
"title": "ComfyUI_Strimmlarns_aesthetic_score",
"reference": "https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score",
"js_path": "strimmlarn",
"files": [
"https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score"
],
"install_type": "git-clone",
"description": "Nodes: CalculateAestheticScore, LoadAesteticModel, AesthetlcScoreSorter, ScoreToNumber"
},
{
"author": "tinyterra",
"title": "tinyterraNodes",
"reference": "https://github.com/tinyterra/ComfyUI_tinyterraNodes",
"files": [
"https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
],
"install_type": "git-clone",
"nodename_pattern": "^ttN ",
"description": "This extension offers various pipe nodes, fullscreen image viewer based on node history, dynamic widgets, interface customization, and more."
},
{
"author": "Jordach",
"title": "comfy-plasma",
"reference": "https://github.com/Jordach/comfy-plasma",
"files": [
"https://github.com/Jordach/comfy-plasma"
],
"install_type": "git-clone",
"description": "Nodes: Plasma Noise, Random Noise, Greyscale Noise, Pink Noise, Brown Noise, Plasma KSampler"
},
{
"author": "bvhari",
"title": "ImageProcessing",
"reference": "https://github.com/bvhari/ComfyUI_ImageProcessing",
"files": [
"https://github.com/bvhari/ComfyUI_ImageProcessing"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes to apply various image processing techniques."
},
{
"author": "bvhari",
"title": "LatentToRGB",
"reference": "https://github.com/bvhari/ComfyUI_LatentToRGB",
"files": [
"https://github.com/bvhari/ComfyUI_LatentToRGB"
],
"install_type": "git-clone",
"description": "ComfyUI custom node to convert latent to RGB."
},
{
"author": "bvhari",
"title": "ComfyUI_PerpNeg [WIP]",
"reference": "https://github.com/bvhari/ComfyUI_PerpNeg",
"files": [
"https://github.com/bvhari/ComfyUI_PerpNeg"
],
"install_type": "git-clone",
"description": "Nodes: KSampler (Advanced + Perp-Neg). Implementation of [a/Perp-Neg](https://perp-neg.github.io/)\nIncludes Tonemap and CFG Rescale optionsComfyUI custom node to convert latent to RGB.[w/WARNING: Experimental code, might have incompatibilities and edge cases.]"
},
{
"author": "bvhari",
"title": "ComfyUI_PerpWeight",
"reference": "https://github.com/bvhari/ComfyUI_PerpWeight",
"files": [
"https://github.com/bvhari/ComfyUI_PerpWeight"
],
"install_type": "git-clone",
"description": "A novel weighting scheme for token vectors from CLIP. Allows a wider range of values for the weight. Inspired by Perp-Neg."
},
{
"author": "ssitu",
"title": "UltimateSDUpscale",
"reference": "https://github.com/ssitu/ComfyUI_UltimateSDUpscale",
"files": [
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for the Ultimate Stable Diffusion Upscale script by Coyote-A."
},
{
"author": "ssitu",
"title": "NestedNodeBuilder",
"reference": "https://github.com/ssitu/ComfyUI_NestedNodeBuilder",
"files": [
"https://github.com/ssitu/ComfyUI_NestedNodeBuilder"
],
"install_type": "git-clone",
"description": "This extension provides the ability to combine multiple nodes into a single node."
},
{
"author": "ssitu",
"title": "Restart Sampling",
"reference": "https://github.com/ssitu/ComfyUI_restart_sampling",
"files": [
"https://github.com/ssitu/ComfyUI_restart_sampling"
],
"install_type": "git-clone",
"description": "Unofficial ComfyUI nodes for restart sampling based on the paper 'Restart Sampling for Improving Generative Processes' ([a/paper](https://arxiv.org/abs/2306.14878), [a/repo](https://github.com/Newbeeer/diffusion_restart_sampling))"
},
{
"author": "ssitu",
"title": "ComfyUI roop",
"reference": "https://github.com/ssitu/ComfyUI_roop",
"files": [
"https://github.com/ssitu/ComfyUI_roop"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for the roop A1111 webui script."
},
{
"author": "ssitu",
"title": "ComfyUI fabric",
"reference": "https://github.com/ssitu/ComfyUI_fabric",
"files": [
"https://github.com/ssitu/ComfyUI_fabric"
],
"install_type": "git-clone",
"description": "ComfyUI nodes based on the paper [a/FABRIC: Personalizing Diffusion Models with Iterative Feedback](https://arxiv.org/abs/2307.10159) (Feedback via Attention-Based Reference Image Conditioning)"
},
{
"author": "space-nuko",
"title": "Disco Diffusion",
"reference": "https://github.com/space-nuko/ComfyUI-Disco-Diffusion",
"files": [
"https://github.com/space-nuko/ComfyUI-Disco-Diffusion"
],
"install_type": "git-clone",
"description": "Modularized version of Disco Diffusion for use with ComfyUI."
},
{
"author": "space-nuko",
"title": "OpenPose Editor",
"reference": "https://github.com/space-nuko/ComfyUI-OpenPose-Editor",
"files": [
"https://github.com/space-nuko/ComfyUI-OpenPose-Editor"
],
"install_type": "git-clone",
"description": "A port of the openpose-editor extension for stable-diffusion-webui. NOTE: Requires [a/this ComfyUI patch](https://github.com/comfyanonymous/ComfyUI/pull/711) to work correctly"
},
{
"author": "space-nuko",
"title": "nui suite",
"reference": "https://github.com/space-nuko/nui-suite",
"files": [
"https://github.com/space-nuko/nui-suite"
],
"install_type": "git-clone",
"description": "NODES: Dynamic Prompts Text Encode, Feeling Lucky Text Encode, Output String"
},
{
"author": "Nourepide",
"title": "Allor Plugin",
"reference": "https://github.com/Nourepide/ComfyUI-Allor",
"files": [
"https://github.com/Nourepide/ComfyUI-Allor"
],
"install_type": "git-clone",
"description": "Allor is a plugin for ComfyUI with an emphasis on transparency and performance.\n[w/NOTE: If you do not disable the default node override feature in the settings, the built-in nodes, namely ImageScale and ImageScaleBy nodes, will be disabled. (ref: [a/Configutation](https://github.com/Nourepide/ComfyUI-Allor#configuration))]"
},
{
"author": "melMass",
"title": "MTB Nodes",
"reference": "https://github.com/melMass/comfy_mtb",
"files": [
"https://github.com/melMass/comfy_mtb"
],
"nodename_pattern": "\\(mtb\\)$",
"install_type": "git-clone",
"description": "NODES: Face Swap, Film Interpolation, Latent Lerp, Int To Number, Bounding Box, Crop, Uncrop, ImageBlur, Denoise, ImageCompare, RGV to HSV, HSV to RGB, Color Correct, Modulo, Deglaze Image, Smart Step, ..."
},
{
"author": "xXAdonesXx",
"title": "NodeGPT",
"reference": "https://github.com/xXAdonesXx/NodeGPT",
"files": [
"https://github.com/xXAdonesXx/NodeGPT"
],
"install_type": "git-clone",
"description": "Implementation of AutoGen inside ComfyUI. This repository is under development, and not everything is functioning correctly yet."
},
{
"author": "Suzie1",
"title": "ComfyUI_Comfyroll_CustomNodes",
"reference": "https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes",
"files": [
"https://github.com/RockOfFire/ComfyUI_Comfyroll_CustomNodes"
],
"install_type": "git-clone",
"description": "Custom nodes for SDXL and SD1.5 including Multi-ControlNet, LoRA, Aspect Ratio, Process Switches, and many more nodes. NOTE: Maintainer is changed to Suzie1 from RockOfFire."
},
{
"author": "bmad4ever",
"title": "ComfyUI-Bmad-DirtyUndoRedo",
"reference": "https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo",
"files": [
"https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo"
],
"install_type": "git-clone",
"description": "ComfyUI extension that adds undo (and redo) functionality."
},
{
"author": "bmad4ever",
"title": "Bmad Nodes",
"reference": "https://github.com/bmad4ever/comfyui_bmad_nodes",
"files": [
"https://github.com/bmad4ever/comfyui_bmad_nodes"
],
"install_type": "git-clone",
"description": "This custom node offers the following functionalities: API support for setting up API requests, computer vision primarily for masking or collages, and general utility to streamline workflow setup or implement essential missing features."
},
{
"author": "bmad4ever",
"title": "comfyui_ab_sampler",
"reference": "https://github.com/bmad4ever/comfyui_ab_samplercustom",
"files": [
"https://github.com/bmad4ever/comfyui_ab_samplercustom"
],
"install_type": "git-clone",
"description": "Experimental sampler node. Sampling alternates between A and B inputs until only one remains, starting with A. B steps run over a 2x2 grid, where 3/4's of the grid are copies of the original input latent. When the optional mask is used, the region outside the defined roi is copied from the original latent at the end of every step."
},
{
"author": "FizzleDorf",
"title": "FizzNodes",
"reference": "https://github.com/FizzleDorf/ComfyUI_FizzNodes",
"files": [
"https://github.com/FizzleDorf/ComfyUI_FizzNodes"
],
"install_type": "git-clone",
"description": "Scheduled prompts, scheduled float/int values and wave function nodes for animations and utility. compatable with [a/framesync](https://www.framesync.xyz/) and [a/keyframe-string-generator](https://www.chigozie.co.uk/keyframe-string-generator/) for audio synced animations in Comfyui."
},
{
"author": "FizzleDorf",
"title": "ComfyUI-AIT",
"reference": "https://github.com/FizzleDorf/ComfyUI-AIT",
"files": [
"https://github.com/FizzleDorf/ComfyUI-AIT"
],
"install_type": "git-clone",
"description": "A ComfyUI implementation of Facebook Meta's [a/AITemplate](https://github.com/facebookincubator/AITemplate) repo for faster inference using cpp/cuda. This new repo is behind the old version but is a much more stable foundation to keep AIT online. Please be patient as the repo will eventually include the same features as before.\nNOTE: You can find the old AIT extension in the legacy channel."
},
{
"author": "filipemeneses",
"title": "Pixelization",
"reference": "https://github.com/filipemeneses/comfy_pixelization",
"files": [
"https://github.com/filipemeneses/comfy_pixelization"
],
"install_type": "git-clone",
"description": "ComfyUI node that pixelizes images."
},
{
"author": "shiimizu",
"title": "smZNodes",
"reference": "https://github.com/shiimizu/ComfyUI_smZNodes",
"files": [
"https://github.com/shiimizu/ComfyUI_smZNodes"
],
"install_type": "git-clone",
"description": "NODES: CLIP Text Encode++. Achieve identical embeddings from stable-diffusion-webui for ComfyUI."
},
{
"author": "ZaneA",
"title": "ImageReward",
"reference": "https://github.com/ZaneA/ComfyUI-ImageReward",
"files": [
"https://github.com/ZaneA/ComfyUI-ImageReward"
],
"install_type": "git-clone",
"description": "NODES: ImageRewardLoader, ImageRewardScore"
},
{
"author": "SeargeDP",
"title": "SeargeSDXL",
"reference": "https://github.com/SeargeDP/SeargeSDXL",
"files": [
"https://github.com/SeargeDP/SeargeSDXL"
],
"install_type": "git-clone",
"description": "Custom nodes for easier use of SDXL in ComfyUI including an img2img workflow that utilizes both the base and refiner checkpoints."
},
{
"author": "cubiq",
"title": "Simple Math",
"reference": "https://github.com/cubiq/ComfyUI_SimpleMath",
"files": [
"https://github.com/cubiq/ComfyUI_SimpleMath"
],
"install_type": "git-clone",
"description": "custom node for ComfyUI to perform simple math operations"
},
{
"author": "cubiq",
"title": "ComfyUI_IPAdapter_plus",
"reference": "https://github.com/cubiq/ComfyUI_IPAdapter_plus",
"files": [
"https://github.com/cubiq/ComfyUI_IPAdapter_plus"
],
"install_type": "git-clone",
"description": "ComfyUI reference implementation for IPAdapter models. The code is mostly taken from the original IPAdapter repository and laksjdjf's implementation, all credit goes to them. I just made the extension closer to ComfyUI philosophy."
},
{
"author": "shockz0rz",
"title": "InterpolateEverything",
"reference": "https://github.com/shockz0rz/ComfyUI_InterpolateEverything",
"files": [
"https://github.com/shockz0rz/ComfyUI_InterpolateEverything"
],
"install_type": "git-clone",
"description": "Nodes: Interpolate Poses, Interpolate Lineart, ... Custom nodes for interpolating between, well, everything in the Stable Diffusion ComfyUI."
},
{
"author": "yolanother",
"title": "Comfy UI Prompt Agent",
"reference": "https://github.com/yolanother/DTAIComfyPromptAgent",
"files": [
"https://github.com/yolanother/DTAIComfyPromptAgent"
],
"install_type": "git-clone",
"description": "Nodes: Prompt Agent, Prompt Agent (String). This script provides a prompt agent node for the Comfy UI stable diffusion client."
},
{
"author": "yolanother",
"title": "Image to Text Node",
"reference": "https://github.com/yolanother/DTAIImageToTextNode",
"files": [
"https://github.com/yolanother/DTAIImageToTextNode"
],
"install_type": "git-clone",
"description": "Nodes: Image URL to Text, Image to Text."
},
{
"author": "yolanother",
"title": "Comfy UI Online Loaders",
"reference": "https://github.com/yolanother/DTAIComfyLoaders",
"files": [
"https://github.com/yolanother/DTAIComfyLoaders"
],
"install_type": "git-clone",
"description": "Nodes: Submit Image (Parameters), Submit Image. A collection of loaders that use a shared common online data source rather than relying on the files to be present locally."
},
{
"author": "yolanother",
"title": "Comfy AI DoubTech.ai Image Sumission Node",
"reference": "https://github.com/yolanother/DTAIComfyImageSubmit",
"files": [
"https://github.com/yolanother/DTAIComfyImageSubmit"
],
"install_type": "git-clone",
"description": "A ComfyAI submit node to upload images to DoubTech.ai"
},
{
"author": "yolanother",
"title": "Comfy UI QR Codes",
"reference": "https://github.com/yolanother/DTAIComfyQRCodes",
"files": [
"https://github.com/yolanother/DTAIComfyQRCodes"
],
"install_type": "git-clone",
"description": "This extension introduces QR code nodes for the Comfy UI stable diffusion client. NOTE: ComfyUI qrcode extension required."
},
{
"author": "yolanother",
"title": "Variables for Comfy UI",
"reference": "https://github.com/yolanother/DTAIComfyVariables",
"files": [
"https://github.com/yolanother/DTAIComfyVariables"
],
"install_type": "git-clone",
"description": "Nodes: String, Int, Float, Short String, CLIP Text Encode (With Variables), String Format, Short String Format. This extension introduces quality of life improvements by providing variable nodes and shared global variables."
},
{
"author": "sipherxyz",
"title": "comfyui-art-venture",
"reference": "https://github.com/sipherxyz/comfyui-art-venture",
"files": [
"https://github.com/sipherxyz/comfyui-art-venture"
],
"install_type": "git-clone",
"description": "Nodes: ImagesConcat, LoadImageFromUrl, AV_UploadImage"
},
{
"author": "SOELexicon",
"title": "LexMSDBNodes",
"reference": "https://github.com/SOELexicon/ComfyUI-LexMSDBNodes",
"files": [
"https://github.com/SOELexicon/ComfyUI-LexMSDBNodes"
],
"install_type": "git-clone",
"description": "Nodes: MSSqlTableNode, MSSqlSelectNode. This extension provides custom nodes to interact with MSSQL."
},
{
"author": "pants007",
"title": "pants",
"reference": "https://github.com/pants007/comfy-pants",
"files": [
"https://github.com/pants007/comfy-pants"
],
"install_type": "git-clone",
"description": "Nodes: Make Square Node, Interrogate Node, TextEncodeAIO"
},
{
"author": "evanspearman",
"title": "ComfyMath",
"reference": "https://github.com/evanspearman/ComfyMath",
"files": [
"https://github.com/evanspearman/ComfyMath"
],
"install_type": "git-clone",
"description": "Provides Math Nodes for ComfyUI. Boolean Logic, Integer Arithmetic, Floating Point Arithmetic and Functions, Vec2, Vec3, and Vec4 Arithmetic and Functions"
},
{
"author": "civitai",
"title": "comfy-nodes",
"reference": "https://github.com/civitai/comfy-nodes",
"files": [
"https://github.com/civitai/comfy-nodes"
],
"install_type": "git-clone",
"description": "Nodes: CivitAI_Loaders. Load Checkpoints, and LORA models directly from CivitAI API."
},
{
"author": "andersxa",
"title": "CLIP Directional Prompt Attention",
"reference": "https://github.com/andersxa/comfyui-PromptAttention",
"files": [
"https://github.com/andersxa/comfyui-PromptAttention"
],
"pip": ["scikit-learn", "matplotlib"],
"install_type": "git-clone",
"description": "Nodes: CLIP Directional Prompt Attention Encode. Direction prompt attention tries to solve the problem of contextual words (or parts of the prompt) having an effect on much later or irrelevant parts of the prompt."
},
{
"author": "ArtVentureX",
"title": "AnimateDiff",
"reference": "https://github.com/ArtVentureX/comfyui-animatediff",
"pip": ["flash_attn"],
"files": [
"https://github.com/ArtVentureX/comfyui-animatediff"
],
"install_type": "git-clone",
"description": "AnimateDiff integration for ComfyUI, adapts from sd-webui-animatediff.\n[w/You only need to download one of [a/mm_sd_v14.ckpt](https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v14.ckpt) | [a/mm_sd_v15.ckpt](https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt). Put the model weights under %%ComfyUI/custom_nodes/comfyui-animatediff/models%%. DO NOT change model filename.]"
},
{
"author": "twri",
"title": "SDXL Prompt Styler",
"reference": "https://github.com/twri/sdxl_prompt_styler",
"files": [
"https://github.com/twri/sdxl_prompt_styler"
],
"install_type": "git-clone",
"description": "SDXL Prompt Styler is a node that enables you to style prompts based on predefined templates stored in a JSON file."
},
{
"author": "wolfden",
"title": "SDXL Prompt Styler (customized version by wolfden)",
"reference": "https://github.com/wolfden/ComfyUi_PromptStylers",
"files": [
"https://github.com/wolfden/ComfyUi_PromptStylers"
],
"install_type": "git-clone",
"description": "These custom nodes provide a variety of customized prompt stylers based on [a/twri/SDXL Prompt Styler](https://github.com/twri/sdxl_prompt_styler)."
},
{
"author": "wolfden",
"title": "ComfyUi_String_Function_Tree",
"reference": "https://github.com/wolfden/ComfyUi_String_Function_Tree",
"files": [
"https://github.com/wolfden/ComfyUi_String_Function_Tree"
],
"install_type": "git-clone",
"description": "This custom node provides the capability to manipulate multiple string inputs."
},
{
"author": "daxthin",
"title": "DZ-FaceDetailer",
"reference": "https://github.com/daxthin/DZ-FaceDetailer",
"files": [
"https://github.com/daxthin/DZ-FaceDetailer"
],
"install_type": "git-clone",
"description": "Face Detailer is a custom node for the 'ComfyUI' framework inspired by !After Detailer extension from auto1111, it allows you to detect faces using Mediapipe and YOLOv8n to create masks for the detected faces."
},
{
"author": "asagi4",
"title": "ComfyUI prompt control",
"reference": "https://github.com/asagi4/comfyui-prompt-control",
"files": [
"https://github.com/asagi4/comfyui-prompt-control"
],
"install_type": "git-clone",
"description": "Nodes for convenient prompt editing. The aim is to make basic generations in ComfyUI completely prompt-controllable."
},
{
"author": "asagi4",
"title": "ComfyUI-CADS",
"reference": "https://github.com/asagi4/ComfyUI-CADS",
"files": [
"https://github.com/asagi4/ComfyUI-CADS"
],
"install_type": "git-clone",
"description": "Attempts to implement [a/CADS](https://arxiv.org/abs/2310.17347) for ComfyUI. Credit also to the [a/A1111 implementation](https://github.com/v0xie/sd-webui-cads/tree/main) that I used as a reference."
},
{
"author": "asagi4",
"title": "asagi4/comfyui-utility-nodes",
"reference": "https://github.com/asagi4/comfyui-utility-nodes",
"files": [
"https://github.com/asagi4/comfyui-utility-nodes"
],
"install_type": "git-clone",
"description": "Nodes:MUJinjaRender, MUSimpleWildcard"
},
{
"author": "jamesWalker55",
"title": "ComfyUI - P2LDGAN Node",
"reference": "https://github.com/jamesWalker55/comfyui-p2ldgan",
"files": [
"https://github.com/jamesWalker55/comfyui-p2ldgan"
],
"install_type": "git-clone",
"description": "Nodes: P2LDGAN. This integrates P2LDGAN into ComfyUI. P2LDGAN extracts lineart from input images.\n[w/To use this extension, you need to download the [a/p2ldgan model](https://drive.google.com/file/d/1To4V_Btc3QhCLBWZ0PdSNgC1cbm3isHP) and save it in the %%ComfyUI/custom_nodes/comfyui-p2ldgan/checkpoints%% directory.]"
},
{
"author": "jamesWalker55",
"title": "Various ComfyUI Nodes by Type",
"reference": "https://github.com/jamesWalker55/comfyui-various",
"files": [
"https://github.com/jamesWalker55/comfyui-various"
],
"nodename_pattern": "^JW",
"install_type": "git-clone",
"description": "Nodes: JWInteger, JWFloat, JWString, JWImageLoadRGB, JWImageResize, ..."
},
{
"author": "adieyal",
"title": "DynamicPrompts Custom Nodes",
"reference": "https://github.com/adieyal/comfyui-dynamicprompts",
"files": [
"https://github.com/adieyal/comfyui-dynamicprompts"
],
"install_type": "git-clone",
"description": "Nodes: Random Prompts, Combinatorial Prompts, I'm Feeling Lucky, Magic Prompt, Jinja2 Templates. ComfyUI-DynamicPrompts is a custom nodes library that integrates into your existing ComfyUI Library. It provides nodes that enable the use of Dynamic Prompts in your ComfyUI."
},
{
"author": "mihaiiancu",
"title": "mihaiiancu/Inpaint",
"reference": "https://github.com/mihaiiancu/ComfyUI_Inpaint",
"files": [
"https://github.com/mihaiiancu/ComfyUI_Inpaint"
],
"install_type": "git-clone",
"description": "Nodes: InpaintMediapipe. This node provides a simple interface to inpaint."
},
{
"author": "kwaroran",
"title": "abg-comfyui",
"reference": "https://github.com/kwaroran/abg-comfyui",
"files": [
"https://github.com/kwaroran/abg-comfyui"
],
"install_type": "git-clone",
"description": "Nodes: Remove Image Background (abg). A Anime Background Remover node for comfyui, based on this hf space, works same as AGB extention in automatic1111."
},
{
"author": "bash-j",
"title": "Mikey Nodes",
"reference": "https://github.com/bash-j/mikey_nodes",
"files": [
"https://github.com/bash-j/mikey_nodes"
],
"install_type": "git-clone",
"description": "Nodes: Prompt With Style, Prompt With SDXL, Resize Image for SDXL, Save Image With Prompt Data, HaldCLUT, Empty Latent Ratio Select/Custom SDXL"
},
{
"author": "failfa.st",
"title": "failfast-comfyui-extensions",
"reference": "https://github.com/failfa-st/failfast-comfyui-extensions",
"files": [
"https://github.com/failfa-st/failfast-comfyui-extensions"
],
"install_type": "git-clone",
"description": "node color customization, custom colors, dot reroutes, link rendering options, straight lines, group freezing, node pinning, automated arrangement of nodes, copy image"
},
{
"author": "Pfaeff",
"title": "pfaeff-comfyui",
"reference": "https://github.com/Pfaeff/pfaeff-comfyui",
"files": [
"https://github.com/Pfaeff/pfaeff-comfyui"
],
"install_type": "git-clone",
"description": "Nodes: AstropulsePixelDetector, BackgroundRemover, ImagePadForBetterOutpaint, InpaintingPipelineLoader, Inpainting, ..."
},
{
"author": "wallish77",
"title": "wlsh_nodes",
"reference": "https://github.com/wallish77/wlsh_nodes",
"files": [
"https://github.com/wallish77/wlsh_nodes"
],
"install_type": "git-clone",
"description": "Nodes: Checkpoint Loader with Name, Save Prompt Info, Outpaint to Image, CLIP Positive-Negative, SDXL Quick Empty Latent, Empty Latent by Ratio, Time String, SDXL Steps, SDXL Resolutions ..."
},
{
"author": "Kosinkadink",
"title": "ComfyUI-Advanced-ControlNet",
"reference": "https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet",
"files": [
"https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet"
],
"install_type": "git-clone",
"description": "Nodes: ControlNetLoaderAdvanced, DiffControlNetLoaderAdvanced, ScaledSoftControlNetWeights, SoftControlNetWeights, CustomControlNetWeights, SoftT2IAdapterWeights, CustomT2IAdapterWeights"
},
{
"author": "Kosinkadink",
"title": "AnimateDiff Evolved",
"reference": "https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved",
"files": [
"https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved"
],
"install_type": "git-clone",
"description": "A forked repository that actively maintains [a/AnimateDiff](https://github.com/ArtVentureX/comfyui-animatediff), created by ArtVentureX.\n\nImproved AnimateDiff integration for ComfyUI, adapts from sd-webui-animatediff.\n[w/Download one or more motion models from [a/Original Models](https://huggingface.co/guoyww/animatediff/tree/main) | [a/Finetuned Models](https://huggingface.co/manshoety/AD_Stabilized_Motion/tree/main). See README for additional model links and usage. Put the model weights under %%ComfyUI/custom_nodes/ComfyUI-AnimateDiff-Evolved/models%%. You are free to rename the models, but keeping original names will ease use when sharing your workflow.]"
},
{
"author": "Kosinkadink",
"title": "ComfyUI-VideoHelperSuite",
"reference": "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite",
"files": [
"https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
],
"install_type": "git-clone",
"description": "Nodes: VHS_VideoCombine. Nodes related to video workflows"
},
{
"author": "Gourieff",
"title": "ReActor Node for ComfyUI",
"reference": "https://github.com/Gourieff/comfyui-reactor-node",
"files": [
"https://github.com/Gourieff/comfyui-reactor-node"
],
"install_type": "git-clone",
"description": "The Fast and Simple 'roop-like' Face Swap Extension Node for ComfyUI, based on ReActor (ex Roop-GE) SD-WebUI Face Swap Extension"
},
{
"author": "imb101",
"title": "FaceSwap",
"reference": "https://github.com/imb101/ComfyUI-FaceSwap",
"files": [
"https://github.com/imb101/ComfyUI-FaceSwap"
],
"install_type": "git-clone",
"description": "Nodes:FaceSwapNode. Very basic custom node to enable face swapping in ComfyUI. (roop)"
},
{
"author": "Chaoses-Ib",
"title": "ComfyUI_Ib_CustomNodes",
"reference": "https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes",
"files": [
"https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes"
],
"install_type": "git-clone",
"description": "Nodes: LoadImageFromPath. Load Image From Path loads the image from the source path and does not have such problems."
},
{
"author": "AIrjen",
"title": "One Button Prompt",
"reference": "https://github.com/AIrjen/OneButtonPrompt",
"files": [
"https://github.com/AIrjen/OneButtonPrompt"
],
"install_type": "git-clone",
"description": "One Button Prompt has a prompt generation node for beginners who have problems writing a good prompt, or advanced users who want to get inspired. It generates an entire prompt from scratch. It is random, but controlled. You simply load up the script and press generate, and let it surprise you."
},
{
"author": "coreyryanhanson",
"title": "ComfyQR",
"reference": "https://github.com/coreyryanhanson/ComfyQR",
"files": [
"https://github.com/coreyryanhanson/ComfyQR"
],
"install_type": "git-clone",
"description": "QR generation within ComfyUI. Contains nodes suitable for workflows from generating basic QR images to techniques with advanced QR masking."
},
{
"author": "coreyryanhanson",
"title": "ComfyQR-scanning-nodes",
"reference": "https://github.com/coreyryanhanson/ComfyQR-scanning-nodes",
"files": [
"https://github.com/coreyryanhanson/ComfyQR-scanning-nodes"
],
"install_type": "git-clone",
"description": "A set of ComfyUI nodes to quickly test generated QR codes for scannability. A companion project to ComfyQR."
},
{
"author": "dimtoneff",
"title": "ComfyUI PixelArt Detector",
"reference": "https://github.com/dimtoneff/ComfyUI-PixelArt-Detector",
"files": [
"https://github.com/dimtoneff/ComfyUI-PixelArt-Detector"
],
"install_type": "git-clone",
"description": "This node manipulates the pixel art image in ways that it should look pixel perfect (downscales, changes palette, upscales etc.)."
},
{
"author": "dimtoneff",
"title": "Eagle PNGInfo",
"reference": "https://github.com/hylarucoder/ComfyUI-Eagle-PNGInfo",
"files": [
"https://github.com/hylarucoder/ComfyUI-Eagle-PNGInfo"
],
"install_type": "git-clone",
"description": "Nodes: EagleImageNode"
},
{
"author": "theUpsider",
"title": "Styles CSV Loader Extension for ComfyUI",
"reference": "https://github.com/theUpsider/ComfyUI-Styles_CSV_Loader",
"files": [
"https://github.com/theUpsider/ComfyUI-Styles_CSV_Loader"
],
"install_type": "git-clone",
"description": "This extension allows users to load styles from a CSV file, primarily for migration purposes from the automatic1111 Stable Diffusion web UI."
},
{
"author": "M1kep",
"title": "Comfy_KepListStuff",
"reference": "https://github.com/M1kep/Comfy_KepListStuff",
"files": [
"https://github.com/M1kep/Comfy_KepListStuff"
],
"install_type": "git-clone",
"description": "Nodes: Range(Step), Range(Num Steps), List Length, Image Overlay, Stack Images, Empty Images, Join Image Lists, Join Float Lists. This extension provides various list manipulation nodes"
},
{
"author": "M1kep",
"title": "ComfyLiterals",
"reference": "https://github.com/M1kep/ComfyLiterals",
"files": [
"https://github.com/M1kep/ComfyLiterals"
],
"install_type": "git-clone",
"description": "Nodes: Int, Float, String, Operation, Checkpoint"
},
{
"author": "M1kep",
"title": "KepPromptLang",
"reference": "https://github.com/M1kep/KepPromptLang",
"files": [
"https://github.com/M1kep/KepPromptLang"
],
"install_type": "git-clone",
"description": "Nodes: Build Gif, Special CLIP Loader. It offers various manipulation capabilities for the internal operations of the prompt."
},
{
"author": "M1kep",
"title": "Comfy_KepMatteAnything",
"reference": "https://github.com/M1kep/Comfy_KepMatteAnything",
"files": [
"https://github.com/M1kep/Comfy_KepMatteAnything"
],
"install_type": "git-clone",
"description": "This extension provides a custom node that allows the use of [a/Matte Anything](https://github.com/hustvl/Matte-Anything) in ComfyUI."
},
{
"author": "M1kep",
"title": "Comfy_KepKitchenSink",
"reference": "https://github.com/M1kep/Comfy_KepKitchenSink",
"files": [
"https://github.com/M1kep/Comfy_KepKitchenSink"
],
"install_type": "git-clone",
"description": "Nodes: KepRotateImage"
},
{
"author": "M1kep",
"title": "ComfyUI-OtherVAEs",
"reference": "https://github.com/M1kep/ComfyUI-OtherVAEs",
"files": [
"https://github.com/M1kep/ComfyUI-OtherVAEs"
],
"install_type": "git-clone",
"description": "Nodes: TAESD VAE Decode"
},
{
"author": "M1kep",
"title": "ComfyUI-KepOpenAI",
"reference": "https://github.com/M1kep/ComfyUI-KepOpenAI",
"files": [
"https://github.com/M1kep/ComfyUI-KepOpenAI"
],
"install_type": "git-clone",
"description": "ComfyUI-KepOpenAI is a user-friendly node that serves as an interface to the GPT-4 with Vision (GPT-4V) API. This integration facilitates the processing of images coupled with text prompts, leveraging the capabilities of the OpenAI API to generate text completions that are contextually relevant to the provided inputs."
},
{
"author": "uarefans",
"title": "ComfyUI-Fans",
"reference": "https://github.com/uarefans/ComfyUI-Fans",
"files": [
"https://github.com/uarefans/ComfyUI-Fans"
],
"install_type": "git-clone",
"description": "Nodes: Fans Styler (Max 10 Style), Fans Text Concat (Until 10 text)."
},
{
"author": "NicholasMcCarthy",
"title": "ComfyUI_TravelSuite",
"reference": "https://github.com/NicholasMcCarthy/ComfyUI_TravelSuite",
"files": [
"https://github.com/NicholasMcCarthy/ComfyUI_TravelSuite"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes to apply various latent travel techniques."
},
{
"author": "ManglerFTW",
"title": "ComfyI2I",
"reference": "https://github.com/ManglerFTW/ComfyI2I",
"files": [
"https://github.com/ManglerFTW/ComfyI2I"
],
"install_type": "git-clone",
"description": "A set of custom nodes to perform image 2 image functions in ComfyUI."
},
{
"author": "theUpsider",
"title": "ComfyUI-Logic",
"reference": "https://github.com/theUpsider/ComfyUI-Logic",
"files": [
"https://github.com/theUpsider/ComfyUI-Logic"
],
"install_type": "git-clone",
"description": "An extension to ComfyUI that introduces logic nodes and conditional rendering capabilities."
},
{
"author": "mpiquero7164",
"title": "SaveImgPrompt",
"reference": "https://github.com/mpiquero7164/ComfyUI-SaveImgPrompt",
"files": [
"https://github.com/mpiquero7164/ComfyUI-SaveImgPrompt"
],
"install_type": "git-clone",
"description": "Save a png or jpeg and option to save prompt/workflow in a text or json file for each image in Comfy + Workflow loading."
},
{
"author": "m-sokes",
"title": "ComfyUI Sokes Nodes",
"reference": "https://github.com/m-sokes/ComfyUI-Sokes-Nodes",
"files": [
"https://github.com/m-sokes/ComfyUI-Sokes-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: Empty Latent Randomizer (9 Inputs)"
},
{
"author": "Extraltodeus",
"title": "noise latent perlinpinpin",
"reference": "https://github.com/Extraltodeus/noise_latent_perlinpinpin",
"files": [
"https://github.com/Extraltodeus/noise_latent_perlinpinpin"
],
"install_type": "git-clone",
"description": "Nodes: NoisyLatentPerlin. This allows to create latent spaces filled with perlin-based noise that can actually be used by the samplers."
},
{
"author": "JPS",
"title": "JPS Custom Nodes for ComfyUI",
"reference": "https://github.com/JPS-GER/ComfyUI_JPS-Nodes",
"files": [
"https://github.com/JPS-GER/ComfyUI_JPS-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: SDXL - Resolutions, SDXL - Basic Settings, SDXL - Additional Settings, Math - Resolution Multiply, Math - Largest Integer, Switch - TXT2IMG & IMG2IMG"
},
{
"author": "hustille",
"title": "hus' utils for ComfyUI",
"reference": "https://github.com/hustille/ComfyUI_hus_utils",
"files": [
"https://github.com/hustille/ComfyUI_hus_utils"
],
"install_type": "git-clone",
"description": "ComfyUI nodes primarily for seed and filename generation"
},
{
"author": "hustille",
"title": "ComfyUI_Fooocus_KSampler",
"reference": "https://github.com/hustille/ComfyUI_Fooocus_KSampler",
"files": [
"https://github.com/hustille/ComfyUI_Fooocus_KSampler"
],
"install_type": "git-clone",
"description": "Nodes: KSampler With Refiner (Fooocus). The KSampler from [a/Fooocus](https://github.com/lllyasviel/Fooocus) as a ComfyUI node [w/NOTE: This patches basic ComfyUI behaviour - don't use together with other samplers. Or perhaps do? Other samplers might profit from those changes ... ymmv.]"
},
{
"author": "badjeff",
"title": "LoRA Tag Loader for ComfyUI",
"reference": "https://github.com/badjeff/comfyui_lora_tag_loader",
"files": [
"https://github.com/badjeff/comfyui_lora_tag_loader"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node to read LoRA tag(s) from text and load it into checkpoint model."
},
{
"author": "rgthree",
"title": "rgthree's ComfyUi Nodes",
"reference": "https://github.com/rgthree/rgthree-comfy",
"files": [
"https://github.com/rgthree/rgthree-comfy"
],
"nodename_pattern": " \\(rgthree\\)$",
"install_type": "git-clone",
"description": "Nodes: Seed, Reroute, Context, Lora Loader Stack, Context Switch, Fast Muter. These custom nodes helps organize the building of complex workflows."
},
{
"author": "AIGODLIKE",
"title": "AIGODLIKE-COMFYUI-TRANSLATION",
"reference": "https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION",
"files": [
"https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION"
],
"install_type": "git-clone",
"description": "It provides language settings. (Contribution from users of various languages is needed due to the support for each language.)"
},
{
"author": "syllebra",
"title": "BilboX's ComfyUI Custom Nodes",
"reference": "https://github.com/syllebra/bilbox-comfyui",
"files": [
"https://github.com/syllebra/bilbox-comfyui"
],
"install_type": "git-clone",
"description": "Nodes: BilboX's PromptGeek Photo Prompt. This provides a convenient way to compose photorealistic prompts into ComfyUI."
},
{
"author": "Girish Gopaul",
"title": "Save Image with Generation Metadata",
"reference": "https://github.com/giriss/comfy-image-saver",
"files": [
"https://github.com/giriss/comfy-image-saver"
],
"install_type": "git-clone",
"description": "All the tools you need to save images with their generation metadata on ComfyUI. Compatible with Civitai & Prompthero geninfo auto-detection. Works with png, jpeg and webp."
},
{
"author": "shingo1228",
"title": "ComfyUI-send-Eagle(slim)",
"reference": "https://github.com/shingo1228/ComfyUI-send-eagle-slim",
"files": [
"https://github.com/shingo1228/ComfyUI-send-eagle-slim"
],
"install_type": "git-clone",
"description": "Nodes:Send Webp Image to Eagle. This is an extension node for ComfyUI that allows you to send generated images in webp format to Eagle. This extension node is a re-implementation of the Eagle linkage functions of the previous ComfyUI-send-Eagle node, focusing on the functions required for this node."
},
{
"author": "shingo1228",
"title": "ComfyUI-SDXL-EmptyLatentImage",
"reference": "https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage",
"files": [
"https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage"
],
"install_type": "git-clone",
"description": "Nodes:SDXL Empty Latent Image. An extension node for ComfyUI that allows you to select a resolution from the pre-defined json files and output a Latent Image."
},
{
"author": "laksjdjf",
"title": "IPAdapter-ComfyUI",
"reference": "https://github.com/laksjdjf/IPAdapter-ComfyUI",
"files": [
"https://github.com/laksjdjf/IPAdapter-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes:Load IPAdapter. This custom nodes provides loader of the IP-Adapter model.[w/NOTE: To use this extension node, you need to download the [a/ip-adapter_sd15.bin](https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.bin) file and place it in the %%**custom_nodes/IPAdapter-ComfyUI/models**%% directory. Additionally, you need to download the 'Clip vision model' from the 'Install models' menu as well.]"
},
{
"author": "laksjdjf",
"title": "pfg-ComfyUI",
"reference": "https://github.com/laksjdjf/pfg-ComfyUI",
"files": [
"https://github.com/laksjdjf/pfg-ComfyUI"
],
"install_type": "git-clone",
"description": "ComfyUI version of https://github.com/laksjdjf/pfg-webui. (To use this extension, you need to download the required model file from **Install Models**)"
},
{
"author": "laksjdjf",
"title": "attention-couple-ComfyUI",
"reference": "https://github.com/laksjdjf/attention-couple-ComfyUI",
"files": [
"https://github.com/laksjdjf/attention-couple-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes:Attention couple. This is a custom node that manipulates region-specific prompts. While vanilla ComfyUI employs an area specification method based on latent couples, this node divides regions using attention layers within UNet."
},
{
"author": "laksjdjf",
"title": "cd-tuner_negpip-ComfyUI",
"reference": "https://github.com/laksjdjf/cd-tuner_negpip-ComfyUI",
"files": [
"https://github.com/laksjdjf/cd-tuner_negpip-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes:Apply CDTuner, Apply Negapip. This extension provides the [a/CD(Color/Detail) Tuner](https://github.com/hako-mikan/sd-webui-cd-tuner) and the [a/Negative Prompt in the Prompt](https://github.com/hako-mikan/sd-webui-negpip) features."
},
{
"author": "laksjdjf",
"title": "LoRA-Merger-ComfyUI",
"reference": "https://github.com/laksjdjf/LoRA-Merger-ComfyUI",
"files": [
"https://github.com/laksjdjf/LoRA-Merger-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes:Load LoRA Weight Only, Load LoRA from Weight, Merge LoRA, Save LoRA. This extension provides nodes for merging LoRA."
},
{
"author": "laksjdjf",
"title": "LCMSampler-ComfyUI",
"reference": "https://github.com/laksjdjf/LCMSampler-ComfyUI",
"files": [
"https://github.com/laksjdjf/LCMSampler-ComfyUI"
],
"install_type": "git-clone",
"description": "This extension node is intended for the use of LCM conversion for SSD-1B-anime. It does not guarantee operation with the original LCM (as it cannot load weights in the current version). To take advantage of fast generation with LCM, a node for using TAESD as a decoder is also provided. This is inspired by ComfyUI-OtherVAEs."
},
{
"author": "alsritter",
"title": "asymmetric-tiling-comfyui",
"reference": "https://github.com/alsritter/asymmetric-tiling-comfyui",
"files": [
"https://github.com/alsritter/asymmetric-tiling-comfyui"
],
"install_type": "git-clone",
"description": "Nodes:Asymmetric_Tiling_KSampler. "
},
{
"author": "meap158",
"title": "GPU temperature protection",
"reference": "https://github.com/meap158/ComfyUI-GPU-temperature-protection",
"files": [
"https://github.com/meap158/ComfyUI-GPU-temperature-protection"
],
"install_type": "git-clone",
"description": "Pause image generation when GPU temperature exceeds threshold."
},
{
"author": "meap158",
"title": "ComfyUI-Prompt-Expansion",
"reference": "https://github.com/meap158/ComfyUI-Prompt-Expansion",
"files": [
"https://github.com/meap158/ComfyUI-Prompt-Expansion"
],
"install_type": "git-clone",
"description": "Dynamic prompt expansion, powered by GPT-2 locally on your device."
},
{
"author": "TeaCrab",
"title": "ComfyUI-TeaNodes",
"reference": "https://github.com/TeaCrab/ComfyUI-TeaNodes",
"files": [
"https://github.com/TeaCrab/ComfyUI-TeaNodes"
],
"install_type": "git-clone",
"description": "Nodes:TC_EqualizeCLAHE, TC_SizeApproximation, TC_ImageResize, TC_ImageScale, TC_ColorFill."
},
{
"author": "nagolinc",
"title": "ComfyUI_FastVAEDecorder_SDXL",
"reference": "https://github.com/nagolinc/ComfyUI_FastVAEDecorder_SDXL",
"files": [
"https://github.com/nagolinc/ComfyUI_FastVAEDecorder_SDXL"
],
"install_type": "git-clone",
"description": "Based off of: [a/Birch-san/diffusers-play/approx_vae](https://github.com/Birch-san/diffusers-play/tree/main/approx_vae). This ComfyUI node allows you to quickly preview SDXL 1.0 latents."
},
{
"author": "bradsec",
"title": "ResolutionSelector for ComfyUI",
"reference": "https://github.com/bradsec/ComfyUI_ResolutionSelector",
"files": [
"https://github.com/bradsec/ComfyUI_ResolutionSelector"
],
"install_type": "git-clone",
"description": "Nodes:ResolutionSelector"
},
{
"author": "kohya-ss",
"title": "ControlNet-LLLite-ComfyUI",
"reference": "https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI",
"files": [
"https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes: LLLiteLoader"
},
{
"author": "jjkramhoeft",
"title": "ComfyUI-Jjk-Nodes",
"reference": "https://github.com/jjkramhoeft/ComfyUI-Jjk-Nodes",
"files": [
"https://github.com/jjkramhoeft/ComfyUI-Jjk-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: SDXLRecommendedImageSize, JjkText, JjkShowText, JjkConcat. A set of custom nodes for ComfyUI - focused on text and parameter utility"
},
{
"author": "dagthomas",
"title": "SDXL Auto Prompter",
"reference": "https://github.com/dagthomas/comfyui_dagthomas",
"files": [
"https://github.com/dagthomas/comfyui_dagthomas"
],
"install_type": "git-clone",
"description": "Easy prompting for generation of endless random art pieces and photographs!"
},
{
"author": "marhensa",
"title": "Recommended Resolution Calculator",
"reference": "https://github.com/marhensa/sdxl-recommended-res-calc",
"files": [
"https://github.com/marhensa/sdxl-recommended-res-calc"
],
"install_type": "git-clone",
"description": "Input your desired output final resolution, it will automaticaly set the initial recommended SDXL ratio/size and its Upscale Factor to reach that output final resolution, also there's an option for 2x/4x reverse Upscale Factor. These all to avoid using bad/arbitary initial ratio/resolution."
},
{
"author": "Nuked",
"title": "ComfyUI-N-Nodes",
"reference": "https://github.com/Nuked88/ComfyUI-N-Nodes",
"files": [
"https://github.com/Nuked88/ComfyUI-N-Nodes"
],
"install_type": "git-clone",
"description": "A suite of custom nodes for ConfyUI that includes GPT text-prompt generation, LoadVideo,SaveVideo,LoadFramesFromFolder and FrameInterpolator"
},
{
"author": "Extraltodeus",
"title": "LoadLoraWithTags",
"reference": "https://github.com/Extraltodeus/LoadLoraWithTags",
"files": [
"https://github.com/Extraltodeus/LoadLoraWithTags"
],
"install_type": "git-clone",
"description": "Nodes:LoadLoraWithTags. Save/Load trigger words for loras from a json and auto fetch them on civitai if they are missing."
},
{
"author": "richinsley",
"title": "Comfy-LFO",
"reference": "https://github.com/richinsley/Comfy-LFO",
"files": [
"https://github.com/richinsley/Comfy-LFO"
],
"install_type": "git-clone",
"description": "Nodes:LFO_Triangle, LFO_Sine, SawtoothNode, SquareNode, PulseNode. ComfyUI custom nodes to create Low Frequency Oscillators."
},
{
"author": "Beinsezii",
"title": "bsz-cui-extras",
"reference": "https://github.com/Beinsezii/bsz-cui-extras",
"files": [
"https://github.com/Beinsezii/bsz-cui-extras"
],
"install_type": "git-clone",
"description": "This contains all-in-one 'principled' nodes for T2I, I2I, refining, and scaling. Additionally it has many tools for directly manipulating the color of latents, high res fix math, and scripted image post-processing."
},
{
"author": "youyegit",
"title": "tdxh_node_comfyui",
"reference": "https://github.com/youyegit/tdxh_node_comfyui",
"files": [
"https://github.com/youyegit/tdxh_node_comfyui"
],
"install_type": "git-clone",
"description": "Nodes:TdxhImageToSize, TdxhImageToSizeAdvanced, TdxhLoraLoader, TdxhIntInput, TdxhFloatInput, TdxhStringInput. Some nodes for stable diffusion comfyui. Sometimes it helps conveniently to use less nodes for doing the same things."
},
{
"author": "Sxela",
"title": "ComfyWarp",
"reference": "https://github.com/Sxela/ComfyWarp",
"files": [
"https://github.com/Sxela/ComfyWarp"
],
"install_type": "git-clone",
"description": "Nodes:LoadFrameSequence, LoadFrame"
},
{
"author": "skfoo",
"title": "ComfyUI-Coziness",
"reference": "https://github.com/skfoo/ComfyUI-Coziness",
"files": [
"https://github.com/skfoo/ComfyUI-Coziness"
],
"install_type": "git-clone",
"description": "Nodes:MultiLora Loader, Lora Text Extractor. Provides a node for assisting in loading loras through text."
},
{
"author": "YOUR-WORST-TACO",
"title": "ComfyUI-TacoNodes",
"reference": "https://github.com/YOUR-WORST-TACO/ComfyUI-TacoNodes",
"files": [
"https://github.com/YOUR-WORST-TACO/ComfyUI-TacoNodes"
],
"install_type": "git-clone",
"description": "Nodes:TacoLatent, TacoAnimatedLoader, TacoImg2ImgAnimatedLoader, TacoGifMaker."
},
{
"author": "Lerc",
"title": "Canvas Tab",
"reference": "https://github.com/Lerc/canvas_tab",
"files": [
"https://github.com/Lerc/canvas_tab"
],
"install_type": "git-clone",
"description": "This extension provides a full page image editor with mask support. There are two nodes, one to receive images from the editor and one to send images to the editor."
},
{
"author": "Ttl",
"title": "ComfyUI Neural network latent upscale custom node",
"reference": "https://github.com/Ttl/ComfyUi_NNLatentUpscale",
"files": [
"https://github.com/Ttl/ComfyUi_NNLatentUpscale"
],
"install_type": "git-clone",
"description": "A custom ComfyUI node designed for rapid latent upscaling using a compact neural network, eliminating the need for VAE-based decoding and encoding."
},
{
"author": "spro",
"title": "Latent Mirror node for ComfyUI",
"reference": "https://github.com/spro/comfyui-mirror",
"files": [
"https://github.com/spro/comfyui-mirror"
],
"install_type": "git-clone",
"description": "Nodes: Latent Mirror. Node to mirror a latent along the Y (vertical / left to right) or X (horizontal / top to bottom) axis."
},
{
"author": "Tropfchen",
"title": "Embedding Picker",
"reference": "https://github.com/Tropfchen/ComfyUI-Embedding_Picker",
"files": [
"https://github.com/Tropfchen/ComfyUI-Embedding_Picker"
],
"install_type": "git-clone",
"description": "Tired of forgetting and misspelling often weird names of embeddings you use? Or perhaps you use only one, cause you forgot you have tens of them installed?"
},
{
"author": "Acly",
"title": "ComfyUI Nodes for External Tooling",
"reference": "https://github.com/Acly/comfyui-tooling-nodes",
"files": [
"https://github.com/Acly/comfyui-tooling-nodes"
],
"install_type": "git-clone",
"description": "Nodes: Load Image (Base64), Load Mask (Base64), Send Image (WebSocket), Crop Image, Apply Mask to Image. Provides nodes geared towards using ComfyUI as a backend for external tools."
},
{
"author": "picturesonpictures",
"title": "comfy_PoP",
"reference": "https://github.com/picturesonpictures/comfy_PoP",
"files": ["https://github.com/picturesonpictures/comfy_PoP"],
"install_type": "git-clone",
"description": "A collection of custom nodes for ComfyUI. Includes a quick canny edge detection node with unconventional settings, simple LoRA stack nodes for workflow efficiency, and a customizable aspect ratio node."
},
{
"author": "Dream Project",
"title": "Dream Project Animation Nodes",
"reference": "https://github.com/alt-key-project/comfyui-dream-project",
"files": [
"https://github.com/alt-key-project/comfyui-dream-project"
],
"install_type": "git-clone",
"description": "This extension offers various nodes that are useful for Deforum-like animations in ComfyUI."
},
{
"author": "Dream Project",
"title": "Dream Video Batches",
"reference": "https://github.com/alt-key-project/comfyui-dream-video-batches",
"files": [
"https://github.com/alt-key-project/comfyui-dream-video-batches"
],
"install_type": "git-clone",
"description": "Provide utilities for batch based video generation workflows (s.a. AnimateDiff and Stable Video Diffusion)."
},
{
"author": "seanlynch",
"title": "ComfyUI Optical Flow",
"reference": "https://github.com/seanlynch/comfyui-optical-flow",
"files": [
"https://github.com/seanlynch/comfyui-optical-flow"
],
"install_type": "git-clone",
"description": "This package contains three nodes to help you compute optical flow between pairs of images, usually adjacent frames in a video, visualize the flow, and apply the flow to another image of the same dimensions. Most of the code is from Deforum, so this is released under the same license (MIT)."
},
{
"author": "ealkanat",
"title": "ComfyUI Easy Padding",
"reference": "https://github.com/ealkanat/comfyui_easy_padding",
"files": [
"https://github.com/ealkanat/comfyui_easy_padding"
],
"install_type": "git-clone",
"description": "ComfyUI Easy Padding is a simple custom ComfyUI node that helps you to add padding to images on ComfyUI."
},
{
"author": "ArtBot2023",
"title": "Character Face Swap",
"reference": "https://github.com/ArtBot2023/CharacterFaceSwap",
"files": [
"https://github.com/ArtBot2023/CharacterFaceSwap"
],
"install_type": "git-clone",
"description": "Character face swap with LoRA and embeddings."
},
{
"author": "mav-rik",
"title": "Facerestore CF (Code Former)",
"reference": "https://github.com/mav-rik/facerestore_cf",
"files": [
"https://github.com/mav-rik/facerestore_cf"
],
"install_type": "git-clone",
"description": "This is a copy of [a/facerestore custom node](https://civitai.com/models/24690/comfyui-facerestore-node) with a bit of a change to support CodeFormer Fidelity parameter. These ComfyUI nodes can be used to restore faces in images similar to the face restore option in AUTOMATIC1111 webui.\nNOTE: To use this node, you need to download the face restoration model and face detection model from the 'Install models' menu."
},
{
"author": "braintacles",
"title": "braintacles-nodes",
"reference": "https://github.com/braintacles/braintacles-comfyui-nodes",
"files": [
"https://github.com/braintacles/braintacles-comfyui-nodes"
],
"install_type": "git-clone",
"description": "Nodes: CLIPTextEncodeSDXL-Multi-IO, CLIPTextEncodeSDXL-Pipe, Empty Latent Image from Aspect-Ratio, Random Find and Replace."
},
{
"author": "hayden-fr",
"title": "ComfyUI-Model-Manager",
"reference": "https://github.com/hayden-fr/ComfyUI-Model-Manager",
"files": [
"https://github.com/hayden-fr/ComfyUI-Model-Manager"
],
"install_type": "git-clone",
"description": "Manage models: browsing, download and delete."
},
{
"author": "hayden-fr",
"title": "ComfyUI-Image-Browsing",
"reference": "https://github.com/hayden-fr/ComfyUI-Image-Browsing",
"files": [
"https://github.com/hayden-fr/ComfyUI-Image-Browsing"
],
"install_type": "git-clone",
"description": "Image Browsing: browsing, download and delete."
},
{
"author": "ali1234",
"title": "comfyui-job-iterator",
"reference": "https://github.com/ali1234/comfyui-job-iterator",
"files": [
"https://github.com/ali1234/comfyui-job-iterator"
],
"install_type": "git-clone",
"description": "Implements iteration over sequences within a single workflow run. [w/NOTE: This node replaces the execution of ComfyUI for iterative processing functionality.]"
},
{
"author": "jmkl",
"title": "ComfyUI Ricing",
"reference": "https://github.com/jmkl/ComfyUI-ricing",
"files": [
"https://github.com/jmkl/ComfyUI-ricing"
],
"install_type": "git-clone",
"description": "ComfyUI custom user.css and some script stuff. mainly for web interface."
},
{
"author": "budihartono",
"title": "Otonx's Custom Nodes",
"reference": "https://github.com/budihartono/comfyui_otonx_nodes",
"files": [
"https://github.com/budihartono/comfyui_otonx_nodes"
],
"install_type": "git-clone",
"description": "Nodes: OTX Multiple Values, OTX KSampler Feeder. This extension provides custom nodes for ComfyUI created for personal projects. Made available for reference. Nodes may be updated or changed intermittently or not at all. Review & test before use."
},
{
"author": "ramyma",
"title": "A8R8 ComfyUI Nodes",
"reference": "https://github.com/ramyma/A8R8_ComfyUI_nodes",
"files": [
"https://github.com/ramyma/A8R8_ComfyUI_nodes"
],
"install_type": "git-clone",
"description": "Nodes: Base64Image Input Node, Base64Image Output Node. [a/A8R8](https://github.com/ramyma/a8r8) supporting nodes to integrate with ComfyUI"
},
{
"author": "spinagon",
"title": "Seamless tiling Node for ComfyUI",
"reference": "https://github.com/spinagon/ComfyUI-seamless-tiling",
"files": [
"https://github.com/spinagon/ComfyUI-seamless-tiling"
],
"install_type": "git-clone",
"description": "Node for generating almost seamless textures, based on similar setting from A1111."
},
{
"author": "BiffMunky",
"title": "Endless ️🌊✨ Nodes",
"reference": "https://github.com/tusharbhutt/Endless-Nodes",
"files": [
"https://github.com/tusharbhutt/Endless-Nodes"
],
"install_type": "git-clone",
"description": "A small set of nodes I created for various numerical and text inputs. Features image saver with ability to have JSON saved to separate folder, parameter collection nodes, two aesthetic scoring models, switches for text and numbers, and conversion of string to numeric and vice versa."
},
{
"author": "spacepxl",
"title": "ComfyUI-HQ-Image-Save",
"reference": "https://github.com/spacepxl/ComfyUI-HQ-Image-Save",
"files": [
"https://github.com/spacepxl/ComfyUI-HQ-Image-Save"
],
"install_type": "git-clone",
"description": "Add Image Save nodes for TIFF 16 bit and EXR 32 bit formats. Probably only useful if you're applying a LUT or other color corrections, and care about preserving as much color accuracy as possible."
},
{
"author": "PTA",
"title": "auto nodes layout",
"reference": "https://github.com/phineas-pta/comfyui-auto-nodes-layout",
"files": [
"https://github.com/phineas-pta/comfyui-auto-nodes-layout"
],
"install_type": "git-clone",
"description": "A ComfyUI extension to apply better nodes layout algorithm to ComfyUI workflow (mostly for visualization purpose)"
},
{
"author": "receyuki",
"title": "comfyui-prompt-reader-node",
"reference": "https://github.com/receyuki/comfyui-prompt-reader-node",
"files": [
"https://github.com/receyuki/comfyui-prompt-reader-node"
],
"install_type": "git-clone",
"description": "ComfyUI node version of the SD Prompt Reader."
},
{
"author": "rklaffehn",
"title": "rk-comfy-nodes",
"reference": "https://github.com/rklaffehn/rk-comfy-nodes",
"files": [
"https://github.com/rklaffehn/rk-comfy-nodes"
],
"install_type": "git-clone",
"description": "Nodes: RK_CivitAIMetaChecker, RK_CivitAIAddHashes."
},
{
"author": "cubiq",
"title": "ComfyUI Essentials",
"reference": "https://github.com/cubiq/ComfyUI_essentials",
"files": [
"https://github.com/cubiq/ComfyUI_essentials"
],
"install_type": "git-clone",
"description": "Essential nodes that are weirdly missing from ComfyUI core. With few exceptions they are new features and not commodities. I hope this will be just a temporary repository until the nodes get included into ComfyUI."
},
{
"author": "Clybius",
"title": "ComfyUI-Latent-Modifiers",
"reference": "https://github.com/Clybius/ComfyUI-Latent-Modifiers",
"files": [
"https://github.com/Clybius/ComfyUI-Latent-Modifiers"
],
"install_type": "git-clone",
"description": "Nodes: Latent Diffusion Mega Modifier. ComfyUI nodes which modify the latent during the diffusion process. (Sharpness, Tonemap, Rescale, Extra Noise)"
},
{
"author": "mcmonkeyprojects",
"title": "Stable Diffusion Dynamic Thresholding (CFG Scale Fix)",
"reference": "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding",
"files": [
"https://github.com/mcmonkeyprojects/sd-dynamic-thresholding"
],
"install_type": "git-clone",
"description": "Extension for StableSwarmUI, ComfyUI, and AUTOMATIC1111 Stable Diffusion WebUI that enables a way to use higher CFG Scales without color issues. This works by clamping latents between steps."
},
{
"author": "Tropfchen",
"title": "YARS: Yet Another Resolution Selector",
"reference": "https://github.com/Tropfchen/ComfyUI-yaResolutionSelector",
"files": [
"https://github.com/Tropfchen/ComfyUI-yaResolutionSelector"
],
"install_type": "git-clone",
"description": "A slightly different Resolution Selector node, allowing to freely change base resolution and aspect ratio, with options to maintain the pixel count or use the base resolution as the highest or lowest dimension."
},
{
"author": "chrisgoringe",
"title": "Variation seeds",
"reference": "https://github.com/chrisgoringe/cg-noise",
"files": [
"https://github.com/chrisgoringe/cg-noise"
],
"install_type": "git-clone",
"description": "Adds KSampler custom nodes with variation seed and variation strength."
},
{
"author": "chrisgoringe",
"title": "Image chooser",
"reference": "https://github.com/chrisgoringe/cg-image-picker",
"files": [
"https://github.com/chrisgoringe/cg-image-picker"
],
"install_type": "git-clone",
"description": "A custom node that pauses the flow while you choose which image (or latent) to pass on to the rest of the workflow."
},
{
"author": "chrisgoringe",
"title": "Use Everywhere (UE Nodes)",
"reference": "https://github.com/chrisgoringe/cg-use-everywhere",
"files": [
"https://github.com/chrisgoringe/cg-use-everywhere"
],
"install_type": "git-clone",
"nodename_pattern": "(^(Prompts|Anything) Everywhere|Simple String)",
"description": "A set of nodes that allow data to be 'broadcast' to some or all unconnected inputs. Greatly reduces link spaghetti."
},
{
"author": "chrisgoringe",
"title": "Prompt Info",
"reference": "https://github.com/chrisgoringe/cg-prompt-info",
"files": [
"https://github.com/chrisgoringe/cg-prompt-info"
],
"install_type": "git-clone",
"description": "Prompt Info"
},
{
"author": "TGu-97",
"title": "TGu Utilities",
"reference": "https://github.com/TGu-97/ComfyUI-TGu-utils",
"files": [
"https://github.com/TGu-97/ComfyUI-TGu-utils"
],
"install_type": "git-clone",
"description": "Nodes: MPN Switch, MPN Reroute, PN Switch. This is a set of custom nodes for ComfyUI. Mainly focus on control switches."
},
{
"author": "seanlynch",
"title": "SRL's nodes",
"reference": "https://github.com/seanlynch/srl-nodes",
"files": [
"https://github.com/seanlynch/srl-nodes"
],
"install_type": "git-clone",
"description": "Nodes: SRL Conditional Interrupt, SRL Format String, SRL Eval, SRL Filter Image List. This is a collection of nodes I find useful. Note that at least one module allows execution of arbitrary code. Do not use any of these nodes on a system that allow untrusted users to control workflows or inputs.[w/WARNING: The custom nodes in this extension are vulnerable to **security risks** because they allow the execution of arbitrary code through the workflow]"
},
{
"author": "alpertunga-bile",
"title": "prompt-generator",
"reference": "https://github.com/alpertunga-bile/prompt-generator-comfyui",
"files": [
"https://github.com/alpertunga-bile/prompt-generator-comfyui"
],
"install_type": "git-clone",
"description": "Custom AI prompt generator node for ComfyUI."
},
{
"author": "mlinmg",
"title": "LaMa Preprocessor [WIP]",
"reference": "https://github.com/mlinmg/ComfyUI-LaMA-Preprocessor",
"files": [
"https://github.com/mlinmg/ComfyUI-LaMA-Preprocessor"
],
"install_type": "git-clone",
"description": "A LaMa prerocessor for ComfyUI. This preprocessor finally enable users to generate coherent inpaint and outpaint prompt-free. The best results are given on landscapes, not so much in drawings/animation."
},
{
"author": "azazeal04",
"title": "ComfyUI-Styles",
"reference": "https://github.com/azazeal04/ComfyUI-Styles",
"files": [
"https://github.com/azazeal04/ComfyUI-Styles"
],
"install_type": "git-clone",
"description": "Nodes:Anime_Styler, Fantasy_Styler, Gothic_Styler, Line_Art_Styler, Movie_Poster_Styler, Punk_Styler, Travel_Poster_Styler. This extension offers 8 art style nodes, each of which includes approximately 50 individual style variations."
},
{
"author": "kijai",
"title": "KJNodes for ComfyUI",
"reference": "https://github.com/kijai/ComfyUI-KJNodes",
"files": [
"https://github.com/kijai/ComfyUI-KJNodes"
],
"install_type": "git-clone",
"description": "Various quality of life -nodes for ComfyUI, mostly just visual stuff to improve usability."
},
{
"author": "hhhzzyang",
"title": "Comfyui-Lama",
"reference": "https://github.com/hhhzzyang/Comfyui_Lama",
"files": [
"https://github.com/hhhzzyang/Comfyui_Lama"
],
"install_type": "git-clone",
"description": "Nodes: LamaaModelLoad, LamaApply, YamlConfigLoader. a costumer node is realized to remove anything/inpainting anything from a picture by mask inpainting.[w/WARN:This extension includes the entire model, which can result in a very long initial installation time, and there may be some compatibility issues with older dependencies and ComfyUI.]"
},
{
"author": "thedyze",
"title": "Save Image Extended for ComfyUI",
"reference": "https://github.com/thedyze/save-image-extended-comfyui",
"files": [
"https://github.com/thedyze/save-image-extended-comfyui"
],
"install_type": "git-clone",
"description": "Customize the information saved in file- and folder names. Use the values of sampler parameters as part of file or folder names. Save your positive & negative prompt as entries in a JSON (text) file, in each folder."
},
{
"author": "SOELexicon",
"title": "ComfyUI-LexTools",
"reference": "https://github.com/SOELexicon/ComfyUI-LexTools",
"files": [
"https://github.com/SOELexicon/ComfyUI-LexTools"
],
"install_type": "git-clone",
"description": "ComfyUI-LexTools is a Python-based image processing and analysis toolkit that uses machine learning models for semantic image segmentation, image scoring, and image captioning."
},
{
"author": "mikkel",
"title": "ComfyUI - Text Overlay Plugin",
"reference": "https://github.com/mikkel/ComfyUI-text-overlay",
"files": [
"https://github.com/mikkel/ComfyUI-text-overlay"
],
"install_type": "git-clone",
"description": "The ComfyUI Text Overlay Plugin provides functionalities for superimposing text on images. Users can select different font types, set text size, choose color, and adjust the text's position on the image."
},
{
"author": "avatechai",
"title": "avatar-graph-comfyui",
"reference": "https://github.com/avatechai/avatar-graph-comfyui",
"files": [
"https://github.com/avatechai/avatar-graph-comfyui"
],
"install_type": "git-clone",
"description": "A custom nodes module for creating real-time interactive avatars powered by blender bpy mesh api + Avatech Shape Flow runtime."
},
{
"author": "TRI3D-LC",
"title": "tri3d-comfyui-nodes",
"reference": "https://github.com/TRI3D-LC/tri3d-comfyui-nodes",
"files": [
"https://github.com/TRI3D-LC/tri3d-comfyui-nodes"
],
"install_type": "git-clone",
"description": "Nodes: tri3d-extract-hand, tri3d-fuzzification, tri3d-position-hands, tri3d-atr-parse."
},
{
"author": "storyicon",
"title": "segment anything",
"reference": "https://github.com/storyicon/comfyui_segment_anything",
"files": [
"https://github.com/storyicon/comfyui_segment_anything"
],
"install_type": "git-clone",
"description": "Based on GroundingDino and SAM, use semantic strings to segment any element in an image. The comfyui version of sd-webui-segment-anything."
},
{
"author": "a1lazydog",
"title": "ComfyUI-AudioScheduler",
"reference": "https://github.com/a1lazydog/ComfyUI-AudioScheduler",
"files": [
"https://github.com/a1lazydog/ComfyUI-AudioScheduler"
],
"install_type": "git-clone",
"description": "Load mp3 files and use the audio nodes to power animations and prompt scheduling. Use with FizzNodes."
},
{
"author": "whatbirdisthat",
"title": "cyberdolphin",
"reference": "https://github.com/whatbirdisthat/cyberdolphin",
"files": [
"https://github.com/whatbirdisthat/cyberdolphin"
],
"install_type": "git-clone",
"description": "Cyberdolphin Suite of ComfyUI nodes for wiring up things."
},
{
"author": "chrish-slingshot",
"title": "CrasH Utils",
"reference": "https://github.com/chrish-slingshot/CrasHUtils",
"files": [
"https://github.com/chrish-slingshot/CrasHUtils"
],
"install_type": "git-clone",
"description": "A mixture of effects and quality of life nodes. Nodes: ImageGlitcher (gives an image a cool glitchy effect), ColorStylizer (highlights a single color in an image), QueryLocalLLM (queries a local LLM API though oobabooga), SDXLReslution (resolution picker for the standard SDXL resolutions, the complete list), SDXLResolutionSplit (splits the SDXL resolution into width and height). "
},
{
"author": "spinagon",
"title": "ComfyUI-seam-carving",
"reference": "https://github.com/spinagon/ComfyUI-seam-carving",
"files": [
"https://github.com/spinagon/ComfyUI-seam-carving"
],
"install_type": "git-clone",
"description": "Nodes: Image Resize (seam carving). Seam carving (image resize) for ComfyUI. Based on [a/https://github.com/li-plus/seam-carving](https://github.com/li-plus/seam-carving). With seam carving algorithm, the image could be intelligently resized while keeping the important contents undistorted. The carving process could be further guided, so that an object could be removed from the image without apparent artifacts."
},
{
"author": "YMC",
"title": "ymc-node-suite-comfyui",
"reference": "https://github.com/YMC-GitHub/ymc-node-suite-comfyui",
"files": [
"https://github.com/YMC-GitHub/ymc-node-suite-comfyui"
],
"install_type": "git-clone",
"description": "ymc 's nodes for comfyui. This extension is composed of nodes that provide various utility features such as text, region, and I/O."
},
{
"author": "chibiace",
"title": "ComfyUI-Chibi-Nodes",
"reference": "https://github.com/chibiace/ComfyUI-Chibi-Nodes",
"files": [
"https://github.com/chibiace/ComfyUI-Chibi-Nodes"
],
"install_type": "git-clone",
"description": "Nodes:Loader, Prompts, ImageTool, Wildcards, LoadEmbedding, ConditionText, SaveImages, ..."
},
{
"author": "DigitalIO",
"title": "ComfyUI-stable-wildcards",
"reference": "https://github.com/DigitalIO/ComfyUI-stable-wildcards",
"files": [
"https://github.com/DigitalIO/ComfyUI-stable-wildcards"
],
"install_type": "git-clone",
"description": "Wildcard implementation that can be reproduced with workflows."
},
{
"author": "THtianhao",
"title": "ComfyUI-Portrait-Maker",
"reference": "https://github.com/THtianhao/ComfyUI-Portrait-Maker",
"files": [
"https://github.com/THtianhao/ComfyUI-Portrait-Maker"
],
"install_type": "git-clone",
"description": "Nodes:RetainFace, FaceFusion, RatioMerge2Image, MaskMerge2Image, ReplaceBoxImg, ExpandMaskBox, FaceSkin, SkinRetouching, PortraitEnhancement, ..."
},
{
"author": "THtianhao",
"title": "ComfyUI-FaceChain",
"reference": "https://github.com/THtianhao/ComfyUI-FaceChain",
"files": [
"https://github.com/THtianhao/ComfyUI-FaceChain"
],
"install_type": "git-clone",
"description": "Nodes:FC_LoraMerge."
},
{
"author": "zer0TF",
"title": "Cute Comfy",
"reference": "https://github.com/zer0TF/cute-comfy",
"files": [
"https://github.com/zer0TF/cute-comfy"
],
"install_type": "git-clone",
"description": "Adds a configurable folder watcher that auto-converts Comfy metadata into a Civitai-friendly format for automatic resource tagging when you upload images. Oh, and it makes your UI awesome, too. 💜"
},
{
"author": "chflame163",
"title": "ComfyUI_MSSpeech_TTS",
"reference": "https://github.com/chflame163/ComfyUI_MSSpeech_TTS",
"files": [
"https://github.com/chflame163/ComfyUI_MSSpeech_TTS"
],
"install_type": "git-clone",
"description": "A text-to-speech plugin used under ComfyUI. It utilizes the Microsoft Speech TTS interface to convert text content into MP3 format audio files."
},
{
"author": "drustan-hawk",
"title": "primitive-types",
"reference": "https://github.com/drustan-hawk/primitive-types",
"files": [
"https://github.com/drustan-hawk/primitive-types"
],
"install_type": "git-clone",
"description": "A text-to-speech plugin used under ComfyUI. It utilizes the Microsoft Speech TTS interface to convert text content into MP3 format audio files."
},
{
"author": "shadowcz007",
"title": "comfyui-mixlab-nodes [WIP]",
"reference": "https://github.com/shadowcz007/comfyui-mixlab-nodes",
"files": [
"https://github.com/shadowcz007/comfyui-mixlab-nodes"
],
"install_type": "git-clone",
"description": "Nodes: RandomPrompt, TransparentImage, LoadImageFromPath, Splitting a long image into sections, FaceToMask, AreaToMask, ImagesCrop, ImageCropByAlpha, FeatheredMask, SplitLongMask, EnhanceImage, CLIPSeg, Consistency Decoder Loader, Consistency Decoder Decode, ..."
},
{
"author": "ostris",
"title": "Ostris Nodes ComfyUI",
"reference": "https://github.com/ostris/ostris_nodes_comfyui",
"files": [
"https://github.com/ostris/ostris_nodes_comfyui"
],
"install_type": "git-clone",
"nodename_pattern": "- Ostris$",
"description": "This is a collection of custom nodes for ComfyUI that I made for some QOL. I will be adding much more advanced ones in the future once I get more familiar with the API."
},
{
"author": "0xbitches",
"title": "Latent Consistency Model for ComfyUI",
"reference": "https://github.com/0xbitches/ComfyUI-LCM",
"files": [
"https://github.com/0xbitches/ComfyUI-LCM"
],
"install_type": "git-clone",
"description": "This custom node implements a Latent Consistency Model sampler in ComfyUI. (LCM)"
},
{
"author": "aszc-dev",
"title": "Core ML Suite for ComfyUI",
"reference": "https://github.com/aszc-dev/ComfyUI-CoreMLSuite",
"files": [
"https://github.com/aszc-dev/ComfyUI-CoreMLSuite"
],
"install_type": "git-clone",
"description": "This extension contains a set of custom nodes for ComfyUI that allow you to use Core ML models in your ComfyUI workflows. The models can be obtained here, or you can convert your own models using coremltools. The main motivation behind using Core ML models in ComfyUI is to allow you to utilize the ANE (Apple Neural Engine) on Apple Silicon (M1/M2) machines to improve performance."
},
{
"author": "taabata",
"title": "Syrian Falcon Nodes",
"reference": "https://github.com/taabata/Comfy_Syrian_Falcon_Nodes",
"files": [
"https://github.com/taabata/Comfy_Syrian_Falcon_Nodes/raw/main/SyrianFalconNodes.py"
],
"install_type": "copy",
"description": "Nodes:Prompt editing, Word as Image"
},
{
"author": "taabata",
"title": "LCM_Inpaint-Outpaint_Comfy",
"reference": "https://github.com/taabata/LCM_Inpaint-Outpaint_Comfy",
"files": [
"https://github.com/taabata/LCM_Inpaint-Outpaint_Comfy"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for inpainting/outpainting using the new latent consistency model (LCM)"
},
{
"author": "noxinias",
"title": "ComfyUI_NoxinNodes",
"reference": "https://github.com/noxinias/ComfyUI_NoxinNodes",
"files": [
"https://github.com/noxinias/ComfyUI_NoxinNodes"
],
"install_type": "git-clone",
"description": "Nodes: Noxin Complete Chime, Noxin Scaled Resolutions, Load from Noxin Prompt Library, Save to Noxin Prompt Library"
},
{
"author": "apesplat",
"title": "ezXY scripts and nodes",
"reference": "https://github.com/GMapeSplat/ComfyUI_ezXY",
"files": [
"https://github.com/GMapeSplat/ComfyUI_ezXY"
],
"install_type": "git-clone",
"description": "Extensions/Patches: Enables linking float and integer inputs and ouputs. Values are automatically cast to the correct type and clamped to the correct range. Works with both builtin and custom nodes.[w/NOTE: This repo patches ComfyUI's validate_inputs and map_node_over_list functions while running. May break depending on your version of ComfyUI. Can be deactivated in config.yaml.]Nodes: A collection of nodes for facilitating the generation of XY plots. Capable of plotting changes over most primitive values."
},
{
"author": "kinfolk0117",
"title": "SimpleTiles",
"reference": "https://github.com/kinfolk0117/ComfyUI_SimpleTiles",
"files": [
"https://github.com/kinfolk0117/ComfyUI_SimpleTiles"
],
"install_type": "git-clone",
"description": "Nodes:TileSplit, TileMerge."
},
{
"author": "kinfolk0117",
"title": "ComfyUI_GradientDeepShrink",
"reference": "https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink",
"files": [
"https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink"
],
"install_type": "git-clone",
"description": "Nodes:GradientPatchModelAddDownscale (Kohya Deep Shrink)."
},
{
"author": "kinfolk0117",
"title": "TiledIPAdapter",
"reference": "https://github.com/kinfolk0117/ComfyUI_TiledIPAdapter",
"files": [
"https://github.com/kinfolk0117/ComfyUI_TiledIPAdapter"
],
"install_type": "git-clone",
"description": "Proof of concent on how to use IPAdapter to control tiled upscaling. NOTE: You need to have 'ComfyUI_IPAdapter_plus' installed."
},
{
"author": "Fictiverse",
"title": "ComfyUI Fictiverse Nodes",
"reference": "https://github.com/Fictiverse/ComfyUI_Fictiverse",
"files": [
"https://github.com/Fictiverse/ComfyUI_Fictiverse"
],
"install_type": "git-clone",
"description": "Nodes:Color correction."
},
{
"author": "idrirap",
"title": "ComfyUI-Lora-Auto-Trigger-Words",
"reference": "https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words",
"files": [
"https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words"
],
"install_type": "git-clone",
"description": "This project is a fork of [a/https://github.com/Extraltodeus/LoadLoraWithTags](https://github.com/Extraltodeus/LoadLoraWithTags) The aim of these custom nodes is to get an easy access to the tags used to trigger a lora."
},
{
"author": "aianimation55",
"title": "Comfy UI FatLabels",
"reference": "https://github.com/aianimation55/ComfyUI-FatLabels",
"files": [
"https://github.com/aianimation55/ComfyUI-FatLabels"
],
"install_type": "git-clone",
"description": "It's a super simple custom node for Comfy UI, to generate text, with a font size option. Useful for bigger labelling of nodes, helpful for wider screen captures or tutorials. Plus you can of course use the text within your generations."
},
{
"author": "noEmbryo",
"title": "noEmbryo nodes",
"reference": "https://github.com/noembryo/ComfyUI-noEmbryo",
"files": [
"https://github.com/noembryo/ComfyUI-noEmbryo"
],
"install_type": "git-clone",
"description": "PromptTermList (1-6): are some nodes that help with the creation of Prompts inside ComfyUI. Resolution Scale outputs image dimensions using a scale factor. Regex Text Chopper outputs the chopped parts of a text using RegEx."
},
{
"author": "mikkel",
"title": "ComfyUI - Mask Bounding Box",
"reference": "https://github.com/mikkel/comfyui-mask-boundingbox",
"files": [
"https://github.com/mikkel/comfyui-mask-boundingbox"
],
"install_type": "git-clone",
"description": "The ComfyUI Mask Bounding Box Plugin provides functionalities for selecting a specific size mask from an image. Can be combined with ClipSEG to replace any aspect of an SDXL image with an SD1.5 output."
},
{
"author": "ParmanBabra",
"title": "ComfyUI-Malefish-Custom-Scripts",
"reference": "https://github.com/ParmanBabra/ComfyUI-Malefish-Custom-Scripts",
"files": [
"https://github.com/ParmanBabra/ComfyUI-Malefish-Custom-Scripts"
],
"install_type": "git-clone",
"description": "Nodes:Multi Lora Loader, Random (Prompt), Combine (Prompt), CSV Prompts Loader"
},
{
"author": "IAmMatan.com",
"title": "ComfyUI Serving toolkit",
"reference": "https://github.com/matan1905/ComfyUI-Serving-Toolkit",
"files": [
"https://github.com/matan1905/ComfyUI-Serving-Toolkit"
],
"install_type": "git-clone",
"description": "This extension adds nodes that allow you to easily serve your workflow (for example using a discord bot) "
},
{
"author": "PCMonsterx",
"title": "ComfyUI-CSV-Loader",
"reference": "https://github.com/PCMonsterx/ComfyUI-CSV-Loader",
"files": [
"https://github.com/PCMonsterx/ComfyUI-CSV-Loader"
],
"install_type": "git-clone",
"description": "CSV Loader for prompt building within ComfyUI interface. Allows access to positive/negative prompts associated with a name. Selections are being pulled from CSV files."
},
{
"author": "Trung0246",
"title": "ComfyUI-0246",
"reference": "https://github.com/Trung0246/ComfyUI-0246",
"files": [
"https://github.com/Trung0246/ComfyUI-0246"
],
"install_type": "git-clone",
"description": "Nodes: Highway, Junction. Random nodes for ComfyUI I made to solve my struggle with ComfyUI. Have varying quality."
},
{
"author": "fexli",
"title": "fexli-util-node-comfyui",
"reference": "https://github.com/fexli/fexli-util-node-comfyui",
"files": [
"https://github.com/fexli/fexli-util-node-comfyui"
],
"install_type": "git-clone",
"description": "Nodes:FEImagePadForOutpaint, FEColorOut, FEColor2Image, FERandomizedColor2Image"
},
{
"author": "AbyssYuan0",
"title": "ComfyUI_BadgerTools",
"reference": "https://github.com/AbyssYuan0/ComfyUI_BadgerTools",
"files": [
"https://github.com/AbyssYuan0/ComfyUI_BadgerTools"
],
"install_type": "git-clone",
"description": "Nodes:ImageOverlap-badger, FloatToInt-badger, IntToString-badger, FloatToString-badger, ImageNormalization-badger, ImageScaleToSide-badger, NovelToFizz-badger."
},
{
"author": "palant",
"title": "Image Resize for ComfyUI",
"reference": "https://github.com/palant/image-resize-comfyui",
"files": [
"https://github.com/palant/image-resize-comfyui"
],
"install_type": "git-clone",
"description": "This custom node provides various tools for resizing images. The goal is resizing without distorting proportions, yet without having to perform any calculations with the size of the original image. If a mask is present, it is resized and modified along with the image."
},
{
"author": "palant",
"title": "Integrated Nodes for ComfyUI",
"reference": "https://github.com/palant/integrated-nodes-comfyui",
"files": [
"https://github.com/palant/integrated-nodes-comfyui"
],
"install_type": "git-clone",
"description": "This tool will turn entire workflows or parts of them into single integrated nodes. In a way, it is similar to the Node Templates functionality but hides the inner structure. This is useful if all you want is to reuse and quickly configure a bunch of nodes without caring how they are interconnected."
},
{
"author": "palant",
"title": "Extended Save Image for ComfyUI",
"reference": "https://github.com/palant/extended-saveimage-comfyui",
"files": [
"https://github.com/palant/extended-saveimage-comfyui"
],
"install_type": "git-clone",
"description": "This custom node is largely identical to the usual Save Image but allows saving images also in JPEG and WEBP formats, the latter with both lossless and lossy compression. Metadata is embedded in the images as usual, and the resulting images can be used to load a workflow."
},
{
"author": "whmc76",
"title": "ComfyUI-Openpose-Editor-Plus",
"reference": "https://github.com/whmc76/ComfyUI-Openpose-Editor-Plus",
"files": [
"https://github.com/whmc76/ComfyUI-Openpose-Editor-Plus"
],
"install_type": "git-clone",
"description": "Nodes:Openpose Editor Plus"
},
{
"author": "martijnat",
"title": "comfyui-previewlatent",
"reference": "https://github.com/martijnat/comfyui-previewlatent",
"files": [
"https://github.com/martijnat/comfyui-previewlatent"
],
"install_type": "git-clone",
"description": "a ComfyUI plugin for previewing latents without vae decoding. Useful for showing intermediate results and can be used a faster 'preview image' if you don't wan't to use vae decode."
},
{
"author": "peteromallet",
"title": "ComfyUI-Creative-Interpolation [Beta]",
"reference": "https://github.com/peteromallet/ComfyUI-Creative-Interpolation",
"files": [
"https://github.com/peteromallet/ComfyUI-Creative-Interpolation"
],
"install_type": "git-clone",
"description": "This a ComfyUI node for batch creative interpolation. The goal is to allow you to input a batch of images, and to provide a range of simple settings to control how the images are interpolated between."
},
{
"author": "gemell1",
"title": "ComfyUI_GMIC",
"reference": "https://github.com/gemell1/ComfyUI_GMIC",
"files": [
"https://github.com/gemell1/ComfyUI_GMIC"
],
"install_type": "git-clone",
"description": "Nodes:GMIC Image Processing."
},
{
"author": "LonicaMewinsky",
"title": "ComfyBreakAnim",
"reference": "https://github.com/LonicaMewinsky/ComfyUI-MakeFrame",
"files": [
"https://github.com/LonicaMewinsky/ComfyUI-MakeFrame"
],
"install_type": "git-clone",
"description": "Nodes:BreakFrames, GetKeyFrames, MakeGrid."
},
{
"author": "TheBarret",
"title": "ZSuite",
"reference": "https://github.com/TheBarret/ZSuite",
"files": [
"https://github.com/TheBarret/ZSuite"
],
"install_type": "git-clone",
"description": "Nodes:Prompter, RF Noise, SeedMod."
},
{
"author": "romeobuilderotti",
"title": "ComfyUI PNG Metadata",
"reference": "https://github.com/romeobuilderotti/ComfyUI-PNG-Metadata",
"files": [
"https://github.com/romeobuilderotti/ComfyUI-PNG-Metadata"
],
"install_type": "git-clone",
"description": "Add custom Metadata fields to your saved PNG files."
},
{
"author": "ka-puna",
"title": "comfyui-yanc",
"reference": "https://github.com/ka-puna/comfyui-yanc",
"files": [
"https://github.com/ka-puna/comfyui-yanc"
],
"install_type": "git-clone",
"description": "NOTE: Concatenate Strings, Format Datetime String, Integer Caster, Multiline String, Truncate String. Yet Another Node Collection, a repository of simple nodes for ComfyUI. This repository eases the addition or removal of custom nodes to itself."
},
{
"author": "amorano",
"title": "Jovimetrix Composition Nodes",
"reference": "https://github.com/Amorano/Jovimetrix",
"files": [
"https://github.com/Amorano/Jovimetrix"
],
"nodename_pattern": " \\(jov\\)$",
"install_type": "git-clone",
"description": "Compose like Substance Designer. Webcams, Media Streams (in/out), Tick animation, Color correction, Geometry manipulation, Pixel shader, Polygonal shape generator, Remap images gometry and color, Heavily inspired by WAS and MTB Node Suites"
},
{
"author": "Umikaze-job",
"title": "select_folder_path_easy",
"reference": "https://github.com/Umikaze-job/select_folder_path_easy",
"files": [
"https://github.com/Umikaze-job/select_folder_path_easy"
],
"install_type": "git-clone",
"description": "This extension simply connects the nodes and specifies the output path of the generated images to a manageable path."
},
{
"author": "Niutonian",
"title": "ComfyUi-NoodleWebcam",
"reference": "https://github.com/Niutonian/ComfyUi-NoodleWebcam",
"files": [
"https://github.com/Niutonian/ComfyUi-NoodleWebcam"
],
"install_type": "git-clone",
"description": "Nodes:Noodle webcam is a node that records frames and send them to your favourite node."
},
{
"author": "Feidorian",
"title": "feidorian-ComfyNodes",
"reference": "https://github.com/Feidorian/feidorian-ComfyNodes",
"nodename_pattern": "^Feidorian_",
"files": [
"https://github.com/Feidorian/feidorian-ComfyNodes"
],
"install_type": "git-clone",
"description": "This extension provides various custom nodes. literals, loaders, logic, output, switches"
},
{
"author": "wutipong",
"title": "ComfyUI-TextUtils",
"reference": "https://github.com/wutipong/ComfyUI-TextUtils",
"files": [
"https://github.com/wutipong/ComfyUI-TextUtils"
],
"install_type": "git-clone",
"description": "Nodes:Create N-Token String"
},
{
"author": "natto-maki",
"title": "ComfyUI-NegiTools",
"reference": "https://github.com/natto-maki/ComfyUI-NegiTools",
"files": [
"https://github.com/natto-maki/ComfyUI-NegiTools"
],
"install_type": "git-clone",
"description": "Nodes:OpenAI DALLe3, OpenAI Translate to English, String Function, Seed Generator"
},
{
"author": "LonicaMewinsky",
"title": "ComfyUI-RawSaver",
"reference": "https://github.com/LonicaMewinsky/ComfyUI-RawSaver",
"files": [
"https://github.com/LonicaMewinsky/ComfyUI-RawSaver"
],
"install_type": "git-clone",
"description": "Nodes:SaveTifImage. ComfyUI custom node for purpose of saving image as uint16 tif file."
},
{
"author": "jojkaart",
"title": "ComfyUI-sampler-lcm-alternative",
"reference": "https://github.com/jojkaart/ComfyUI-sampler-lcm-alternative",
"files": [
"https://github.com/jojkaart/ComfyUI-sampler-lcm-alternative"
],
"install_type": "git-clone",
"description": "Nodes:LCMScheduler, SamplerLCMAlternative, SamplerLCMCycle. ComfyUI Custom Sampler nodes that add a new improved LCM sampler functions"
},
{
"author": "GTSuya-Studio",
"title": "ComfyUI-GTSuya-Nodes",
"reference": "https://github.com/GTSuya-Studio/ComfyUI-Gtsuya-Nodes",
"files": [
"https://github.com/GTSuya-Studio/ComfyUI-Gtsuya-Nodes"
],
"install_type": "git-clone",
"description": "ComfyUI-GTSuya-Nodes is a ComyUI extension designed to add several wildcards supports into ComfyUI. Wildcards allow you to use __name__ syntax in your prompt to get a random line from a file named name.txt in a wildcards directory."
},
{
"author": "oyvindg",
"title": "ComfyUI-TrollSuite",
"reference": "https://github.com/oyvindg/ComfyUI-TrollSuite",
"files": [
"https://github.com/oyvindg/ComfyUI-TrollSuite"
],
"install_type": "git-clone",
"description": "Nodes: BinaryImageMask, ImagePadding, LoadLastCreatedImage, RandomMask, TransparentImage."
},
{
"author": "drago87",
"title": "ComfyUI_Dragos_Nodes",
"reference": "https://github.com/drago87/ComfyUI_Dragos_Nodes",
"files": [
"https://github.com/drago87/ComfyUI_Dragos_Nodes"
],
"install_type": "git-clone",
"description": "Nodes:File Padding, Image Info, VAE Loader With Name"
},
{
"author": "ansonkao",
"title": "comfyui-geometry",
"reference": "https://github.com/ansonkao/comfyui-geometry",
"files": [
"https://github.com/ansonkao/comfyui-geometry"
],
"install_type": "git-clone",
"description": "Nodes: Mask to Centroid, Mask to Eigenvector. A small collection of custom nodes for use with ComfyUI, for geometry calculations"
},
{
"author": "bronkula",
"title": "comfyui-fitsize",
"reference": "https://github.com/bronkula/comfyui-fitsize",
"files": [
"https://github.com/bronkula/comfyui-fitsize"
],
"install_type": "git-clone",
"description": "Nodes:Fit Size From Int/Image/Resize, Load Image And Resize To Fit, Pick Image From Batch/List, Crop Image Into Even Pieces, Image Region To Mask... A simple set of nodes for making an image fit within a bounding box"
},
{
"author": "kijai",
"title": "ComfyUI-SVD",
"reference": "https://github.com/kijai/ComfyUI-SVD",
"files": [
"https://github.com/kijai/ComfyUI-SVD"
],
"install_type": "git-clone",
"description": "Preliminary use of SVD in ComfyUI.\nNOTE: Quick Implementation, Unstable. See details on repositories."
},
{
"author": "toyxyz",
"title": "ComfyUI_toyxyz_test_nodes",
"reference": "https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes",
"files": [
"https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes"
],
"install_type": "git-clone",
"description": "This node was created to send a webcam to ComfyUI in real time. This node is recommended for use with LCM."
},
{
"author": "thecooltechguy",
"title": "ComfyUI Stable Video Diffusion",
"reference": "https://github.com/thecooltechguy/ComfyUI-Stable-Video-Diffusion",
"files": [
"https://github.com/thecooltechguy/ComfyUI-Stable-Video-Diffusion"
],
"install_type": "git-clone",
"description": "Easily use Stable Video Diffusion inside ComfyUI!"
},
{
"author": "Danand",
"title": "ComfyUI-ComfyCouple",
"reference": "https://github.com/Danand/ComfyUI-ComfyCouple",
"files": [
"https://github.com/Danand/ComfyUI-ComfyCouple"
],
"install_type": "git-clone",
"description": " Simple custom node which helps to generate images of actual couples."
},
{
"author": "42lux",
"title": "ComfyUI-safety-checker",
"reference": "https://github.com/42lux/ComfyUI-safety-checker",
"files": [
"https://github.com/42lux/ComfyUI-safety-checker"
],
"install_type": "git-clone",
"description": "A NSFW/Safety Checker Node for ComfyUI."
},
{
"author": "sergekatzmann",
"title": "ComfyUI_Nimbus-Pack",
"reference": "https://github.com/sergekatzmann/ComfyUI_Nimbus-Pack",
"files": [
"https://github.com/sergekatzmann/ComfyUI_Nimbus-Pack"
],
"install_type": "git-clone",
"description": "Nodes:Image Square Adapter Node, Image Resize And Crop Node"
},
{
"author": "komojini",
"title": "ComfyUI_SDXL_DreamBooth_LoRA_CustomNodes",
"reference": "https://github.com/komojini/ComfyUI_SDXL_DreamBooth_LoRA_CustomNodes",
"files": [
"https://github.com/komojini/ComfyUI_SDXL_DreamBooth_LoRA_CustomNodes"
],
"install_type": "git-clone",
"description": "Nodes:XL DreamBooth LoRA, S3 Bucket LoRA"
},
{
"author": "ZHO-ZHO-ZHO",
"title": "ComfyUI-Text_Image-Composite",
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Text_Image-Composite",
"files": [
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-Text_Image-Composite"
],
"install_type": "git-clone",
"description": "Nodes:Text_Image_Zho, Text_Image_Multiline_Zho, RGB_Image_Zho, AlphaChanelAddByMask, ImageComposite_Zho, ..."
},
{
"author": "kenjiqq",
"title": "qq-nodes-comfyui",
"reference": "https://github.com/kenjiqq/qq-nodes-comfyui",
"files": [
"https://github.com/kenjiqq/qq-nodes-comfyui"
],
"install_type": "git-clone",
"description": "Nodes:Any List, Image Accumulator Start, Image Accumulator End, Load Lines From Text File, XY Grid Helper, Slice List, Axis To String/Int/Float/Model, ..."
},
{
"author": "80sVectorz",
"title": "ComfyUI-Static-Primitives",
"reference": "https://github.com/80sVectorz/ComfyUI-Static-Primitives",
"files": [
"https://github.com/80sVectorz/ComfyUI-Static-Primitives"
],
"install_type": "git-clone",
"description": "Adds Static Primitives to ComfyUI. Mostly to work with reroute nodes"
},
{
"author": "AbdullahAlfaraj",
"title": "Comfy-Photoshop-SD",
"reference": "https://github.com/AbdullahAlfaraj/Comfy-Photoshop-SD",
"files": [
"https://github.com/AbdullahAlfaraj/Comfy-Photoshop-SD"
],
"install_type": "git-clone",
"description": "Nodes: load Image with metadata, get config data, load image from base64 string, Load Loras From Prompt, Generate Latent Noise, Combine Two Latents Into Batch, General Purpose Controlnet Unit, ControlNet Script, Content Mask Latent, Auto-Photoshop-SD Seed, Expand and Blur the Mask"
},
{
"author": "zhuanqianfish",
"title": "EasyCaptureNode for ComfyUI",
"reference": "https://github.com/zhuanqianfish/ComfyUI-EasyNode",
"files": [
"https://github.com/zhuanqianfish/ComfyUI-EasyNode"
],
"install_type": "git-clone",
"description": "Capture window content from other programs, easyway combined with LCM for real-time painting"
},
{
"author": "discopixel-studio",
"title": "ComfyUI Discopixel Nodes",
"reference": "https://github.com/discopixel-studio/comfyui-discopixel",
"files": [
"https://github.com/discopixel-studio/comfyui-discopixel"
],
"install_type": "git-clone",
"description": "Nodes:TransformTemplateOntoFaceMask, ..."
},
{
"author": "zcfrank1st",
"title": "ComfyUI Yolov8",
"reference": "https://github.com/zcfrank1st/Comfyui-Yolov8",
"files": [
"https://github.com/zcfrank1st/Comfyui-Yolov8"
],
"install_type": "git-clone",
"description": "Nodes: Yolov8Detection, Yolov8Segmentation. Deadly simple yolov8 comfyui plugin"
},
{
"author": "SoftMeng",
"title": "ComfyUI_Mexx_Styler",
"reference": "https://github.com/SoftMeng/ComfyUI_Mexx_Styler",
"files": [
"https://github.com/SoftMeng/ComfyUI_Mexx_Styler"
],
"install_type": "git-clone",
"description": "Nodes: ComfyUI Mexx Styler, ComfyUI Mexx Styler Advanced"
},
{
"author": "SoftMeng",
"title": "ComfyUI_Mexx_Poster",
"reference": "https://github.com/SoftMeng/ComfyUI_Mexx_Poster",
"files": [
"https://github.com/SoftMeng/ComfyUI_Mexx_Poster"
],
"install_type": "git-clone",
"description": "Nodes: ComfyUI_Mexx_Poster"
},
{
"author": "wmatson",
"title": "easy-comfy-nodes",
"reference": "https://github.com/wmatson/easy-comfy-nodes",
"files": [
"https://github.com/wmatson/easy-comfy-nodes"
],
"install_type": "git-clone",
"description": "Nodes: HTTP POST, Empty Dict, Assoc Str, Assoc Dict, Assoc Img, Load Img From URL (EZ), Load Img Batch From URLs (EZ), Video Combine + upload (EZ), ..."
},
{
"author": "DrJKL",
"title": "ComfyUI-Anchors",
"reference": "https://github.com/DrJKL/ComfyUI-Anchors",
"files": [
"https://github.com/DrJKL/ComfyUI-Anchors"
],
"install_type": "git-clone",
"description": "A ComfyUI extension to add spatial anchors/waypoints to better navigate large workflows."
},
{
"author": "vanillacode314",
"title": "Simple Wildcard",
"reference": "https://github.com/vanillacode314/SimpleWildcardsComfyUI",
"files": ["https://github.com/vanillacode314/SimpleWildcardsComfyUI"],
"install_type": "git-clone",
"pip": ["pipe"],
"description": "A simple wildcard node for ComfyUI. Can also be used a style prompt node."
},
{
"author": "WebDev9000",
"title": "WebDev9000-Nodes",
"reference": "https://github.com/WebDev9000/WebDev9000-Nodes",
"files": [
"https://github.com/WebDev9000/WebDev9000-Nodes"
],
"install_type": "git-clone",
"description": "Nodes:Ignore Braces, Settings Switch."
},
{
"author": "Scholar01",
"title": "SComfyUI-Keyframe",
"reference": "https://github.com/Scholar01/ComfyUI-Keyframe",
"files": [
"https://github.com/Scholar01/ComfyUI-Keyframe"
],
"install_type": "git-clone",
"description": "Nodes:Keyframe Part, Keyframe Interpolation Part, Keyframe Apply."
},
{
"author": "Haoming02",
"title": "ComfyUI Diffusion Color Grading",
"reference": "https://github.com/Haoming02/comfyui-diffusion-cg",
"files": [
"https://github.com/Haoming02/comfyui-diffusion-cg"
],
"install_type": "git-clone",
"description": "This is the ComfyUI port of the joint research between me and TimothyAlexisVass. For more information, check out the original [a/Extension](https://github.com/Haoming02/sd-webui-diffusion-cg) for Automatic1111."
},
{
"author": "bedovyy",
"title": "ComfyUI_NAIDGenerator",
"reference": "https://github.com/bedovyy/ComfyUI_NAIDGenerator",
"files": [
"https://github.com/bedovyy/ComfyUI_NAIDGenerator"
],
"install_type": "git-clone",
"description": "This extension helps generate images through NAI."
},
{
"author": "Off-Live",
"title": "ComfyUI-off-suite",
"reference": "https://github.com/Off-Live/ComfyUI-off-suite",
"files": [
"https://github.com/Off-Live/ComfyUI-off-suite"
],
"install_type": "git-clone",
"description": "Nodes:Image Crop Fit, OFF SEGS to Image, Crop Center wigh SEGS, Watermarking, GW Number Formatting Node."
},
{
"author": "ningxiaoxiao",
"title": "comfyui-NDI",
"reference": "https://github.com/ningxiaoxiao/comfyui-NDI",
"files": [
"https://github.com/ningxiaoxiao/comfyui-NDI"
],
"pip": ["ndi-python"],
"install_type": "git-clone",
"description": "Real-time input output node for ComfyUI by NDI. Leveraging the powerful linking capabilities of NDI, you can access NDI video stream frames and send images generated by the model to NDI video streams."
},
{
"author": "subtleGradient",
"title": "Touchpad two-finger gesture support for macOS",
"reference": "https://github.com/subtleGradient/TinkerBot-tech-for-ComfyUI-Touchpad",
"files": [
"https://github.com/subtleGradient/TinkerBot-tech-for-ComfyUI-Touchpad"
],
"install_type": "git-clone",
"description": "Two-finger scrolling (vertical and horizontal) to pan the canvas. Two-finger pinch to zoom in and out. Command-scroll up and down to zoom in and out. Fixes [comfyanonymous/ComfyUI#2059](https://github.com/comfyanonymous/ComfyUI/issues/2059)."
},
{
"author": "zcfrank1st",
"title": "comfyui_visual_anagram",
"reference": "https://github.com/zcfrank1st/comfyui_visual_anagrams",
"files": [
"https://github.com/zcfrank1st/comfyui_visual_anagrams"
],
"install_type": "git-clone",
"description": "Nodes:visual_anagrams_sample, visual_anagrams_animate"
},
{
"author": "Electrofried",
"title": "OpenAINode",
"reference": "https://github.com/Electrofried/ComfyUI-OpenAINode",
"files": [
"https://github.com/Electrofried/ComfyUI-OpenAINode"
],
"install_type": "git-clone",
"description": "A simply node for hooking in to openAI API based servers via comfyUI"
},
{
"author": "AustinMroz",
"title": "SpliceTools",
"reference": "https://github.com/AustinMroz/ComfyUI-SpliceTools",
"files": [
"https://github.com/AustinMroz/ComfyUI-SpliceTools"
],
"install_type": "git-clone",
"description": "Experimental utility nodes with a focus on manipulation of noised latents"
},
{
"author": "11cafe",
"title": "ComfyUI Workspace Manager - Comfyspace",
"reference": "https://github.com/11cafe/comfyui-workspace-manager",
"files": [
"https://github.com/11cafe/comfyui-workspace-manager"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node for project management to centralize the management of all your workflows in one place. Seamlessly switch between workflows, create and update them within a single workspace, like Google Docs."
},
{
"author": "thecooltechguy",
"title": "ComfyUI-MagicAnimate",
"reference": "https://github.com/thecooltechguy/ComfyUI-MagicAnimate",
"files": [
"https://github.com/thecooltechguy/ComfyUI-MagicAnimate"
],
"install_type": "git-clone",
"description": "Easily use Magic Animate within ComfyUI!"
},
{
"author": "knuknX",
"title": "ComfyUI-Image-Tools",
"reference": "https://github.com/knuknX/ComfyUI-Image-Tools",
"files": [
"https://github.com/knuknX/ComfyUI-Image-Tools"
],
"install_type": "git-clone",
"description": "Nodes:BatchImageResizeProcessor, SingleImagePathLoader, SingleImageUrlLoader"
},
{
"author": "jtrue",
"title": "ComfyUI-JaRue",
"reference": "https://github.com/jtrue/ComfyUI-JaRue",
"files": [
"https://github.com/jtrue/ComfyUI-JaRue"
],
"install_type": "git-clone",
"description": "A collection of nodes powering a tensor oracle on a home network with automation"
},
{
"author": "filliptm",
"title": "ComfyUI_Fill-Nodes",
"reference": "https://github.com/filliptm/ComfyUI_Fill-Nodes",
"files": [
"https://github.com/filliptm/ComfyUI_Fill-Nodes"
],
"install_type": "git-clone",
"description": "Nodes:FL Image Randomizer. The start of a pack that I will continue to build out to fill the gaps of nodes and functionality that I feel is missing in comfyUI"
},
{
"author": "Ser-Hilary",
"title": "SDXL_sizing",
"reference": "https://github.com/Ser-Hilary/SDXL_sizing",
"files": [
"https://github.com/Ser-Hilary/SDXL_sizing/raw/main/conditioning_sizing_for_SDXL.py"
],
"install_type": "copy",
"description": "Nodes:sizing_node. Size calculation node related to image size in prompts supported by SDXL."
},
{
"author": "ailex000",
"title": "Image Gallery",
"reference": "https://github.com/ailex000/ComfyUI-Extensions",
"js_path": "image-gallery",
"files": [
"https://github.com/ailex000/ComfyUI-Extensions/raw/main/image-gallery/imageGallery.js"
],
"install_type": "copy",
"description": "Custom javascript extensions for better UX for ComfyUI. Supported nodes: PreviewImage, SaveImage. Double click on image to open."
},
{
"author": "rock-land",
"title": "graphNavigator",
"reference": "https://github.com/rock-land/graphNavigator",
"js_path": "graphNavigator",
"files": [
"https://github.com/rock-land/graphNavigator/raw/main/graphNavigator/graphNavigator.js"
],
"install_type": "copy",
"description": "ComfyUI Web Extension for saving views and navigating graphs."
},
{
"author": "diffus3",
"title": "diffus3/ComfyUI-extensions",
"reference": "https://github.com/diffus3/ComfyUI-extensions",
"js_path": "diffus3",
"files": [
"https://github.com/diffus3/ComfyUI-extensions/raw/main/multiReroute/multireroute.js",
"https://github.com/diffus3/ComfyUI-extensions/raw/main/setget/setget.js"
],
"install_type": "copy",
"description": "Extensions: subgraph, setget, multiReroute"
},
{
"author": "m957ymj75urz",
"title": "m957ymj75urz/ComfyUI-Custom-Nodes",
"reference": "https://github.com/m957ymj75urz/ComfyUI-Custom-Nodes",
"js_path": "m957ymj75urz",
"files": [
"https://github.com/m957ymj75urz/ComfyUI-Custom-Nodes/raw/main/clip-text-encode-split/clip_text_encode_split.py",
"https://github.com/m957ymj75urz/ComfyUI-Custom-Nodes/raw/main/colors/colors.js"
],
"install_type": "copy",
"description": "Nodes: RawText, RawTextCLIPEncode, RawTextCombine, RawTextReplace, Extension: m957ymj75urz.colors"
},
{
"author": "Bikecicle",
"title": "Waveform Extensions",
"reference": "https://github.com/Bikecicle/ComfyUI-Waveform-Extensions",
"files": [
"https://github.com/Bikecicle/ComfyUI-Waveform-Extensions/raw/main/EXT_AudioManipulation.py",
"https://github.com/Bikecicle/ComfyUI-Waveform-Extensions/raw/main/EXT_VariationUtils.py"
],
"install_type": "copy",
"description": "Some additional audio utilites for use on top of Sample Diffusion ComfyUI Extension"
},
{
"author": "dawangraoming",
"title": "KSampler GPU",
"reference": "https://github.com/dawangraoming/ComfyUI_ksampler_gpu",
"files": [
"https://github.com/dawangraoming/ComfyUI_ksampler_gpu/raw/main/ksampler_gpu.py"
],
"install_type": "copy",
"description": "KSampler is provided, based on GPU random noise"
},
{
"author": "fitCorder",
"title": "fcSuite",
"reference": "https://github.com/fitCorder/fcSuite",
"files": [
"https://github.com/fitCorder/fcSuite/raw/main/fcSuite.py"
],
"install_type": "copy",
"description": "fcFloatMatic is a custom module, that when configured correctly will increment through the lines generating you loras at different strengths. The JSON file will load the config."
},
{
"author": "lrzjason",
"title": "ComfyUIJasonNode",
"reference": "https://github.com/lrzjason/ComfyUIJasonNode",
"files": [
"https://github.com/lrzjason/ComfyUIJasonNode/raw/main/SDXLMixSampler.py",
"https://github.com/lrzjason/ComfyUIJasonNode/raw/main/LatentByRatio.py"
],
"install_type": "copy",
"description": "Nodes:SDXLMixSampler, LatentByRatio"
},
{
"author": "lordgasmic",
"title": "Wildcards",
"reference": "https://github.com/lordgasmic/ComfyUI-Wildcards",
"files": [
"https://github.com/lordgasmic/ComfyUI-Wildcards/raw/master/wildcards.py"
],
"install_type": "copy",
"description": "Nodes:CLIPTextEncodeWithWildcards. This wildcard node is a wildcard node that operates based on the seed."
},
{
"author": "throttlekitty",
"title": "SDXLCustomAspectRatio",
"reference": "https://github.com/throttlekitty/SDXLCustomAspectRatio",
"files": [
"https://raw.githubusercontent.com/throttlekitty/SDXLCustomAspectRatio/main/SDXLAspectRatio.py"
],
"install_type": "copy",
"description": "A quick and easy ComfyUI custom node for setting SDXL-friendly aspect ratios."
},
{
"author": "s1dlx",
"title": "comfy_meh",
"reference": "https://github.com/s1dlx/comfy_meh",
"files": [
"https://github.com/s1dlx/comfy_meh/raw/main/meh.py"
],
"install_type": "copy",
"description": "Advanced merging methods."
},
{
"author": "tudal",
"title": "Hakkun-ComfyUI-nodes",
"reference": "https://github.com/tudal/Hakkun-ComfyUI-nodes",
"files": [
"https://github.com/tudal/Hakkun-ComfyUI-nodes/raw/main/hakkun_nodes.py"
],
"install_type": "copy",
"description": "Nodes: Prompt parser. ComfyUI extra nodes. Mostly prompt parsing."
},
{
"author": "SadaleNet",
"title": "ComfyUI A1111-like Prompt Custom Node Solution",
"reference": "https://github.com/SadaleNet/CLIPTextEncodeA1111-ComfyUI",
"files": [
"https://github.com/SadaleNet/CLIPTextEncodeA1111-ComfyUI/raw/master/custom_nodes/clip_text_encoder_a1111.py"
],
"install_type": "copy",
"description": "Nodes: CLIPTextEncodeA1111, RerouteTextForCLIPTextEncodeA1111."
},
{
"author": "wsippel",
"title": "SDXLResolutionPresets",
"reference": "https://github.com/wsippel/comfyui_ws",
"files": [
"https://github.com/wsippel/comfyui_ws/raw/main/sdxl_utility.py"
],
"install_type": "copy",
"description": "Nodes: SDXLResolutionPresets. Easy access to the officially supported resolutions, in both horizontal and vertical formats: 1024x1024, 1152x896, 1216x832, 1344x768, 1536x640"
},
{
"author": "nicolai256",
"title": "comfyUI_Nodes_nicolai256",
"reference": "https://github.com/nicolai256/comfyUI_Nodes_nicolai256",
"files": [
"https://github.com/nicolai256/comfyUI_Nodes_nicolai256/raw/main/yugioh-presets.py"
],
"install_type": "copy",
"description": "Nodes: yugioh_Presets. by Nicolai256 inspired by throttlekitty SDXLAspectRatio"
},
{
"author": "Onierous",
"title": "QRNG_Node_ComfyUI",
"reference": "https://github.com/Onierous/QRNG_Node_ComfyUI",
"files": [
"https://github.com/Onierous/QRNG_Node_ComfyUI/raw/main/qrng_node.py"
],
"install_type": "copy",
"description": "Nodes: QRNG Node CSV. A node that takes in an array of random numbers from the ANU QRNG API and stores them locally for generating quantum random number noise_seeds in ComfyUI"
},
{
"author": "ntdviet",
"title": "ntdviet/comfyui-ext",
"reference": "https://github.com/ntdviet/comfyui-ext",
"files": [
"https://github.com/ntdviet/comfyui-ext/raw/main/custom_nodes/gcLatentTunnel/gcLatentTunnel.py"
],
"install_type": "copy",
"description": "Nodes:LatentGarbageCollector. This ComfyUI custom node flushes the GPU cache and empty cuda interprocess memory. It's helpfull for low memory environment such as the free Google Colab, especially when the workflow VAE decode latents of the size above 1500x1500."
},
{
"author": "alkemann",
"title": "alkemann nodes",
"reference": "https://gist.github.com/alkemann/7361b8eb966f29c8238fd323409efb68",
"files": [
"https://gist.github.com/alkemann/7361b8eb966f29c8238fd323409efb68/raw/f9605be0b38d38d3e3a2988f89248ff557010076/alkemann.py"
],
"install_type": "copy",
"description": "Nodes:Int to Text, Seed With Text, Save A1 Image."
},
{
"author": "catscandrive",
"title": "Image loader with subfolders",
"reference": "https://github.com/catscandrive/comfyui-imagesubfolders",
"files": [
"https://github.com/catscandrive/comfyui-imagesubfolders/raw/main/loadImageWithSubfolders.py"
],
"install_type": "copy",
"description": "Adds an Image Loader node that also shows images in subfolders of the default input directory"
},
{
"author": "Smuzzies",
"title": "Chatbox Overlay node for ComfyUI",
"reference": "https://github.com/Smuzzies/comfyui_chatbox_overlay",
"files": [
"https://github.com/Smuzzies/comfyui_chatbox_overlay/raw/main/chatbox_overlay.py"
],
"install_type": "copy",
"description": "Nodes: Chatbox Overlay. Custom node for ComfyUI to add a text box over a processed image before save node."
},
{
"author": "CaptainGrock",
"title": "ComfyUIInvisibleWatermark",
"reference": "https://github.com/CaptainGrock/ComfyUIInvisibleWatermark",
"files": [
"https://github.com/CaptainGrock/ComfyUIInvisibleWatermark/raw/main/Invisible%20Watermark.py"
],
"install_type": "copy",
"description": "Nodes:Apply Invisible Watermark, Extract Watermark. Adds up to 12 characters encoded into an image that can be extracted."
},
{
"author": "fearnworks",
"title": "Fearnworks Custom Nodes",
"reference": "https://github.com/fearnworks/ComfyUI_FearnworksNodes",
"files": [
"https://github.com/fearnworks/ComfyUI_FearnworksNodes/raw/main/fw_nodes.py"
],
"install_type": "copy",
"description": "A collection of ComfyUI nodes. These nodes are tailored for specific tasks, such as counting files in directories and sorting text segments based on token counts. Currently this is only tested on SDXL 1.0 models. An additional swich is needed to hand 1.x"
},
{
"author": "theally",
"title": "TheAlly's Custom Nodes",
"reference": "https://civitai.com/models/19625?modelVersionId=23296",
"files": [
"https://civitai.com/api/download/models/25114",
"https://civitai.com/api/download/models/24679",
"https://civitai.com/api/download/models/24154",
"https://civitai.com/api/download/models/23884",
"https://civitai.com/api/download/models/23649",
"https://civitai.com/api/download/models/23467",
"https://civitai.com/api/download/models/23296"
],
"install_type": "unzip",
"description": "Custom nodes for ComfyUI by TheAlly."
},
{
"author": "xss",
"title": "Custom Nodes by xss",
"reference": "https://civitai.com/models/24869/comfyui-custom-nodes-by-xss",
"files": [
"https://civitai.com/api/download/models/32717",
"https://civitai.com/api/download/models/47776",
"https://civitai.com/api/download/models/29772",
"https://civitai.com/api/download/models/31618",
"https://civitai.com/api/download/models/31591",
"https://civitai.com/api/download/models/29773",
"https://civitai.com/api/download/models/29774",
"https://civitai.com/api/download/models/29755",
"https://civitai.com/api/download/models/29750"
],
"install_type": "unzip",
"description": "Various image processing nodes."
},
{
"author": "aimingfail",
"title": "Image2Halftone Node for ComfyUI",
"reference": "https://civitai.com/models/143293/image2halftone-node-for-comfyui",
"files": [
"https://civitai.com/api/download/models/158997"
],
"install_type": "unzip",
"description": "This is a node to convert an image into a CMYK Halftone dot image."
}
]
}
|