File size: 105,653 Bytes
35cdf61 |
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 |
{
"custom_nodes": [
{
"author": "#NOTICE_1.13",
"title": "NOTICE: This channel is not the default channel.",
"reference": "https://github.com/ltdrdata/ComfyUI-Manager",
"files": [],
"install_type": "git-clone",
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
},
{
"author": "Lilien86",
"title": "lauger NodePack for ComfyUI",
"reference": "https://github.com/Lilien86/lauger_NP_comfyui",
"files": [
"https://github.com/Lilien86/lauger_NP_comfyui"
],
"install_type": "git-clone",
"description": "Hey everyone it's my Custom ComfyUI Nodes Pack repository! This project contains a collection of custom nodes designed to extend the functionality of ComfyUI. These nodes offer capabilities and new creative possibilities, especially in the realms of latent space manipulation and interpolation.\nNOTE: The files in the repo are not organized."
},
{
"author": "haodman",
"title": "ComfyUI_Rain",
"reference": "https://github.com/haodman/ComfyUI_Rain",
"files": [
"https://github.com/haodman/ComfyUI_Rain"
],
"install_type": "git-clone",
"description": "NODES:Rain_ValueSwitch, Rain_Math, Rain_IntToFloat, Rain_ImageSize."
},
{
"author": "bananasss00",
"title": "Comfyui-PyExec [UNSAFE]",
"reference": "https://github.com/bananasss00/Comfyui-PyExec",
"files": [
"https://github.com/bananasss00/Comfyui-PyExec"
],
"install_type": "git-clone",
"description": "Nodes:PyExec.[w/This node allows access to arbitrary files through the workflow, which could pose a security threat.]"
},
{
"author": "jgbrblmd",
"title": "ComfyUI-ComfyFluxSize [WIP]",
"reference": "https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize",
"files": [
"https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize"
],
"install_type": "git-clone",
"description": "Nodes:ComfyFlux Size\nNOTE: The files in the repo are not organized."
},
{
"author": "yojimbodayne",
"title": "ComfyUI-Dropbox-API [WIP]",
"reference": "https://github.com/yojimbodayne/ComfyUI-Dropbox-API",
"files": [
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API"
],
"install_type": "git-clone",
"description": "This custom node package for ComfyUI allows users to interact with Dropbox API, enabling image, text, and video uploads, downloads, and management directly from ComfyUI workflows.\nNOTE: The files in the repo are not organized."
},
{
"author": "ilovejohnwhite",
"title": "Kolors Awesome Prompts [WIP]",
"reference": "https://github.com/ilovejohnwhite/Tracer",
"files": [
"https://github.com/ilovejohnwhite/Tracer"
],
"install_type": "git-clone",
"description": "Nodes:Image Load TTK, SuckerPunch, LinkMasterNode, PixelPerfectResolution, ImageGenResolutionFromImage, ImageGenResolutionFromLatent, HintImageEnchance\nNOTE: The files in the repo are not organized."
},
{
"author": "shuanshtalon468uan",
"title": "ComfyUI-Rpg-Architect [WIP]",
"reference": "https://github.com/talon468/ComfyUI-Rpg-Architect",
"files": [
"https://github.com/talon468/ComfyUI-Rpg-Architect"
],
"install_type": "git-clone",
"description": "Custom Node for ComfyUI to create RPG Characters\nNOTE: The files in the repo are not organized."
},
{
"author": "shuanshuan",
"title": "ComfyUI_CheckPointLoader_Ext [WIP]",
"reference": "https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext",
"files": [
"https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext"
],
"install_type": "git-clone",
"description": "NODES:Checkpoint Loader Ext"
},
{
"author": "123jimin",
"title": "ComfyUI MobileForm [WIP]",
"reference": "https://github.com/123jimin/ComfyUI-MobileForm",
"files": [
"https://github.com/123jimin/ComfyUI-MobileForm"
],
"install_type": "git-clone",
"description": "MobileForm is an extension for ComfyUI, providing simple form for any workflows, suitable for use on mobile phones.[w/Currently MobileForm is in a PoC state; expect bugs and breaking changes.]"
},
{
"author": "go-package-lab",
"title": "ComfyUI-Tools-Video-Combine [WIP]",
"reference": "https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine",
"files": [
"https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine"
],
"install_type": "git-clone",
"description": "NODES:LoadAudioUrl, VideoWatermark"
},
{
"author": "jinljin",
"title": "ComfyUI-Talking-Head [WIP]",
"reference": "https://github.com/jinljin/ComfyUI-ElevenlabsAndDID-Combine",
"files": [
"https://github.com/jinljin/ComfyUI-ElevenlabsAndDID-Combine"
],
"install_type": "git-clone",
"description": "ComfyUI-Talking-Head"
},
{
"author": "zhongpei",
"title": "Comfyui_image2prompt",
"id": "img2prompt",
"reference": "https://github.com/zhongpei/Comfyui_image2prompt",
"files": [
"https://github.com/zhongpei/Comfyui_image2prompt"
],
"install_type": "git-clone",
"description": "Nodes:Image to Text, Loader Image to Text Model.[w/This custom node may break dependencies by reinstalling the torch package.]"
},
{
"author": "APZmedia",
"title": "comfyui-textools [WIP]",
"reference": "https://github.com/APZmedia/comfyui-textools",
"files": [
"https://github.com/APZmedia/comfyui-textools"
],
"install_type": "git-clone",
"description": "ComfyUI-textools is a collection of custom nodes designed for use with ComfyUI. These nodes enhance text processing capabilities, including applying rich text overlays on images and cleaning file names for safe and consistent file management.\nNOTE: The files in the repo are not organized."
},
{
"author": "VykosX",
"title": "ControlFlowUtils [UNSTABLE]",
"reference": "https://github.com/VykosX/ControlFlowUtils",
"files": [
"https://github.com/VykosX/ControlFlowUtils"
],
"install_type": "git-clone",
"description": "Custom nodes for ComfyUI to enable flow control with advanced loops, conditional branching, logic operations and several other nifty utilities to enhance your ComfyUI workflows"
},
{
"author": "shinich39",
"title": "comfyui-event-handler [USAFE]",
"reference": "https://github.com/shinich39/comfyui-event-handler",
"files": [
"https://github.com/shinich39/comfyui-event-handler"
],
"install_type": "git-clone",
"description": "Javascript code will run when an event fires. [w/This node allows you to execute arbitrary JavaScript code as input for the workflow.]"
},
{
"author": "Comfy Org",
"title": "ComfyUI_devtools [WIP]",
"reference": "https://github.com/Comfy-Org/ComfyUI_devtools",
"files": [
"https://github.com/Comfy-Org/ComfyUI_devtools"
],
"install_type": "git-clone",
"description": "ComfyUI developer tools (Custom Node)"
},
{
"author": "Sakura-nee",
"title": "ComfyUI_Save2Discord",
"reference": "https://github.com/Sakura-nee/ComfyUI_Save2Discord",
"files": [
"https://github.com/Sakura-nee/ComfyUI_Save2Discord"
],
"install_type": "git-clone",
"description": "Nodes:Send Generated Image To Discord Webhook.\nNOTE: The files in the repo are not organized."
},
{
"author": "ThisModernDay",
"title": "ComfyUI Instructor Ollama",
"reference": "https://github.com/ThisModernDay/ComfyUI-InstructorOllama",
"files": [
"https://github.com/ThisModernDay/ComfyUI-InstructorOllama"
],
"install_type": "git-clone",
"description": "Custom ComfyUI Nodes for interacting with Ollama using the Instructor. Library to provide structured output from your LLM. To use this properly, you would need a running Ollama server reachable from the host that is running ComfyUI.\nNOTE: The files in the repo are not organized, which may lead to update issues."
},
{
"author": "gioferreira",
"title": "ComfyUI-Molde-Utils",
"reference": "https://github.com/gioferreira/ComfyUI-Molde-Utils",
"files": [
"https://github.com/gioferreira/ComfyUI-Molde-Utils"
],
"install_type": "git-clone",
"description": "ComfyUI-Molde-Utils is a utility library designed to provide various helper functions for working with UI elements. This project includes modules for handling bezier curves and color conversions.\nNOTE: The files in the repo are not organized, which may lead to update issues."
},
{
"author": "kijai",
"title": "ComfyUI nodes for VEnhancer [WIP]",
"reference": "https://github.com/kijai/ComfyUI-VEnhancer",
"files": [
"https://github.com/kijai/ComfyUI-VEnhancer"
],
"install_type": "git-clone",
"description": "Original repo: [a/https://github.com/Vchitect/VEnhancer](https://github.com/Vchitect/VEnhancer)"
},
{
"author": "jimstudt",
"title": "Jim's ComfyUI Nodes [WIP]",
"reference": "https://github.com/jimstudt/ComfyUI-Jims-Nodes",
"files": [
"https://github.com/jimstudt/ComfyUI-Jims-Nodes"
],
"install_type": "git-clone",
"description": "Zoom and Enhance Nodes, Text Dictionary Nodes"
},
{
"author": "hananbeer",
"title": "node_dev - ComfyUI Node Development Helper",
"reference": "https://github.com/hananbeer/node_dev",
"files": [
"https://github.com/hananbeer/node_dev"
],
"install_type": "git-clone",
"description": "Browse to this endpoint to reload custom nodes for more streamlined development:\nhttp://127.0.0.1:8188/node_dev/reload/<module_name>"
},
{
"author": "Weixuanf",
"title": "ComfyUI extra model folder helper [WIP]",
"reference": "https://github.com/Weixuanf/extra-model-helper",
"files": [
"https://github.com/Weixuanf/extra-model-helper"
],
"install_type": "git-clone",
"description": "this will automaticlaly read the subfolders like 'checkpoints', 'loras' under the extra model folder path you specify in extra_model_paths.yaml and add them to folder paths, so you don't need to define those subfolders one by one.\nNOTE: invalid pyproject.toml"
},
{
"author": "Weixuanf",
"title": "ComfyUI File Manager for nodecafe.co [WIP]",
"reference": "https://github.com/Weixuanf/nodecafe-file-manager",
"files": [
"https://github.com/Weixuanf/nodecafe-file-manager"
],
"install_type": "git-clone",
"description": "To view and download files in ComfyUI\nNOTE: invalid pyproject.toml"
},
{
"author": "sebord",
"title": "ComfyUI-LMCQ [WIP]",
"reference": "https://github.com/sebord/ComfyUI-LMCQ",
"files": [
"https://github.com/sebord/ComfyUI-LMCQ"
],
"install_type": "git-clone",
"description": "ComfyUI small node toolkit, this toolkit is mainly to update some practical small nodes, to make a contribution to the comfyui ecosystem, PS: 'LMCQ' is the abbreviation of the team name\nNOTE: The files in the repo are not organized, which may lead to update issues."
},
{
"author": "logtd",
"title": "ComfyUI-Fluxtapoz [WIP]",
"reference": "https://github.com/logtd/ComfyUI-Fluxtapoz",
"files": [
"https://github.com/logtd/ComfyUI-Fluxtapoz"
],
"install_type": "git-clone",
"description": "A set of nodes for editing images using Flux in ComfyUI"
},
{
"author": "ChrisColeTech",
"title": "ComfyUI-Get-Random-File [UNSAFE]",
"reference": "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File",
"files": [
"https://github.com/ChrisColeTech/ComfyUI-Get-Random-File"
],
"install_type": "git-clone",
"description": "Gets a random file from a directory. Returns the filpath as a STRING. [w/This node allows access to arbitrary files through the workflow, which could pose a security threat.]"
},
{
"author": "logtd",
"title": "ComfyUI-Fluxtapoz [WIP]",
"reference": "https://github.com/logtd/ComfyUI-Fluxtapoz",
"files": [
"https://github.com/logtd/ComfyUI-Fluxtapoz"
],
"install_type": "git-clone",
"description": "A set of nodes for editing images using Flux in ComfyUI"
},
{
"author": "neeltheninja",
"title": "ComfyUI-ControlNeXt [WIP]",
"reference": "https://github.com/neverbiasu/ComfyUI-ControlNeXt",
"files": [
"https://github.com/neverbiasu/ComfyUI-ControlNeXt"
],
"install_type": "git-clone",
"description": "In progress🚧"
},
{
"author": "neeltheninja",
"title": "ComfyUI-TextOverlay",
"reference": "https://github.com/neeltheninja/ComfyUI-TextOverlay",
"files": [
"https://github.com/neeltheninja/ComfyUI-TextOverlay"
],
"install_type": "git-clone",
"description": "A custom node for ComfyUI that adds text overlay to images, with options for text and background color, opacity, vertical positioning, and custom font selection. [w/Name conflict with munkyfoot/ComfyUI-TextOverlay. Cannot install simulatenously.]"
},
{
"author": "comfyanonymous",
"title": "ComfyUI_bitsandbytes_NF4 [EXPERIMENTAL]",
"reference": "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4",
"files": [
"https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4"
],
"install_type": "git-clone",
"description": "A quickly written custom node that uses code from Forge to support the nf4 flux dev checkpoint and nf4 flux schnell checkpoint.\nRequires installing bitsandbytes.\nMake sure your ComfyUI is updated.\nThe node is: CheckpointLoaderNF4, just plug it in your flux workflow instead of the regular one.[w/NF4 checckpoint doesn't support LoRA.]"
},
{
"author": "kijai",
"title": "ComfyUI-EasyAnimateWrapper [WIP]",
"reference": "https://github.com/kijai/ComfyUI-EasyAnimateWrapper",
"files": [
"https://github.com/kijai/ComfyUI-EasyAnimateWrapper"
],
"install_type": "git-clone",
"description": "EasyAnimateWrapper for ComfyUI"
},
{
"author": "logtd",
"title": "ComfyUI-Veevee [WIP]",
"reference": "https://github.com/logtd/ComfyUI-Veevee",
"files": [
"https://github.com/logtd/ComfyUI-Veevee"
],
"install_type": "git-clone",
"description": "A Video2Video framework for text2image models in ComfyUI. Supports SD1.5 and SDXL."
},
{
"author": "IuvenisSapiens",
"title": "ComfyUI_MiniCPM-V-2_6-int4",
"id": "minicpm-v-2_6-int4",
"reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4",
"files": [
"https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4"
],
"install_type": "git-clone",
"description": "This is an implementation of [a/MiniCPM-V-2_6-int4](https://github.com/OpenBMB/MiniCPM-V) by [a/ComfyUI](https://github.com/comfyanonymous/ComfyUI), including support for text-based queries, video queries, single-image queries, and multi-image queries to generate captions or responses."
},
{
"author": "chrisdreid",
"title": "ComfyUI_EnvAutopsyAPI [UNSAFE]",
"reference": "https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI",
"files": [
"https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI"
],
"install_type": "git-clone",
"description": "ComfyUI_EnvAutopsyAPI is a powerful debugging tool designed for ComfyUI that provides in-depth analysis of your environment and dependencies through an API interface. This tool allows you to inspect environment variables, pip packages, and dependency trees, making it easier to diagnose and resolve issues in your ComfyUI setup.[w/This tool may expose sensitive system information if used on a public server. MUST READ [a/THIS](https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI#%EF%B8%8F-warning-security-risk-%EF%B8%8F) before install.]"
},
{
"author": "neuratech-ai",
"title": "ComfyUI-MultiGPU",
"reference": "https://github.com/neuratech-ai/ComfyUI-MultiGPU",
"files": [
"https://github.com/neuratech-ai/ComfyUI-MultiGPU"
],
"install_type": "git-clone",
"description": "Experimental nodes for using multiple GPUs in a single ComfyUI workflow.\nThis extension adds new nodes for model loading that allow you to specify the GPU to use for each model. It monkey patches the memory management of ComfyUI in a hacky way and is neither a comprehensive solution nor a well-tested one. Use at your own risk.\nNote that this does not add parallelism. The workflow steps are still executed sequentially just on different GPUs. Any potential speedup comes from not having to constantly load and unload models from VRAM."
},
{
"author": "Isi-dev",
"title": "Isi-dev/ComfyUI-UniAnimate",
"reference": "https://github.com/Isi-dev/ComfyUI-UniAnimate",
"files": [
"https://github.com/Isi-dev/ComfyUI-UniAnimate"
],
"install_type": "git-clone",
"description": "This is my ComfyUi-windows implementation for the image animation project ▶ UniAnimate: Taming Unified Video Diffusion Models for Consistent Human Image Animation[w/This node cannot be installed simultaneously with ComfyUI-UniAnimate by AIFSH because it has the same name as that custom node.]"
},
{
"author": "Futureversecom",
"title": "ComfyUI-JEN",
"reference": "https://github.com/futureversecom/ComfyUI-JEN",
"files": [
"https://github.com/futureversecom/ComfyUI-JEN"
],
"install_type": "git-clone",
"description": "Comfy UI custom nodes for JEN music generation powered by Futureverse"
},
{
"author": "denislov",
"title": "Comfyui_AutoSurvey",
"reference": "https://github.com/denislov/Comfyui_AutoSurvey",
"files": [
"https://github.com/denislov/Comfyui_AutoSurvey"
],
"install_type": "git-clone",
"description": "Nodes:AutoSurvey, WriteOutline, WriteSection, ChatModel, QueryKnowledge, ManageDatabase, AddDoc2Knowledge"
},
{
"author": "leoleelxh",
"title": "ComfyUI-MidjourneyNode-leoleexh",
"reference": "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh",
"files": [
"https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh"
],
"install_type": "git-clone",
"description": "This node allows ComfyUI to easily integrate with Midjourney, utilizing the ultra-high quality of Midjourney and the powerful control of SD to provide more convenient capabilities for AIGC.\nNOTE: This node relies on the midjourney proxy project and requires API deployment in advance. For detailed installation, please refer to the instructions of the project. https://github.com/novicezk/midjourney-proxy"
},
{
"author": "kijai",
"title": "ComfyUI-FollowYourEmojiWrapper [WIP]",
"reference": "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper",
"files": [
"https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper"
],
"install_type": "git-clone",
"description": "Original repo: [a/https://github.com/mayuelala/FollowYourEmoji](https://github.com/mayuelala/FollowYourEmoji)"
},
{
"author": "haomole",
"title": "Comfyui-SadTalker",
"reference": "https://github.com/haomole/Comfyui-SadTalker",
"files": [
"https://github.com/haomole/Comfyui-SadTalker"
],
"install_type": "git-clone",
"description": "[a/SadTalker](https://github.com/OpenTalker/SadTalker) for ComfyUI"
},
{
"author": "hotpizzatactics",
"title": "ComfyUI-WaterMark-Detector",
"id": "watermark-detector",
"reference": "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector",
"files": [
"https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector"
],
"install_type": "git-clone",
"description": "Nodes:CLAHE Enhancement, High Pass Filter, Edge Detection, Combine Enhancements, Adaptive Thresholding, Morphological Operations, Gray Color Enhancement, Improved Gray Color Enhancement, Texture Enhancement, Denoising Filter, Flexible Combine Enhancements."
},
{
"author": "AIFSH",
"title": "IMAGDressing-ComfyUI",
"id": "imagdressing",
"reference": "https://github.com/AIFSH/IMAGDressing-ComfyUI",
"files": [
"https://github.com/AIFSH/IMAGDressing-ComfyUI"
],
"install_type": "git-clone",
"description": "Nodes:IMAGDressingNode, TextNode"
},
{
"author": "BetaDoggo",
"title": "ComfyUI-LogicGates",
"id": "logicgates",
"reference": "https://github.com/BetaDoggo/ComfyUI-LogicGates",
"files": [
"https://github.com/BetaDoggo/ComfyUI-LogicGates"
],
"install_type": "git-clone",
"description": "Binary Nodes, Byte Nodes, ..."
},
{
"author": "shadowcz007",
"title": "comfyui-hydit",
"reference": "https://github.com/shadowcz007/comfyui-hydit-lowvram",
"files": [
"https://github.com/shadowcz007/comfyui-hydit-lowvram"
],
"install_type": "git-clone",
"description": "HunYuan Diffusers Nodes"
},
{
"author": "adityathiru",
"title": "ComfyUI LLMs [WIP]",
"reference": "https://github.com/adityathiru/ComfyUI-LLMs",
"files": [
"https://github.com/adityathiru/ComfyUI-LLMs"
],
"install_type": "git-clone",
"description": "Goal: To enable folks to rapidly build complex workflows with LLMs\nNOTE:☠️ This is experimental and not recommended to use in a production environment (yet!)"
},
{
"author": "walterFeng",
"title": "ComfyUI-Image-Utils",
"reference": "https://github.com/walterFeng/ComfyUI-Image-Utils",
"files":[
"https://github.com/walterFeng/ComfyUI-Image-Utils"
],
"install_type":"git-clone",
"description":"Nodes: Calculate Image Brightness"
},
{
"author": "zml-ai",
"title": "comfyui-hydit",
"reference": "https://github.com/zml-ai/comfyui-hydit",
"files":[
"https://github.com/zml-ai/comfyui-hydit"
],
"install_type":"git-clone",
"description":"The ComfyUI code is under review in the official repository. Meanwhile, a temporary version is available below for immediate community use. We welcome users to try our workflow and appreciate any inquiries or suggestions."
},
{
"author": "JichaoLiang",
"title": "Immortal_comfyUI",
"reference": "https://github.com/JichaoLiang/Immortal_comfyUI",
"files":[
"https://github.com/JichaoLiang/Immortal_comfyUI"
],
"install_type":"git-clone",
"description":"Nodes: NewNode, AppendNode, MergeNode, SetProperties, SaveToDirectory, ..."
},
{
"author": "melMass",
"title": "ComfyUI-Lygia",
"id": "lygia",
"reference": "https://github.com/melMass/ComfyUI-Lygia",
"files": [
"https://github.com/melMass/ComfyUI-Lygia"
],
"install_type": "git-clone",
"description": "NODES: LygiaProgram, LygiaUniforms"
},
{
"author": "SpaceWarpStudio",
"title": "ComfyUI_Remaker_FaceSwap",
"reference": "https://github.com/SpaceWarpStudio/ComfyUI_Remaker_FaceSwap",
"files": [
"https://github.com/SpaceWarpStudio/ComfyUI_Remaker_FaceSwap"
],
"install_type": "git-clone",
"description": "Nodes:Remaker Face Swap"
},
{
"author": "VisionExp",
"title": "ve_custom_comfyui_nodes",
"reference": "https://github.com/VisionExp/ve_custom_comfyui_nodes",
"files": [
"https://github.com/VisionExp/ve_custom_comfyui_nodes"
],
"install_type": "git-clone",
"description": "Nodes:LoadImgFromInputUrl"
},
{
"author": "LevelPixel",
"title": "ComfyUI-LevelPixel",
"id": "levelpixel",
"reference": "https://github.com/LevelPixel/ComfyUI-LevelPixel",
"files": [
"https://github.com/LevelPixel/ComfyUI-LevelPixel"
],
"install_type": "git-clone",
"description": "Nodes:Model Unloader, LLM Optional Memory Free Advanced"
},
{
"author": "StartHua",
"title": "Comfyui_CXH_CRM",
"id": "csdmt-cxh",
"reference": "https://github.com/StartHua/Comfyui_CSDMT_CXH",
"files": [
"https://github.com/StartHua/Comfyui_CSDMT_CXH"
],
"install_type": "git-clone",
"description": "Node:CSD_Makeup\nNOTE:You need to download [a/pre-trained model file](https://github.com/StartHua/Comfyui_CSDMT_CXH)."
},
{
"author": "ZHO-ZHO-ZHO",
"title": "ComfyUI-AuraSR-ZHO",
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-AuraSR-ZHO",
"files": [
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-AuraSR-ZHO"
],
"install_type": "git-clone",
"description": "AuraSR in ComfyUI for img & video\n[w/If the custom_nodes path is not under ComfyUI, be careful as it may not install properly.]"
},
{
"author": "tom-doerr",
"title": "DSPy Nodes [WIP]",
"reference": "https://github.com/tom-doerr/dspy_nodes",
"files": [
"https://github.com/tom-doerr/dspy_nodes"
],
"install_type": "git-clone",
"description": "This is an attempt to make all DSPy features available in ComfyUI. Using an UI to devlop DSPy programs should be way faster since it makes it easier to see what is happening and allows to quickly iterate on the DSPy program structure."
},
{
"author": "Grant-CP",
"title": "ComfyUI-LivePortraitKJ-MPS",
"reference": "https://github.com/Grant-CP/ComfyUI-LivePortraitKJ-MPS",
"files": [
"https://github.com/Grant-CP/ComfyUI-LivePortraitKJ-MPS"
],
"install_type": "git-clone",
"description": "If you wish to incorporate these changes into your repo, feel free to open an issue and ask. The commits should be pretty clear, and I also label almost all changes with #HACK so a full text search will work too.\nPlease let me know if you decide to incorporate any of these changes into your LivePortrait implementation so I can direct people to you repository. I do not intend to maintain this repo.\nSome operations are simply not supported on MPS and I didn't rewrite them. Most of my changes are just to .cuda calls and that sort of thing. Many operations are still done on CPU, so don't expect awesome performance."
},
{
"author": "thderoo",
"title": "_topfun_s_nodes",
"reference": "https://github.com/thderoo/ComfyUI-_topfun_s_nodes",
"files": [
"https://github.com/thderoo/ComfyUI-_topfun_s_nodes"
],
"install_type": "git-clone",
"description": "Nodes:Conditioning Perturbation"
},
{
"author": "willblaschko",
"title": "ComfyUI-Unload-Models",
"reference": "https://github.com/willblaschko/ComfyUI-Unload-Models",
"files": [
"https://github.com/willblaschko/ComfyUI-Unload-Models"
],
"install_type": "git-clone",
"description": "This repository provides developers with a way to better manage their ComfyUI model memory. It includes nodes that allow developers to either unload all models or unload one model at a time. These nodes are designed as pass-through nodes, so they can be used anywhere in the flow. The nodes can be found in the 'Unload Model' section.[w/These are massive hammers, and it could be possible to break things, please don't use them if you need finesse.]"
},
{
"author": "AIFSH",
"title": "ComfyUI-OpenDIT [WIP]",
"id": "opendit",
"reference": "https://github.com/AIFSH/ComfyUI-OpenDIT",
"files": [
"https://github.com/AIFSH/ComfyUI-OpenDIT"
],
"install_type": "git-clone",
"description": "make [a/OpenDIT](https://github.com/NUS-HPC-AI-Lab/OpenDiT) avaliable in ComfyUI"
},
{
"author": "alexisrolland",
"title": "alexisrolland/ComfyUI-AuraSR",
"id": "aurasr-alexisrolland",
"reference": "https://github.com/alexisrolland/ComfyUI-AuraSR",
"files": [
"https://github.com/alexisrolland/ComfyUI-AuraSR"
],
"install_type": "git-clone",
"description": "Custom ComfyUI nodes to run [a/fal-ai/AuraSR](https://huggingface.co/fal-ai/AuraSR) model.[w/This node cannot be installed simultaneously with AIFSH/ComfyUI-AuraSR due to overlapping repository names.]"
},
{
"author": "linhusyung",
"title": "ComfyUI Build and Train Your Network [WIP]",
"id": "cfgpp",
"reference": "https://github.com/linhusyung/comfyui-Build-and-train-your-network",
"files": [
"https://github.com/linhusyung/comfyui-Build-and-train-your-network"
],
"install_type": "git-clone",
"description": "Stable Diffusion is an image generation technique based on diffusion models. Its core idea involves simulating diffusion processes by iteratively adding noise and using neural networks to predict and remove the noise, thereby generating high-quality images. This approach is not limited to image generation; with appropriate network architecture and training data, it can be adapted for various other tasks. The application of neural networks extends beyond image generation. By adjusting network structures and loss functions, neural networks can also perform tasks such as classification and regression. This flexibility makes neural networks a powerful tool for handling a wide range of machine learning tasks. This project aims to expand custom neural network layers (such as linear layers, convolutional layers, etc.) within ComfyUI and provide simplified task training functionalities. Through this project, users can easily construct custom neural network layers and perform training in ComfyUI using a graphical interface."
},
{
"author": "alexgenovese",
"title": "comfyui_CfgPlusPlus [WIP]",
"id": "cfgpp",
"reference": "https://gitea.com/NotEvilGirl/cfgpp",
"files": [
"https://gitea.com/NotEvilGirl/cfgpp"
],
"install_type": "git-clone",
"description": "CFG++ implemented according to [a/https://cfgpp-diffusion.github.io](https://cfgpp-diffusion.github.io). Basically modified DDIM sampler that makes sampling work at low CFG values (0 ~ 2). Read the CFG++ paper for more details"
},
{
"author": "Fucci-Mateo",
"title": "ComfyUI-Airtable [WIP]",
"id": "airtable",
"reference": "https://github.com/Fucci-Mateo/ComfyUI-Airtable",
"files": [
"https://github.com/Fucci-Mateo/ComfyUI-Airtable"
],
"install_type": "git-clone",
"description": "A simple node to load image from local path or http url. You can find this node from 'image' category."
},
{
"author": "majorsauce",
"title": "comfyui_indieTools [WIP]",
"id": "indie-tools",
"reference": "https://github.com/majorsauce/comfyui_indieTools",
"files": [
"https://github.com/majorsauce/comfyui_indieTools"
],
"install_type": "git-clone",
"description": "Nodes:[Indie] Cut by Mask, [Indie] Paste Image, [Indie] Local Scale, [Indie] Solidify, [Indie] Yolo Detector.[w/Install may fail due to invliad requirements.txt file]"
},
{
"author": "AIFSH",
"title": "ComfyUI-ViViD",
"id": "vivid",
"reference": "https://github.com/AIFSH/ComfyUI-ViViD",
"files": [
"https://github.com/AIFSH/ComfyUI-ViViD"
],
"install_type": "git-clone",
"description": "a comfyui custom node for ViViD"
},
{
"author": "NeuralNotW0rk",
"title": "ComfyUI-Waveform-Extensions",
"reference": "https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions",
"files": [
"https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/raw/main/EXT_VariationUtils.py",
"https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/raw/main/EXT_AudioManipulation.py"
],
"install_type": "copy",
"description": "Some additional audio utilites for use on top of Sample Diffusion ComfyUI Extension"
},
{
"author": "nat-chan",
"title": "comfyui-paint",
"reference": "https://github.com/nat-chan/comfyui-paint",
"files": [
"https://github.com/nat-chan/comfyui-paint"
],
"install_type": "git-clone",
"description": "comfyui-paint\n[w/You need to clone submodule manually after clone. There is permission issue.]"
},
{
"author": "prabinpebam",
"title": "anyPython [UNSAFE]",
"reference": "https://github.com/prabinpebam/anyPython",
"files": [
"https://github.com/prabinpebam/anyPython"
],
"install_type": "git-clone",
"description": "This node was inspired by AnyNode. I wanted to have a node where I can paste any python script and execute it. That way I can use this node in combination with a Custom node like the Ollama node that can generate the python code and feed into this node. This also makes it much easier to debug or modify the code iteratively. As of the current version, I've created separate nodes for no input, 1 input and 2 inputs. The input also currently takes only sting as input. Let me know in the discussion how you would use this node.\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
},
{
"author": "kijai",
"title": "ComfyUI DiffSynth wrapper nodes",
"id": "diffsynth-wrapper",
"reference": "https://github.com/kijai/ComfyUI-DiffSynthWrapper",
"files": [
"https://github.com/kijai/ComfyUI-DiffSynthWrapper"
],
"install_type": "git-clone",
"description": "Currently only the new extended SVD model 'ExVideo' is supported.\nOriginal repo:[a/https://github.com/modelscope/DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio)"
},
{
"author": "AllenEdgarPoe",
"title": "ComfyUI-Xorbis-nodes",
"id": "xorbis",
"reference": "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes",
"files": [
"https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes"
],
"install_type": "git-clone",
"description": "This repository is for MuseumX Update. We use ComfyUI as our framework, and the nodes are built for my comfort."
},
{
"author": "mikeymcfish",
"title": "LaserCutterFull and Deptherize Nodes",
"id": "fishtools",
"reference": "https://github.com/mikeymcfish/FishTools",
"files": [
"https://github.com/mikeymcfish/FishTools"
],
"install_type": "git-clone",
"description": "This repository contains two custom nodes, LaserCutterFull and Deptherize, designed for use in image processing workflows. The LaserCutterFull node processes input images to generate layers for laser cutting, while the Deptherize node converts SVG data into a depth map image."
},
{
"author": "pzzmyc",
"title": "comfyui-sd3-simple-simpletuner",
"id": "simpletuner",
"reference": "https://github.com/pzzmyc/comfyui-sd3-simple-simpletuner",
"files": [
"https://github.com/pzzmyc/comfyui-sd3-simple-simpletuner"
],
"install_type": "git-clone",
"description": "Nodes:sd3 simple simpletuner by hhy."
},
{
"author": "horidream",
"title": "ComfyUI-Horidream",
"id": "horidream",
"reference": "https://github.com/horidream/ComfyUI-Horidream",
"files": [
"https://github.com/horidream/ComfyUI-Horidream"
],
"install_type": "git-clone",
"description": "Nodes:Pass Through With Sound."
},
{
"author": "kijai",
"title": "ComfyUI-DiffusersSD3Wrapper",
"id": "diffusers-sd3-wrapper",
"reference": "https://github.com/kijai/ComfyUI-DiffusersSD3Wrapper",
"files": [
"https://github.com/kijai/ComfyUI-DiffusersSD3Wrapper"
],
"install_type": "git-clone",
"description": "Nodes:Load SD3DiffusersPipeline, SD3 ControlNet Sampler"
},
{
"author": "AustinMroz",
"title": "ComfyUI-SD3-Medium-CN-Diffusers [WIP]",
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-SD3-Medium-CN-Diffusers",
"files": [
"https://github.com/AustinMroz/ComfyUI-WorkflowCheckpointing"
],
"install_type": "git-clone",
"description": "ComfyUI SD3-Medium ControlNet (Diffusers)"
},
{
"author": "redhottensors",
"title": "ComfyUI-ODE",
"id": "ode",
"reference": "https://github.com/redhottensors/ComfyUI-ODE",
"files": [
"https://github.com/redhottensors/ComfyUI-ODE"
],
"install_type": "git-clone",
"description": "ODE Solvers for ComfyUI\nThis node enables use of torchdiffeq ODE solvers with models. Intended for use with Stable Diffusion 3 and similar flow models."
},
{
"author": "maruhidd",
"title": "Transparent Background for ComfyUI",
"id": "transparent-bg",
"reference": "https://github.com/maruhidd/ComfyUI_Transparent-Background",
"files": [
"https://github.com/maruhidd/ComfyUI_Transparent-Background"
],
"install_type": "git-clone",
"description": "Nodes:Remove Background, Fill Transparent"
},
{
"author": "baicai99",
"title": "ComfyUI-FrameSkipping",
"id": "frame-skipping",
"reference": "https://github.com/baicai99/ComfyUI-FrameSkipping",
"files": [
"https://github.com/baicai99/ComfyUI-FrameSkipping"
],
"install_type": "git-clone",
"description": "This plugin can precisely control the rendering between frames, completing the synthesis of multiple frames in a single load. My homepage includes my attached workflow."
},
{
"author": "ejektaflex",
"title": "ComfyUI - Ty",
"id": "ty-nodes",
"reference": "https://github.com/ejektaflex/ComfyUI-Ty",
"files": [
"https://github.com/ejektaflex/ComfyUI-Ty"
],
"install_type": "git-clone",
"description": "Nodes:Lora Block Weight Regex Loader"
},
{
"author": "jtydhr88",
"title": "ComfyUI-Unique3D [WIP]",
"id": "unique3d",
"reference": "https://github.com/jtydhr88/ComfyUI-Unique3D",
"files": [
"https://github.com/jtydhr88/ComfyUI-Unique3D"
],
"install_type": "git-clone",
"description": "ComfyUI Unique3D is custom nodes that running [a/AiuniAI/Unique3D](https://github.com/AiuniAI/Unique3D) into ComfyUI."
},
{
"author": "kycg",
"title": "comfyui-Kwtoolset",
"id": "kwtoolset",
"reference": "https://github.com/kycg/comfyui-Kwtoolset",
"files": [
"https://github.com/kycg/comfyui-Kwtoolset"
],
"install_type": "git-clone",
"description": "Nodes:KwtoolsetLoraLoaderwithpreview, KwtoolsetCheckpointLoaderwithpreview, KwtoolsetLoadCheckpointsBatch, KwtoolsetGrowMaskPlus, KwtoolsetGetHipMask, KwtoolsetGetHipMasktest, KwtoolsetGetImageSize, KWPositiveString, KWNagetiveString, KWanywhereString, KwtoolsetChangeOpenpose, ..."
},
{
"author": "mashb1t",
"title": "ComfyUI mashb1t nodes",
"id": "mashb1t",
"reference": "https://github.com/mashb1t/comfyui-nodes-mashb1t",
"files": [
"https://github.com/mashb1t/comfyui-nodes-mashb1t"
],
"install_type": "git-clone",
"description": "This Python script is an optional add-on to the Comfy UI stable diffusion client."
},
{
"author": "immersiveexperience",
"title": "ie-comfyui-color-nodes",
"reference": "https://github.com/immersiveexperience/ie-comfyui-color-nodes",
"files": [
"https://github.com/immersiveexperience/ie-comfyui-color-nodes"
],
"install_type": "git-clone",
"description": "Custom ComfyUI nodes for simple color correction."
},
{
"author": "LZpenguin",
"title": "ComfyUI-Text",
"id": "comfy-text",
"reference": "https://github.com/LZpenguin/ComfyUI-Text",
"files": [
"https://github.com/LZpenguin/ComfyUI-Text"
],
"install_type": "git-clone",
"description": "Nodes:Add_text_by_mask.[w/This custom node cannot be installed simultaneously as it has the same repository name as MarkoCa1/ComfyUI-Text.]"
},
{
"author": "yushan777",
"title": "Y7 Nodes for ComfyUI",
"id": "y7nodes",
"reference": "https://github.com/yushan777/ComfyUI-Y7Nodes",
"files": [
"https://github.com/yushan777/ComfyUI-Y7Nodes"
],
"install_type": "git-clone",
"description": "Nodes:Count_Tokens_(Y7)"
},
{
"author": "norgeous",
"title": "UI Builder [WIP]",
"id": "norgeous",
"reference": "https://github.com/norgeous/ComfyUI-UI-Builder",
"files": [
"https://github.com/norgeous/ComfyUI-UI-Builder"
],
"install_type": "git-clone",
"description": "Alternative configurable React UI overlay for Comfy UI."
},
{
"author": "Shinsplat",
"title": "ComfyUI-Shinsplat [UNSAFE]",
"id": "shinsplat",
"reference": "https://github.com/Shinsplat/ComfyUI-Shinsplat",
"files": [
"https://github.com/Shinsplat/ComfyUI-Shinsplat"
],
"install_type": "git-clone",
"description": "Nodes: Clip Text Encode (Shinsplat), Clip Text Encode SDXL (Shinsplat), Lora Loader (Shinsplat).\n[w/This extension poses a risk of executing arbitrary commands through workflow execution. Please be cautious.]"
},
{
"author": "hy134300",
"title": "comfyui-hydit",
"reference": "https://github.com/hy134300/comfyui-hydit",
"files": [
"https://github.com/hy134300/comfyui-hydit"
],
"install_type": "git-clone",
"description": "This repository contains a customized node and workflow designed specifically for HunYuan DIT. The official tests conducted on DDPM, DDIM, and DPMMS have consistently yielded results that align with those obtained through the Diffusers library. However, it's important to note that we cannot assure the consistency of results from other ComfyUI native samplers with the Diffusers inference. We cordially invite users to explore our workflow and are open to receiving any inquiries or suggestions you may have."
},
{
"author": "corbin-hayden13",
"title": "ComfyUI-Better-Dimensions",
"id": "better-dim",
"reference": "https://github.com/corbin-hayden13/ComfyUI-Better-Dimensions",
"files": [
"https://github.com/corbin-hayden13/ComfyUI-Better-Dimensions"
],
"install_type": "git-clone",
"description": "Nodes:BetterImageDimensions, SDXLDimensions, PureRatio"
},
{
"author": "endman100",
"title": "ComfyUI-augmentation",
"id": "augmentation",
"reference": "https://github.com/endman100/ComfyUI-augmentation",
"files": [
"https://github.com/endman100/ComfyUI-augmentation"
],
"install_type": "git-clone",
"description": "Nodes:RamdomFlipImage (endman100)"
},
{
"author": "endman100",
"title": "ComfyUI Nodes: SaveConditioning and LoadConditioning",
"id": "save-load-conditioning",
"reference": "https://github.com/endman100/ComfyUI-SaveAndLoadPromptCondition",
"files": [
"https://github.com/endman100/ComfyUI-SaveAndLoadPromptCondition"
],
"install_type": "git-clone",
"description": "The SaveConditioning node is designed to save conditioning data to binary files. This is useful for storing and reusing conditioning information across different sessions or applications.\n[w/This node can only handle very limited conditioning at the text prompt level.]"
},
{
"author": "marduk191",
"title": "comfyui-marnodes",
"id": "marnodes",
"reference": "https://github.com/marduk191/comfyui-marnodes",
"files": [
"https://github.com/marduk191/comfyui-marnodes"
],
"install_type": "git-clone",
"description": "Nodes:marduk191_workflow_settings"
},
{
"author": "kijai",
"title": "ComfyUI-CV-VAE",
"id": "cv-vae",
"reference": "https://github.com/kijai/ComfyUI-CV-VAE",
"files": [
"https://github.com/kijai/ComfyUI-CV-VAE"
],
"install_type": "git-clone",
"description": "Nodes:CV_VAE_Load, CV_VAE_Encode, CV_VAE_Decode"
},
{
"author": "GentlemanHu",
"title": "ComfyUI Notifier",
"id": "notifier",
"reference": "https://github.com/GentlemanHu/ComfyUI-Notifier",
"files": [
"https://github.com/GentlemanHu/ComfyUI-Notifier"
],
"install_type": "git-clone",
"description": "Nodes:GentlemanHu_Notifier"
},
{
"author": "jimmm-ai",
"title": "TimeUi a ComfyUI Timeline Node System [WIP]",
"id": "timeline",
"reference": "https://github.com/jimmm-ai/TimeUi-a-ComfyUi-Timeline-Node",
"files": [
"https://github.com/jimmm-ai/TimeUi-a-ComfyUi-Timeline-Node"
],
"install_type": "git-clone",
"description": "I've been working on the UX/UI of a timeline custom node system for ComfyUI over the past two weeks. The goal is to create a timeline similar to video/animation editing tools, without relying on traditional timeframe code. You can effortlessly add, delete, or rearrange rows, providing a streamlined user experience."
},
{
"author": "jh-leon-kim",
"title": "ComfyUI-JHK-utils",
"id": "jhk",
"reference": "https://github.com/jh-leon-kim/ComfyUI-JHK-utils",
"files": [
"https://github.com/jh-leon-kim/ComfyUI-JHK-utils"
],
"install_type": "git-clone",
"description": "Nodes:JHK_Utils_LoadEmbed, JHK_Utils_string_merge, JHK_Utils_ImageRemoveBackground"
},
{
"author": "StartHua",
"title": "Comfyui_CXH_CRM",
"id": "cxh-crm",
"reference": "https://github.com/StartHua/Comfyui_CXH_CRM",
"files": [
"https://github.com/StartHua/Comfyui_CXH_CRM"
],
"install_type": "git-clone",
"description": "Nodes:CRM"
},
{
"author": "comfypod",
"title": "ComfyUI-Comflow",
"id": "comflow",
"reference": "https://github.com/comfypod/ComfyUI-Comflow",
"files": [
"https://github.com/comfypod/ComfyUI-Comflow"
],
"install_type": "git-clone",
"description": "ComfyUI-Comflow."
},
{
"author": "pamparamm",
"title": "ComfyUI-ppm",
"id": "comfyui-ppm",
"reference": "https://github.com/pamparamm/ComfyUI-ppm",
"files": [
"https://github.com/pamparamm/ComfyUI-ppm"
],
"install_type": "git-clone",
"description": "Fixed AttentionCouple/NegPip(negative weights in prompts), more CFG++ samplers, etc."
},
{
"author": "FoundD-oka",
"title": "ComfyUI KISEKAE-OOTD",
"id": "kisekae-ootd",
"reference": "https://github.com/FoundD-oka/ComfyUI-kisekae-OOTD",
"files": [
"https://github.com/FoundD-oka/ComfyUI-kisekae-OOTD"
],
"install_type": "git-clone",
"description": "Nodes:LoadOOTDPipeline, LoadOOTDPipelineHub, LoadOOTDPipelineHub."
},
{
"author": "bruce007lee",
"title": "comfyui-tiny-utils",
"id": "tiny-utils",
"reference": "https://github.com/bruce007lee/comfyui-tiny-utils",
"files": [
"https://github.com/bruce007lee/comfyui-tiny-utils"
],
"install_type": "git-clone",
"description": "Nodes:FaceAlign, FaceAlignImageProcess, FaceAlignMaskProcess, ImageFillColorByMask, CropImageByMask, LoadImageAdvance, ImageTransposeAdvance, ImageSAMMask"
},
{
"author": "brycegoh",
"title": "brycegoh/comfyui-custom-nodes",
"reference": "https://github.com/brycegoh/comfyui-custom-nodes",
"files": [
"https://github.com/brycegoh/comfyui-custom-nodes"
],
"install_type": "git-clone",
"description": "Nodes:MaskAreaComparisonSegment, FillMaskedArea, OCRAndMask, CombineTwoImageIntoOne"
},
{
"author": "LykosAI",
"title": "ComfyUI Nodes for Inference.Core",
"id": "inference-core",
"reference": "https://github.com/LykosAI/ComfyUI-Inference-Core-Nodes",
"files": [
"https://github.com/LykosAI/ComfyUI-Inference-Core-Nodes"
],
"install_type": "git-clone",
"description": "Primary Nodes for Inference.Core and Stability Matrix. With a focus on not impacting startup performance and using fully qualified Node names. [w/This custom node is likely to conflict with many other nodes.]"
},
{
"author": "tracerstar",
"title": "comfyui-p5js-node",
"id": "p5js",
"reference": "https://github.com/tracerstar/comfyui-p5js-node",
"files": [
"https://github.com/tracerstar/comfyui-p5js-node"
],
"install_type": "git-clone",
"description": "A simple proof of concept node to pass a p5js canvas through ComfyUI for img2img generation use."
},
{
"author": "chaojie",
"title": "ComfyUI-mobvoi-openapi",
"id": "mobvoi-openapi",
"reference": "https://github.com/chaojie/ComfyUI-mobvoi-openapi",
"files": [
"https://github.com/chaojie/ComfyUI-mobvoi-openapi"
],
"install_type": "git-clone",
"description": "Nodes:MobvoiOpenapiMetamanText, MobvoiOpenapiMetamanAudio, MobvoiOpenapiTts, HtmlViewer, OssUploadImage, OssUploadAudio"
},
{
"author": "immersiveexperience",
"title": "ie-comfyui-color-nodes",
"id": "ie-color-nodes",
"reference": "https://github.com/immersiveexperience/ie-comfyui-color-nodes",
"files": [
"https://github.com/immersiveexperience/ie-comfyui-color-nodes"
],
"install_type": "git-clone",
"description": "Custom ComfyUI nodes for simple color correction."
},
{
"author": "beyastard",
"title": "ComfyUI_BeySoft",
"reference": "https://github.com/beyastard/ComfyUI_BeySoft",
"files": [
"https://github.com/beyastard/ComfyUI_BeySoft"
],
"install_type": "git-clone",
"description": "Nodes:BeySoft"
},
{
"author": "christian-byrne",
"title": "🌌 Infinite Parallax Nodes [WIP]",
"reference": "https://github.com/christian-byrne/infinite-zoom-parallax-nodes",
"files": [
"https://github.com/christian-byrne/infinite-zoom-parallax-nodes"
],
"install_type": "git-clone",
"description": "Nodes:Parallax Config, Load Parallax Frame, Save Parallax Object Layers, Layer Shifter for Parallax Outpainting, Save Parallax Frame, Shrink and Pad for Outpainting, Create Infinite Zoom Video"
},
{
"author": "flyingdogsoftware",
"title": "Gyre for ComfyUI",
"id": "gyre",
"reference": "https://github.com/flyingdogsoftware/gyre_for_comfyui",
"files": [
"https://github.com/flyingdogsoftware/gyre_for_comfyui"
],
"install_type": "git-clone",
"description": "Nodes:GyreLoopStart, GyreLoopEnd, GyreIfElse"
},
{
"author": "githubYiheng",
"title": "comfyui_median_filter",
"id": "median-filter",
"reference": "https://github.com/githubYiheng/comfyui_median_filter",
"files": [
"https://github.com/githubYiheng/comfyui_median_filter"
],
"install_type": "git-clone",
"description": "Nodes:Apply Median Filter. [w/This has been updated to be equivalent to the comfyui_kmeans_filter node. Mistake?]"
},
{
"author": "nat-chan",
"title": "comfyui-eval [UNSAFE]",
"id": "evalnode",
"reference": "https://github.com/nat-chan/comfyui-eval",
"files": [
"https://github.com/nat-chan/comfyui-eval"
],
"install_type": "git-clone",
"description": "Nodes:EvalNode [w/Please do not use the node that executes arbitrary code and outputs in any type, as it is dangerous.]"
},
{
"author": "haofanwang",
"title": "ComfyUI-InstantStyle",
"id": "instantstyle",
"reference": "https://github.com/haofanwang/ComfyUI-InstantStyle",
"files": [
"https://github.com/haofanwang/ComfyUI-InstantStyle"
],
"install_type": "git-clone",
"description": "Nodes:PromptLoader, BaseModelLoader, InstantStyleLoader, InstantStyleGenerationNode"
},
{
"author": "jp0215",
"title": "comfyUI_padding-resize_node",
"reference": "https://github.com/jp0215/comfyUI_padding-resize_node",
"files": [
"https://github.com/jp0215/comfyUI_padding-resize_node/raw/main/PaddingNode.py",
"https://github.com/jp0215/comfyUI_padding-resize_node/raw/main/ResizeNode.py"
],
"install_type": "copy",
"description": "Padding image to 8x: input image and mask, if the side length is not an integer multiple of 8, expand the side length to the smallest multiple of 8 greater than the original side length. Output padding image and mask. Resize to the origin: input the generated image and the original image, crop the generated image to the size of the original image, output the cropped image."
},
{
"author": "Quasimondo",
"title": "ComfyUI-QuasimondoNodes [WIP]",
"id": "quasimondo-nodes",
"reference": "https://github.com/Quasimondo/ComfyUI-QuasimondoNodes",
"files": [
"https://github.com/Quasimondo/ComfyUI-QuasimondoNodes"
],
"install_type": "git-clone",
"description": "Nodes:Custom Shader, Spring Mesh"
},
{
"author": "TSFSean",
"title": "ComfyUI-TSFNodes",
"id": "tsfnodes",
"reference": "https://github.com/TSFSean/ComfyUI-TSFNodes",
"files": [
"https://github.com/TSFSean/ComfyUI-TSFNodes"
],
"install_type": "git-clone",
"description": "Nodes:GyroOSC"
},
{
"author": "blib-la",
"title": "ComfyUI-Captain-Extensions",
"id": "captain",
"reference": "https://github.com/blib-la/ComfyUI-Captain-Extensions",
"files": [
"https://github.com/blib-la/ComfyUI-Captain-Extensions"
],
"install_type": "git-clone",
"description": "ComfyUI extensions for better [a/Captain](https://github.com/blib-la/captain) integration."
},
{
"author": "ejektaflex",
"title": "ComfyUI-Ty",
"reference": "https://github.com/ejektaflex/ComfyUI-Ty",
"files": [
"https://github.com/ejektaflex/ComfyUI-Ty"
],
"install_type": "git-clone",
"description": "Nodes:Lora Block Weight Regex Loader"
},
{
"author": "christian-byrne",
"title": "Python Interpreter ComfyUI Node [UNSAFE]",
"reference": "https://github.com/christian-byrne/python-interpreter-node",
"files": [
"https://github.com/christian-byrne/python-interpreter-node"
],
"install_type": "git-clone",
"description": "For debugging, parsing data, generating random values, converting types, testing custom nodes faster.\nReference and use variables in the code using the same names as the inputs in the UI\nWrapper class around tensors with operator overloading for doing common image manipulation tasks.I might remove this aspect\n[w/This extension allows you to run programs through Python code in your workflow, which may not be secure. Use with caution.]"
},
{
"author": "sofakid",
"title": "dandy [UNSAFE]",
"reference": "https://github.com/sofakid/dandy",
"files": [
"https://github.com/sofakid/dandy"
],
"install_type": "git-clone",
"description": "Dandy is a JavaScript bridge for ComfyUI. It includes everything you need to make JavaScript enabled extensions, or just load and code in little editor nodes right in ComfyUI.[w/This code can cause security issues because it allows for the execution of arbitrary JavaScript input.]"
},
{
"author": "tachyon-beep",
"title": "comfyui-simplefeed [UNSAFE]",
"reference": "https://github.com/tachyon-beep/comfyui-simplefeed",
"files": [
"https://github.com/tachyon-beep/comfyui-simplefeed"
],
"install_type": "git-clone",
"description": "A simple image feed for comfyUI which is easily configurable and easily extensible.\nUse the filter button to select which nodes write to the feed. Under settings, there are options that allow you: Position the feed. Set a max iamge count for the feed. Set oldest to newest or newest to oldest."
},
{
"author": "shadowcz007",
"title": "ComfyUI-PuLID [TEST]",
"reference": "https://github.com/shadowcz007/ComfyUI-PuLID-Test",
"files": [
"https://github.com/shadowcz007/ComfyUI-PuLID-Test"
],
"install_type": "git-clone",
"description": "[a/PuLID](https://github.com/ToTheBeginning/PuLID) ComfyUI native implementation."
},
{
"author": "sangeet",
"title": "comfyui-testui [TEST]",
"reference": "https://github.com/sangeet/comfyui-testui",
"files": [
"https://github.com/sangeet/comfyui-testui"
],
"install_type": "git-clone",
"description": "Simple Frontend For ComfyUI workflow"
},
{
"author": "Elawphant",
"title": "ComfyUI-MusicGen [WIP]",
"id": "musicgen",
"reference": "https://github.com/Elawphant/ComfyUI-MusicGen",
"files": [
"https://github.com/Elawphant/ComfyUI-MusicGen"
],
"install_type": "git-clone",
"description": "ComfyUI for Meta MusicGen."
},
{
"author": "jtscmw01",
"title": "ComfyUI-DiffBIR",
"id": "diffbir",
"reference": "https://github.com/jtscmw01/ComfyUI-DiffBIR",
"files": [
"https://github.com/jtscmw01/ComfyUI-DiffBIR"
],
"install_type": "git-clone",
"description": "This extension provides [a/DiffBIR](https://github.com/XPixelGroup/DiffBIR) feature."
},
{
"author": "ericbeyer",
"title": "guidance_interval",
"reference": "https://github.com/ericbeyer/guidance_interval",
"files": [
"https://github.com/ericbeyer/guidance_interval"
],
"install_type": "git-clone",
"description": "Nodes:Guidance Interval\nNOTE: Because the sampling function is replaced, you must restart after executing this custom node to restore the original state."
},
{
"author": "GraftingRayman",
"title": "ComfyUI-GR",
"reference": "https://github.com/GraftingRayman/ComfyUI_GR_PromptSelector",
"files": [
"https://github.com/GraftingRayman/ComfyUI_GR_PromptSelector"
],
"install_type": "git-clone",
"description": "Nodes:GR Prompt Selector"
},
{
"author": "oztrkoguz",
"title": "Kosmos2_BBox_Cutter Models",
"reference": "https://github.com/oztrkoguz/ComfyUI_Kosmos2_BBox_Cutter",
"files": [
"https://github.com/oztrkoguz/ComfyUI_Kosmos2_BBox_Cutter"
],
"install_type": "git-clone",
"description": "Nodes:KosmosLoader, Kosmos2SamplerSimple, Write"
},
{
"author": "ZHO-ZHO-ZHO",
"title": "ComfyUI-PuLID-ZHO [WIP]",
"reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PuLID-ZHO",
"files": [
"https://github.com/ZHO-ZHO-ZHO/ComfyUI-PuLID-ZHO"
],
"install_type": "git-clone",
"description": "Unofficial implementation of [a/PuLID](https://github.com/ToTheBeginning/PuLID)(diffusers) for ComfyUI"
},
{
"author": "longgui0318",
"title": "comfyui-one-more-step [WIP]",
"reference": "https://github.com/longgui0318/comfyui-one-more-step",
"files": [
"https://github.com/longgui0318/comfyui-one-more-step"
],
"install_type": "git-clone",
"description": "[a/(OMS)mhh0318/OneMoreStep](https://github.com/mhh0318/OneMoreStep) comfyui support ."
},
{
"author": "unknown",
"title": "CLIPTextEncodeAndEnhancev4 (shirazdesigner)",
"reference": "https://github.com/shirazdesigner/CLIPTextEncodeAndEnhancev4",
"files": [
"https://github.com/shirazdesigner/CLIPTextEncodeAndEnhancev4"
],
"install_type": "git-clone",
"description": "Nodes:CLIPTextEncodeAndEnhance.\nNOTE:Translation:This is a wrapper that simply makes it easy to install an existing node via git."
},
{
"author": "umisetokikaze",
"title": "comfyui_mergekit [WIP]",
"reference": "https://github.com/umisetokikaze/comfyui_mergekit",
"files": [
"https://github.com/umisetokikaze/comfyui_mergekit"
],
"install_type": "git-clone",
"description": "Nodes:DefineSaveName, SetModels, get_skip, LoadLR, LoadTarget, SetTokenizer, Merge, SetLayer, SetModels"
},
{
"author": "Video3DGenResearch",
"title": "ComfyUI Batch Input Node",
"reference": "https://github.com/Video3DGenResearch/comfyui-batch-input-node",
"files": [
"https://github.com/Video3DGenResearch/comfyui-batch-input-node"
],
"install_type": "git-clone",
"description": "Nodes:BatchInputText"
},
{
"author": "kijai",
"title": "ComfyUI nodes to use DeepSeek-VL",
"reference": "https://github.com/kijai/ComfyUI-DeepSeek-VL",
"files": [
"https://github.com/kijai/ComfyUI-DeepSeek-VL"
],
"install_type": "git-clone",
"description": "[a/https://huggingface.co/deepseek-ai](https://huggingface.co/deepseek-ai)"
},
{
"author": "GentlemanHu",
"title": "ComfyUI-Notifier",
"reference": "https://github.com/GentlemanHu/ComfyUI-Notifier",
"files": [
"https://github.com/GentlemanHu/ComfyUI-Notifier"
],
"install_type": "git-clone",
"description": "Nodes:GentlemanHu_Notifier"
},
{
"author": "nat-chan",
"title": "comfyui-in-memory-transceiver",
"reference": "https://github.com/nat-chan/comfyui-in-memory-transceiver",
"files": [
"https://github.com/nat-chan/comfyui-in-memory-transceiver"
],
"install_type": "git-clone",
"description": "Why? When processing a large number of requests, the SaveImage and LoadImage nodes may be IO-limited, and using shared memory improves performance by passing images only through memory access, not through IO."
},
{
"author": "DrMWeigand",
"title": "ComfyUI_LineBreakInserter",
"reference": "https://github.com/DrMWeigand/ComfyUI_LineBreakInserter",
"files": [
"https://github.com/DrMWeigand/ComfyUI_LineBreakInserter"
],
"install_type": "git-clone",
"description": "Nodes:Line Break Inserter"
},
{
"author": "WilliamStanford",
"title": "visuallabs_comfyui_nodes",
"reference": "https://github.com/WilliamStanford/visuallabs_comfyui_nodes",
"files": [
"https://github.com/WilliamStanford/visuallabs_comfyui_nodes"
],
"install_type": "git-clone",
"description": "Nodes:PointStringFromFloatArray"
},
{
"author": "bruce007lee",
"title": "comfyui-cleaner",
"reference": "https://github.com/bruce007lee/comfyui-cleaner",
"files": [
"https://github.com/bruce007lee/comfyui-cleaner"
],
"install_type": "git-clone",
"description": "Nodes:cleaner"
},
{
"author": "ExponentialML",
"title": "ComfyUI_LiveDirector (WIP)",
"reference": "https://github.com/ExponentialML/ComfyUI_LiveDirector",
"files": [
"https://github.com/ExponentialML/ComfyUI_LiveDirector"
],
"install_type": "git-clone",
"description": "Experimental method to use reference video to drive motion in generations without training in ComfyUI."
},
{
"author": "hy134300",
"title": "comfyui-hb-node",
"reference": "https://github.com/hy134300/comfyui-hb-node",
"files": [
"https://github.com/hy134300/comfyui-hb-node"
],
"install_type": "git-clone",
"description": "Nodes:sound voice, text concat, latent to list, movie generate, movie batch, hy save image, generate story"
},
{
"author": "gameltb",
"title": "io_comfyui",
"reference": "https://github.com/gameltb/io_comfyui",
"files": [
"https://github.com/gameltb/io_comfyui"
],
"install_type": "git-clone",
"description": "Let Blender work with ComfyUI by ComfyScript. This addon is still in development."
},
{
"author": "ALatentPlace",
"title": "YANC- Yet Another Node Collection",
"reference": "https://github.com/ALatentPlace/ComfyUI_yanc",
"files": [
"https://github.com/ALatentPlace/ComfyUI_yanc"
],
"install_type": "git-clone",
"description": "This is another node collection for ComfyUI. It includes some basic nodes that I find useful, and I've also created them to meet my personal needs."
},
{
"author": "Jiffies-64",
"title": "ComfyUI-SaveImagePlus",
"reference": "https://github.com/Jiffies-64/ComfyUI-SaveImagePlus",
"files": [
"https://github.com/Jiffies-64/ComfyUI-SaveImagePlus"
],
"install_type": "git-clone",
"description": "Nodes:SaveImagePlus"
},
{
"author": "kadirnar",
"title": "ComfyUI-Adapter [WIP]",
"reference": "https://github.com/kadirnar/ComfyUI-Adapter",
"files": [
"https://github.com/kadirnar/ComfyUI-Adapter"
],
"install_type": "git-clone",
"description": "WIP"
},
{
"author": "Beinsezii",
"title": "comfyui-amd-go-fast",
"reference": "https://github.com/Beinsezii/comfyui-amd-go-fast",
"files": [
"https://github.com/Beinsezii/comfyui-amd-go-fast"
],
"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": "sugarkwork",
"title": "comfyui_psd [WIP]",
"reference": "https://github.com/sugarkwork/comfyui_psd",
"files": [
"https://github.com/sugarkwork/comfyui_psd"
],
"install_type": "git-clone",
"description": "Not working yet."
},
{
"author": "SadaleNet",
"title": "ComfyUI Port for Google's Prompt-to-Prompt",
"reference": "https://github.com/SadaleNet/ComfyUI-Prompt-To-Prompt",
"files": [
"https://github.com/SadaleNet/ComfyUI-Prompt-To-Prompt"
],
"install_type": "git-clone",
"description": "This is a PoC port of [a/Google's Prompt-to-Prompt](https://github.com/google/prompt-to-prompt/) to ComfyUI. It isn't feature complete. But it's good enough for evaluating if prompt-to-prompt is of any good."
},
{
"author": "stavsap",
"title": "ComfyUI Ollama [WIP]",
"reference": "https://github.com/stavsap/ComfyUI-React-SDK",
"files": [
"https://github.com/stavsap/ComfyUI-React-SDK"
],
"install_type": "git-clone",
"description": "This project is for building React application as an overlay upon ComfyUI.\nProviding and ability to provide desired UI with ComfyUI API and workflows.\nInspired by: [a/https://github.com/cubiq/Comfy_Dungeon](https://github.com/cubiq/Comfy_Dungeon)"
},
{
"author": "chaojie",
"title": "ComfyUI DynamiCrafter",
"reference": "https://github.com/chaojie/ComfyUI-DynamiCrafter",
"files": [
"https://github.com/chaojie/ComfyUI-DynamiCrafter"
],
"install_type": "git-clone",
"description": "ComfyUI [a/DynamiCrafter](https://github.com/Doubiiu/DynamiCrafter)"
},
{
"author": "cubiq",
"title": "Comfy Dungeon [WIP]",
"reference": "https://github.com/cubiq/Comfy_Dungeon",
"files": [
"https://github.com/cubiq/Comfy_Dungeon"
],
"install_type": "git-clone",
"description": "Build D&D Character Portraits with ComfyUI.\nIMPORTANT: At the moment this is mostly a tech demo to show how to build a web app on top of ComfyUI. The code is very messy and the application doesn't guaratee consistent results."
},
{
"author": "dfl",
"title": "comfyui-stylegan",
"reference": "https://github.com/dfl/comfyui-stylegan",
"files": [
"https://github.com/dfl/comfyui-stylegan"
],
"install_type": "git-clone",
"description": "Generator for StyleGAN 3"
},
{
"author": "A719689614",
"title": "ComfyUI_AC_FUNV8Beta1",
"reference": "https://github.com/A719689614/ComfyUI_AC_FUNV8Beta1",
"files": [
"https://github.com/A719689614/ComfyUI_AC_FUNV8Beta1"
],
"install_type": "git-clone",
"description": "Nodes:AC_Super_Controlnet/Checkpoint/Loras/Lora&LCM/KSampler/UpKSampler/SaveImage/PreviewImage/CKPT&LCM/CLIPEN/EmptLatent, AC_FUN_SUPER_LARGE, AC_Super_Come_Ckpt, AC_Super_Come_Lora"
},
{
"author": "houdinii",
"title": "comfy-magick [WIP]",
"reference": "https://github.com/houdinii/comfy-magick",
"files": [
"https://github.com/houdinii/comfy-magick"
],
"install_type": "git-clone",
"description": "This is a way to implement ImageMagick functionality in ComfyUI, which is generally PIL (pillow) based. I'm not sure the best way to handle this, as batch images make it a lot more complex, but the general idea will be two nodes to translate the IMAGE type, a torch.tensor of shape [batch, height, width, channels], or [1, 600, 800, 3] for a single 800x600 image, into/from a wand Image object."
},
{
"author": "tjorbogarden",
"title": "my-useful-comfyui-custom-nodes",
"reference": "https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes",
"files": [
"https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes"
],
"install_type": "git-clone",
"description": "Nodes:My-Image Sizer, KSamplerSDXLAdvanced."
},
{
"author": "DeTK",
"title": "ComfyUI Node Switcher",
"reference": "https://github.com/DeTK/ComfyUI-Switch",
"files": [
"https://github.com/DeTK/ComfyUI-Switch"
],
"install_type": "git-clone",
"description": "Nodes:NodeSwitch."
},
{
"author": "GrindHouse66",
"title": "GH Tools for ComfyUI",
"reference": "https://github.com/GrindHouse66/ComfyUI-GH_Tools",
"files": [
"https://github.com/GrindHouse66/ComfyUI-GH_Tools"
],
"install_type": "git-clone",
"description": "Nodes:GH Tools Image Sizer, GH Tools Simple Scale. Simple quality of life Tools for ComfyUI. Basically, If it makes my life easier, it will be here. The list will grow over time."
},
{
"author": "sdfxai",
"title": "SDFXBridgeForComfyUI - ComfyUI Custom Node for SDFX Integration",
"reference": "https://github.com/sdfxai/SDFXBridgeForComfyUI",
"files": [
"https://github.com/sdfxai/SDFXBridgeForComfyUI"
],
"install_type": "git-clone",
"description": "SDFXBridgeForComfyUI is a custom node designed for seamless integration between ComfyUI and the SDFX solution. This custom node allows users to make ComfyUI compatible with SDFX when running the ComfyUI instance on their local machines."
},
{
"author": "Beinsezii",
"title": "comfyui-amd-go-fast",
"reference": "https://github.com/Beinsezii/comfyui-amd-go-fast",
"files": [
"https://github.com/Beinsezii/comfyui-amd-go-fast"
],
"install_type": "git-clone",
"description": "See details: [a/link](https://github.com/Beinsezii/comfyui-amd-go-fast?tab=readme-ov-file)"
},
{
"author": "SeedV",
"title": "ComfyUI-SeedV-Nodes [UNSAFE]",
"reference": "https://github.com/SeedV/ComfyUI-SeedV-Nodes",
"files": [
"https://github.com/SeedV/ComfyUI-SeedV-Nodes"
],
"install_type": "git-clone",
"description": "Nodes:Script.\n[w/This extension poses a risk of executing arbitrary commands through workflow execution. Please be cautious.]"
},
{
"author": "mut-ex",
"title": "ComfyUI GLIGEN GUI Node",
"reference": "https://github.com/mut-ex/comfyui-gligengui-node",
"files": [
"https://github.com/mut-ex/comfyui-gligengui-node"
],
"install_type": "git-clone",
"description": "This is a simple, straightforward ComfyUI node to be used along with the [a/GLIGEN GUI](https://github.com/mut-ex/gligen-gui) I developed.\nNOTE:[a/Make sure you have the GLIGEN GUI up and running](https://github.com/mut-ex/gligen-gui/tree/main)"
},
{
"author": "unanan",
"title": "ComfyUI-Dist [WIP]",
"reference": "https://github.com/unanan/ComfyUI-Dist",
"files": [
"https://github.com/unanan/ComfyUI-Dist"
],
"install_type": "git-clone",
"description": "For distributed processing ComfyUI workflows within a local area network.\nNot Finished Yet."
},
{
"author": "NicholasKao1029",
"title": "comfyui-hook",
"reference": "https://github.com/NicholasKao1029/comfyui-hook",
"files": [
"https://github.com/NicholasKao1029/comfyui-hook"
],
"install_type": "git-clone",
"description": "This extension provides additional API"
},
{
"author": "Extraltodeus",
"title": "Conditioning-token-experiments-for-ComfyUI",
"reference": "https://github.com/Extraltodeus/Conditioning-token-experiments-for-ComfyUI",
"files": [
"https://github.com/Extraltodeus/Conditioning-token-experiments-for-ComfyUI"
],
"install_type": "git-clone",
"description": "I made these nodes for experimenting so it's far from perfect but at least it is entertaining!\nIt uses cosine similarities or smallest euclidean distances to find the closest tokens."
},
{
"author": "shadowcz007",
"title": "comfyui-llamafile [WIP]",
"reference": "https://github.com/shadowcz007/comfyui-llamafile",
"files": [
"https://github.com/shadowcz007/comfyui-llamafile"
],
"install_type": "git-clone",
"description": "This node is an experimental node aimed at exploring the collaborative way of human-machine creation."
},
{
"author": "gameltb",
"title": "ComfyUI paper playground",
"reference": "https://github.com/gameltb/ComfyUI_paper_playground",
"files": [
"https://github.com/gameltb/ComfyUI_paper_playground"
],
"install_type": "git-clone",
"description": "Evaluate some papers in ComfyUI, just playground.\nNOTE: Various models need to be installed, so please visit the repository to check."
},
{
"author": "huizhang0110",
"title": "ComfyUI_Easy_Nodes_hui",
"reference": "https://github.com/huizhang0110/ComfyUI_Easy_Nodes_hui",
"files": [
"https://github.com/huizhang0110/ComfyUI_Easy_Nodes_hui"
],
"install_type": "git-clone",
"description": "Nodes:EasyEmptyLatentImage"
},
{
"author": "tuckerdarby",
"title": "ComfyUI-TDNodes [WIP]",
"reference": "https://github.com/tuckerdarby/ComfyUI-TDNodes",
"files": [
"https://github.com/tuckerdarby/ComfyUI-TDNodes"
],
"install_type": "git-clone",
"description": "Nodes:KSampler (RAVE), KSampler (TF), Object Tracker, KSampler Batched, Video Tracker Prompt, TemporalNet Preprocessor, Instance Tracker Prompt, Instance Diffusion Loader, Hand Tracker Node"
},
{
"author": "shadowcz007",
"title": "comfyui-musicgen",
"reference": "https://github.com/shadowcz007/comfyui-musicgen",
"files": [
"https://github.com/shadowcz007/comfyui-musicgen"
],
"install_type": "git-clone",
"description": "Nodes:Musicgen"
},
{
"author": "shadowcz007",
"title": "comfyui-CLIPSeg",
"reference": "https://github.com/shadowcz007/comfyui-CLIPSeg",
"files": [
"https://github.com/shadowcz007/comfyui-CLIPSeg"
],
"install_type": "git-clone",
"description": "Download [a/CLIPSeg](https://huggingface.co/CIDAS/clipseg-rd64-refined/tree/main), move to : models/clipseg"
},
{
"author": "stutya",
"title": "ComfyUI-Terminal [UNSAFE]",
"reference": "https://github.com/stutya/ComfyUI-Terminal",
"files": [
"https://github.com/stutya/ComfyUI-Terminal"
],
"install_type": "git-clone",
"description": "Run Terminal Commands from ComfyUI.\n[w/This extension poses a risk of executing arbitrary commands through workflow execution. Please be cautious.]"
},
{
"author": "marcueberall",
"title": "ComfyUI-BuildPath",
"reference": "https://github.com/marcueberall/ComfyUI-BuildPath",
"files": [
"https://github.com/marcueberall/ComfyUI-BuildPath"
],
"install_type": "git-clone",
"description": "Nodes: Build Path Adv."
},
{
"author": "LotzF",
"title": "ComfyUI simple ChatGPT completion [UNSAFE]",
"reference": "https://github.com/LotzF/ComfyUI-Simple-Chat-GPT-completion",
"files": [
"https://github.com/LotzF/ComfyUI-Simple-Chat-GPT-completion"
],
"install_type": "git-clone",
"description": "A simple node to request ChatGPT completions. [w/Do not share your workflows including the API key! I'll take no responsibility for your leaked keys.]"
},
{
"author": "kappa54m",
"title": "ComfyUI_Usability (WIP)",
"reference": "https://github.com/kappa54m/ComfyUI_Usability",
"files": [
"https://github.com/kappa54m/ComfyUI_Usability"
],
"install_type": "git-clone",
"description": "Nodes: Load Image Dedup, Load Image By Path."
},
{
"author": "17Retoucher",
"title": "ComfyUI_Fooocus",
"reference": "https://github.com/17Retoucher/ComfyUI_Fooocus",
"files": [
"https://github.com/17Retoucher/ComfyUI_Fooocus"
],
"install_type": "git-clone",
"description": "Custom nodes that help reproduce image generation in Fooocus."
},
{
"author": "nkchocoai",
"title": "ComfyUI-PromptUtilities",
"reference": "https://github.com/nkchocoai/ComfyUI-PromptUtilities",
"files": [
"https://github.com/nkchocoai/ComfyUI-PromptUtilities"
],
"install_type": "git-clone",
"description": "Nodes: Format String, Join String List, Load Preset, Load Preset (Advanced), Const String, Const String (multi line). Add useful nodes related to prompt."
},
{
"author": "BadCafeCode",
"title": "execution-inversion-demo-comfyui",
"reference": "https://github.com/BadCafeCode/execution-inversion-demo-comfyui",
"files": [
"https://github.com/BadCafeCode/execution-inversion-demo-comfyui"
],
"install_type": "git-clone",
"description": "execution-inversion-demo-comfyui"
},
{
"author": "unanan",
"title": "ComfyUI-clip-interrogator [WIP]",
"reference": "https://github.com/unanan/ComfyUI-clip-interrogator",
"files": [
"https://github.com/unanan/ComfyUI-clip-interrogator"
],
"install_type": "git-clone",
"description": "Unofficial ComfyUI extension of clip-interrogator"
},
{
"author": "prismwastaken",
"title": "prism-tools",
"reference": "https://github.com/prismwastaken/comfyui-tools",
"files": [
"https://github.com/prismwastaken/comfyui-tools"
],
"install_type": "git-clone",
"description": "prism-tools"
},
{
"author": "poisenbery",
"title": "NudeNet-Detector-Provider [WIP]",
"reference": "https://github.com/poisenbery/NudeNet-Detector-Provider",
"files": [
"https://github.com/poisenbery/NudeNet-Detector-Provider"
],
"install_type": "git-clone",
"description": "BBOX Detector Provider for NudeNet. Bethesda version of NudeNet V3 detector provider to work with Impact Pack ComfyUI."
},
{
"author": "LarryJane491",
"title": "ComfyUI-ModelUnloader",
"reference": "https://github.com/LarryJane491/ComfyUI-ModelUnloader",
"files": [
"https://github.com/LarryJane491/ComfyUI-ModelUnloader"
],
"install_type": "git-clone",
"description": "A simple custom node that unloads all models. Useful for developers or users who want to free some memory."
},
{
"author": "MrAdamBlack",
"title": "CheckProgress [WIP]",
"reference": "https://github.com/MrAdamBlack/CheckProgress",
"files": [
"https://github.com/MrAdamBlack/CheckProgress"
],
"install_type": "git-clone",
"description": "I was looking for a node to put in place to ensure my prompt etc where going as expected before the rest of the flow executed. To end the session, I just return the input image as None (see expected error). Recommend using it alongside PreviewImage, then output to the rest of the flow and Save Image."
},
{
"author": "birnam",
"title": "Gen Data Tester [WIP]",
"reference": "https://github.com/birnam/ComfyUI-GenData-Pack",
"files": [
"https://github.com/birnam/ComfyUI-GenData-Pack"
],
"install_type": "git-clone",
"description": "This answers the itch for being able to easily paste [a/CivitAI.com](https://civitai.com/) generated data (or other simple metadata) into Comfy in a way that makes it easy to test with multiple checkpoints."
},
{
"author": "nidefawl",
"title": "ComfyUI-nidefawl [UNSAFE]",
"reference": "https://github.com/nidefawl/ComfyUI-nidefawl",
"files": [
"https://github.com/nidefawl/ComfyUI-nidefawl"
],
"install_type": "git-clone",
"description": "Nodes:PythonScript, BlendImagesWithBoundedMasks, CropImagesWithMasks, VAELoaderDataType, ModelSamplerTonemapNoiseTest, gcLatentTunnel, ReferenceOnlySimple, EmptyImageWithColor, MaskFromColor, SetLatentCustomNoise, LatentToImage, ImageToLatent, LatentScaledNoise, DisplayAnyType, SamplerCustomCallback, CustomCallback, SplitCustomSigmas, SamplerDPMPP_2M_SDE_nidefawl, LatentPerlinNoise.<BR>[w/This node is an unsafe node that includes the capability to execute arbitrary python script.]"
},
{
"author": "kadirnar",
"title": "comfyui_helpers",
"reference": "https://github.com/kadirnar/comfyui_helpers",
"files": [
"https://github.com/kadirnar/comfyui_helpers"
],
"install_type": "git-clone",
"description": "A collection of nodes randomly selected and gathered, related to noise. NOTE: SD-Advanced-Noise, noise_latent_perlinpinpin, comfy-plasma"
},
{
"author": "foglerek",
"title": "comfyui-cem-tools",
"reference": "https://github.com/foglerek/comfyui-cem-tools",
"files": [
"https://github.com/foglerek/comfyui-cem-tools"
],
"install_type": "git-clone",
"description": "Nodes:ProcessImageBatch"
},
{
"author": "komojini",
"title": "ComfyUI_Prompt_Template_CustomNodes",
"reference": "https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes",
"files": [
"https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes/raw/main/prompt_with_template.py"
],
"install_type": "copy",
"description": "Nodes:Prompt with Template"
},
{
"author": "talesofai",
"title": "comfyui-supersave [WIP]",
"reference": "https://github.com/talesofai/comfyui-supersave",
"files": [
"https://github.com/talesofai/comfyui-supersave"
],
"install_type": "git-clone",
"description": "WIP"
},
{
"author": "Sai-ComfyUI",
"title": "ComfyUI-MS-Nodes [WIP]",
"reference": "https://github.com/Sai-ComfyUI/ComfyUI-MS-Nodes",
"files": [
"https://github.com/Sai-ComfyUI/ComfyUI-MS-Nodes"
],
"install_type": "git-clone",
"description": "WIP"
},
{
"author": "eigenpunk",
"title": "ComfyUI-audio",
"reference": "https://github.com/eigenpunk/ComfyUI-audio",
"files": [
"https://github.com/eigenpunk/ComfyUI-audio"
],
"install_type": "git-clone",
"description": "generative audio tools for ComfyUI. highly experimental-expect things to break."
},
{
"author": "Jaxkr",
"title": "comfyui-terminal-command [UNSAFE]",
"reference": "https://github.com/Jaxkr/comfyui-terminal-command",
"files": [
"https://github.com/Jaxkr/comfyui-terminal-command"
],
"install_type": "git-clone",
"description": "Nodes: Run Terminal Command. [w/This node is an unsafe node that includes the capability to execute terminal commands.]"
},
{
"author": "BlueDangerX",
"title": "ComfyUI-BDXNodes [WIP]",
"reference": "https://github.com/BlueDangerX/ComfyUI-BDXNodes",
"files": [
"https://github.com/BlueDangerX/ComfyUI-BDXNodes"
],
"install_type": "git-clone",
"description": "Nodes: Node Jumper. Various quality of life testing nodes"
},
{
"author": "ilovejohnwhite",
"title": "TatToolkit",
"reference": "https://github.com/ilovejohnwhite/UncleBillyGoncho",
"files": [
"https://github.com/ilovejohnwhite/UncleBillyGoncho"
],
"install_type": "git-clone",
"description": "Nodes:UWU TTK Preprocessor, Pixel Perfect Resolution, Generation Resolution From Image, Generation Resolution From Latent, Enchance And Resize Hint Images, ..."
},
{
"author": "IvanZhd",
"title": "comfyui-codeformer [WIP]",
"reference": "https://github.com/IvanZhd/comfyui-codeformer",
"files": [
"https://github.com/IvanZhd/comfyui-codeformer"
],
"install_type": "git-clone",
"description": "Nodes:Image Inverter"
},
{
"author": "alt-key-project",
"title": "Dream Project Video Batches [WIP]",
"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": "NOTE: This is currently work in progress. Expect nodes to break (or be broken) until 1.0 release."
},
{
"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": "romeobuilderotti",
"title": "ComfyUI-EZ-Pipes",
"reference": "https://github.com/romeobuilderotti/ComfyUI-EZ-Pipes",
"files": [
"https://github.com/romeobuilderotti/ComfyUI-EZ-Pipes"
],
"install_type": "git-clone",
"description": "ComfyUI-EZ-Pipes is a set of custom pipe nodes for ComfyUI. It provides a set of Input/Edit/Output nodes for each pipe type."
},
{
"author": "wormley",
"title": "comfyui-wormley-nodes",
"reference": "https://github.com/wormley/comfyui-wormley-nodes",
"files": [
"https://github.com/wormley/comfyui-wormley-nodes"
],
"install_type": "git-clone",
"description": "Nodes: CheckpointVAELoaderSimpleText, CheckpointVAESelectorText, LoRA_Tag_To_Stack"
},
{
"author": "Brandelan",
"title": "ComfyUI_bd_customNodes",
"reference": "https://github.com/Brandelan/ComfyUI_bd_customNodes",
"files": [
"https://github.com/Brandelan/ComfyUI_bd_customNodes"
],
"install_type": "git-clone",
"description": "Nodes: BD Random Range, BD Settings, BD Sequencer."
},
{
"author": "Jordach",
"title": "comfy-consistency-vae",
"reference": "https://github.com/Jordach/comfy-consistency-vae",
"files": [
"https://github.com/Jordach/comfy-consistency-vae"
],
"install_type": "git-clone",
"description": "Nodes: Comfy_ConsistencyVAE"
},
{
"author": "gameltb",
"title": "ComfyUI_stable_fast",
"reference": "https://github.com/gameltb/ComfyUI_stable_fast",
"files": [
"https://github.com/gameltb/ComfyUI_stable_fast"
],
"install_type": "git-clone",
"description": "Nodes:ApplyStableFastUnet. Experimental usage of stable-fast."
},
{
"author": "jn-jairo",
"title": "jn_node_suite_comfyui [WIP]",
"reference": "https://github.com/jn-jairo/jn_node_suite_comfyui",
"files": [
"https://github.com/jn-jairo/jn_node_suite_comfyui"
],
"install_type": "git-clone",
"description": "Image manipulation nodes, Temperature control nodes, Tiling nodes, Primitive and operation nodes, ..."
},
{
"author": "PluMaZero",
"title": "ComfyUI-SpaceFlower",
"reference": "https://github.com/PluMaZero/ComfyUI-SpaceFlower",
"files": [
"https://github.com/PluMaZero/ComfyUI-SpaceFlower"
],
"install_type": "git-clone",
"description": "Nodes: SpaceFlower_Prompt, SpaceFlower_HangulPrompt, ..."
},
{
"author": "laksjdjf",
"title": "ssd-1b-comfyui",
"reference": "https://github.com/laksjdjf/ssd-1b-comfyui",
"files": [
"https://github.com/laksjdjf/ssd-1b-comfyui"
],
"install_type": "git-clone",
"description": "Experimental node for SSD-1B. This node is not need for latest comfyui."
},
{
"author": "flowtyone",
"title": "comfyui-flowty-lcm",
"reference": "https://github.com/flowtyone/comfyui-flowty-lcm",
"files": [
"https://github.com/flowtyone/comfyui-flowty-lcm"
],
"install_type": "git-clone",
"description": "This is a comfyui early testing node for LCM, adapted from [a/https://github.com/0xbitches/sd-webui-lcm](https://github.com/0xbitches/sd-webui-lcm). It uses the diffusers backend unfortunately and not comfy's model loading mechanism. But the intention here is just to be able to execute lcm inside comfy.\nNOTE: 0xbitches's 'Latent Consistency Model for ComfyUI' is original implementation."
},
{
"author": "doucx",
"title": "ComfyUI_WcpD_Utility_Kit",
"reference": "https://github.com/doucx/ComfyUI_WcpD_Utility_Kit",
"files": [
"https://github.com/doucx/ComfyUI_WcpD_Utility_Kit"
],
"install_type": "git-clone",
"description": "Nodes: MergeStrings, ExecStrAsCode, RandnLatentImage. [w/NOTE: This extension includes the ability to execute code as a string in nodes. Be cautious during installation, as it can pose a security risk.]"
},
{
"author": "WSJUSA",
"title": "pre-comfyui-stablsr",
"reference": "https://github.com/WSJUSA/Comfyui-StableSR",
"files": [
"https://github.com/WSJUSA/Comfyui-StableSR"
],
"install_type": "git-clone",
"description": "This is a development respository for debugging migration of StableSR to Comfyui"
},
{
"author": "Dr.Lt.Data",
"title": "ComfyUI-Workflow-Component [WIP]",
"reference": "https://github.com/ltdrdata/ComfyUI-Workflow-Component",
"files": [
"https://github.com/ltdrdata/ComfyUI-Workflow-Component"
],
"install_type": "git-clone",
"description": "This extension provides the capability to use ComfyUI Workflow as a component and the ability to use the Image Refiner functionality based on components. NOTE: This is an experimental extension feature with no consideration for backward compatibility and can be highly unstable."
}
]
} |