File size: 89,980 Bytes
c6535db | 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 | {
"custom_nodes": [
{
"author": "sequencer-media",
"title": "Sequencer AI Nodes",
"reference": "https://github.com/sequencer-media/sequencer-comfy-nodes",
"files": [
"https://github.com/sequencer-media/sequencer-comfy-nodes"
],
"install_type": "git-clone",
"description": "One universal node for all 50+ Sequencer AI models. Generate images, videos, and audio (Veo 3.1, Flux 1.1 Pro, Kling, Ideogram, etc). dynamically populates model lists and I/O sockets."
},
{
"author": "AabhasTech",
"title": "ComfyUI Fast Preview",
"reference": "https://github.com/AabhasTech/ComfyUI_Fast_Preview",
"files": [
"https://github.com/AabhasTech/ComfyUI_Fast_Preview"
],
"install_type": "git-clone",
"description": "A lightweight node to compress and preview images using the temp directory, displaying file sizes on the node UI."
},
{
"author": "KingManiya",
"title": "LLM Text Processor",
"reference": "https://github.com/KingManiya/ComfyUI-LLM-text-processor",
"files": [
"https://github.com/KingManiya/ComfyUI-LLM-text-processor"
],
"install_type": "git-clone",
"description": "Process text and images with GGUF LLMs in ComfyUI using llama.cpp, including Qwen3-VL, Qwen3.5, Qwen3.6, Gemma 4, and gpt-oss."
},
{
"author": "wuwukaka",
"title": "ComfyUI-BodyRatioMapper",
"reference": "https://github.com/wuwukaka/ComfyUI-BodyRatioMapper",
"files": [
"https://github.com/wuwukaka/ComfyUI-BodyRatioMapper"
],
"install_type": "git-clone",
"description": "A project for pose alignment and human body proportion mapping based on SDPose."
},
{
"author": "namemechan",
"title": "ComfyUI-DCW",
"id": "comfyui-dcw",
"reference": "https://github.com/namemechan/ComfyUI-DCW",
"files": [
"https://github.com/namemechan/ComfyUI-DCW"
],
"install_type": "git-clone",
"description": "Near implementation of Differential Correction in Wavelet domain (DCW) for SNR-t bias correction. Based on arXiv:2604.16044 (Yu et al., 2026). No external dependencies. Compatible with SDXL, SD1.5, Flux, Cosmos, EDM, DiT. (README in Korean)"
},
{
"author": "RandyHaylor",
"title": "Claude CLI (Vision+Text)",
"id": "comfyui-claude-cli-vision-text-node",
"reference": "https://github.com/RandyHaylor/comfyui-claude-cli-vision-text-node",
"files": [
"https://github.com/RandyHaylor/comfyui-claude-cli-vision-text-node"
],
"install_type": "git-clone",
"description": "Call the local `claude` CLI from ComfyUI for vision+text or text-only completions. Uses your existing `claude login` OAuth (no API key required). Supports UUID session reuse for prompt-cache savings, with session token-usage tracking. Additional utility nodes: `Split Image Batch to List of Image Batches` (takes a large incoming batch and splits it into a list of smaller sub-batches with start/end index outputs, so you can send N images at a time — e.g. pairs — to the Claude CLI node along with their original batch indices for tracking), `Indexed 2x2 Grid from Batch`, `Select Images (Bounds Safe)`, and `Image Batch Current Index`. Optional headless API-key mode."
},
{
"author": "oath-studio",
"title": "comfy-vllm",
"reference": "https://github.com/OATH-Studio/comfy-vLLM",
"files": [
"https://github.com/OATH-Studio/comfy-vLLM"
],
"install_type": "git-clone",
"description": "https://www.theoath.studio/projects/comfy-vllm-node Generates Stable Diffusion prompts using a locally running vLLM server. Supports {wild|card} expansion, a prefix field for quality tags, auto model detection via /v1/models, live preview on the node face, and configurable retry logic. No API keys or internet connection required. Wire the single output directly into CLIPTextEncode."
},
{
"author": "oath-studio",
"title": "comfy-lora-iterator",
"reference": "https://github.com/OATH-Studio/comfy-LoRA-iterator",
"files": [
"https://github.com/OATH-Studio/comfy-LoRA-iterator"
],
"install_type": "git-clone",
"description": "https://www.theoath.studio/projects/comfy-lora-iterator A ComfyUI node that automatically steps through every LoRA in a directory on each generation run. Increment, decrement, randomize, or hold fixed. No rewiring. No manual switching. Queue and walk away."
},
{
"author": "Your Name",
"title": "comfyui-plugins",
"reference": "https://github.com/HDembinski/comfyui_plugins",
"files": [
"https://github.com/HDembinski/comfyui_plugins"
],
"install_type": "git-clone",
"description": "Starter scaffold for developing ComfyUI custom nodes."
},
{
"author": "bnwa",
"title": "Comfy Combos",
"reference": "https://github.com/bnwa/comfy_combos",
"files": [
"https://github.com/bnwa/comfy_combos"
],
"install_type": "git-clone",
"description": "Dropdown selectors for ComfyUI"
},
{
"author": "SOLRICKS",
"title": "ComfyUI-SOLRICKS",
"id": "comfyui-solricks",
"reference": "https://github.com/SOLRICKS/comfyui-solricks",
"files": [
"https://github.com/SOLRICKS/comfyui-solricks"
],
"install_type": "git-clone",
"description": "ComfyUI Video Anti-Aliasing Pack"
},
{
"author": "machinepainting",
"title": "MachinePainting Nodes",
"id": "comfyui-machinepainting-nodes",
"reference": "https://github.com/machinepainting/ComfyUI-MachinePaintingNodes",
"files": [
"https://github.com/machinepainting/ComfyUI-MachinePaintingNodes"
],
"install_type": "git-clone",
"description": "Professional photo editing tools for ComfyUI. Photoshop-style curves, levels, and color adjustments, AI-powered masking / background removal, LUT color grading, advanced channel masking, color management, frequency separation, blur and noise/grain filters, inpaint mask tools, and workflow utility nodes."
},
{
"author": "bemoregt",
"title": "ComfyUI_AdversarialAttack",
"reference": "https://github.com/bemoregt/ComfyUI_AdversarialAttack",
"files": [
"https://github.com/bemoregt/ComfyUI_AdversarialAttack"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node set that generates adversarial examples using a pretrained ResNet18 classifier."
},
{
"author": "bemoregt",
"title": "ComfyUI_FFTNet",
"reference": "https://github.com/bemoregt/ComfyUI_FFTNet",
"files": [
"https://github.com/bemoregt/ComfyUI_FFTNet"
],
"install_type": "git-clone",
"description": "ComfyUI custom node for FFTNet language model inference using efficient FFT-based global token mixing as an alternative to self-attention. (Description by CC)"
},
{
"author": "polly-creative",
"title": "ComfyUI_Polly_Nodes",
"reference": "https://github.com/polly-creative/ComfyUI_Polly_Nodes",
"files": [
"https://github.com/polly-creative/ComfyUI_Polly_Nodes"
],
"install_type": "git-clone",
"description": "A collection of high-quality texture utility nodes for technical artists and environment designers with precision masking and color extraction for emissive materials."
},
{
"author": "throttlekitty",
"title": "tkNodes",
"reference": "https://github.com/throttlekitty/tkNodes",
"files": [
"https://github.com/throttlekitty/tkNodes"
],
"install_type": "git-clone",
"description": "This node allows you to loop through specified layers in the LTX 2.3 model to potentially improve output quality with an eye toward artifacts in high motion."
},
{
"author": "karcsiha",
"title": "comfyUi-deflicker",
"reference": "https://github.com/karcsiha/comfyUi-deflicker",
"files": [
"https://github.com/karcsiha/comfyUi-deflicker"
],
"install_type": "git-clone",
"description": "ComfyUI custom node for removing brightness flicker and chunk boundary artifacts in AI-generated video sequences (WAN, VACE, FramePack, etc.)."
},
{
"author": "Experience-Monks",
"title": "Monks-Prompt-Enhancer-ComfyUI-Node",
"reference": "https://github.com/Experience-Monks/Monks-Prompt-Enhancer-ComfyUI-Node",
"files": [
"https://github.com/Experience-Monks/Monks-Prompt-Enhancer-ComfyUI-Node"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node that uses the Gemini API to rewrite a raw prompt into one optimised for a specific image generation model and workflow."
},
{
"author": "Mervent",
"title": "comfyui-model-randomizer",
"reference": "https://github.com/Mervent/comfyui-model-randomizer",
"files": [
"https://github.com/Mervent/comfyui-model-randomizer"
],
"install_type": "git-clone",
"description": "A custom node for ComfyUI that randomly selects a checkpoint from a configurable list of models with weighted selection, per-model CFG ranges, and enable/disable toggles."
},
{
"author": "Moeblack",
"title": "ComfyUI-AnimaTool",
"id": "comfyui-animatool",
"reference": "https://github.com/Moeblack/ComfyUI-AnimaTool",
"files": [
"https://github.com/Moeblack/ComfyUI-AnimaTool"
],
"install_type": "git-clone",
"description": "AI Tool Use API for Anima anime/illustration image generation. Supports MCP Server (native image display in Cursor/Claude), HTTP API, and CLI.",
"tags": [
"anima",
"anime",
"illustration",
"mcp",
"tool-use",
"api"
]
},
{
"author": "andreszs",
"title": "ComfyUI-OpenPose-Studio",
"reference": "https://github.com/andreszs/ComfyUI-OpenPose-Studio",
"files": [
"https://github.com/andreszs/ComfyUI-OpenPose-Studio"
],
"install_type": "git-clone",
"description": "Modern OpenPose pose editor for ComfyUI with collections, JSON import/export, background image support, and compatibility with legacy pose JSON."
},
{
"author": "andreszs",
"title": "ComfyUI-Ultralytics-Studio",
"reference": "https://github.com/andreszs/ComfyUI-Ultralytics-Studio",
"files": [
"https://github.com/andreszs/ComfyUI-Ultralytics-Studio"
],
"install_type": "git-clone",
"description": "Ultralytics workflow and editor tools for ComfyUI with enhanced preview and UI integration."
},
{
"author": "andreszs",
"title": "ComfyUI-Styler-Pipeline",
"reference": "https://github.com/andreszs/ComfyUI-Styler-Pipeline",
"files": [
"https://github.com/andreszs/ComfyUI-Styler-Pipeline"
],
"install_type": "git-clone",
"description": "Style selection and AI-assisted preset pipeline for ComfyUI, including manual and LLM-based style workflows."
},
{
"author": "SiliconFlow",
"title": "BizyAirPlus",
"id": "bizyairplus",
"reference": "https://github.com/siliconflow/BizyAirPlus",
"files": [
"https://github.com/siliconflow/BizyAirPlus"
],
"install_type": "git-clone",
"description": "[a/BizyAirPlus](https://github.com/siliconflow/BizyAirPlus) Run your workflow on cloud."
},
{
"author": "thomaskippster",
"title": "ComfyUI Model Downloader Bridge",
"reference": "https://github.com/thomaskippster/comfymodeldownloader",
"files": [
"https://github.com/thomaskippster/comfymodeldownloader"
],
"install_type": "git-clone",
"description": "Bridge for the standalone ComfyUI Model Downloader. Analyzes workflows, finds missing models via AI, and manages your archive to save SSD space."
},
{
"author": "akashzeno",
"title": "ComfyUI-PulseOfMotion",
"id": "comfyui-pulse-of-motion",
"reference": "https://github.com/akashzeno/ComfyUI-PulseOfMotion",
"files": [
"https://github.com/akashzeno/ComfyUI-PulseOfMotion"
],
"install_type": "git-clone",
"description": "Predicts Physical FPS (PhyFPS) from video using the Visual Chronometer model from the Pulse of Motion paper. Includes SDPA-optimized attention, device selection, progress tracking, and auto-downloads the model from HuggingFace."
},
{
"author": "ketle-man",
"title": "ComfyUI-Workflow-Studio",
"id": "comfyui-workflow-studio",
"reference": "https://github.com/ketle-man/ComfyUI-Workflow-Studio",
"files": [
"https://github.com/ketle-man/ComfyUI-Workflow-Studio"
],
"install_type": "git-clone",
"description": "Workflow management and generation UI plugin. Browse, organize, and execute workflows with auto-generated parameter editing, AI prompt assistant (Ollama), JSON syntax highlighting, Eagle integration, and multi-language support (EN/JA/ZH)."
},
{
"author": "destinyfaux",
"title": "Z-FUSE: Surgical LoRA Orchestrator",
"id": "z-fuse",
"reference": "https://github.com/destinyfaux/Z-Fuse",
"files": [
"https://github.com/destinyfaux/Z-Fuse"
],
"install_type": "git-clone",
"description": "High-fidelity, architecture-aware LoRA fusion for Z-Image (S3-DiT). Features simultaneous TIES-merging, per-block tuning, and no-loss export."
},
{
"author": "Amatsukast",
"title": "ComfyUI-SBTools",
"id": "sbtools",
"reference": "https://github.com/Amatsukast/ComfyUI-SBTools",
"files": [
"https://github.com/Amatsukast/ComfyUI-SBTools"
],
"install_type": "git-clone",
"description": "Workflow toolkit for ComfyUI. Includes BiRefNet background removal, dynamic prompt/image variable system for batch generation, chroma key tools, and more utilities."
},
{
"author": "kenyonxu",
"title": "Kai Civitai LoRA Loader",
"id": "kai-civitai-lora-loader",
"reference": "https://github.com/kenyonxu/ComfyUI_KaiUtilities",
"files": [
"https://github.com/kenyonxu/ComfyUI_KaiUtilities"
],
"install_type": "git-clone",
"description": "A LoRA loader that fetches and displays Civitai metadata including trigger words and preview images, with local caching and NSFW blur support."
},
{
"author": "pixaroma",
"title": "ComfyUI-Pixaroma",
"id": "comfyui-pixaroma",
"reference": "https://github.com/pixaroma/ComfyUI-Pixaroma",
"files": [
"https://github.com/pixaroma/ComfyUI-Pixaroma"
],
"install_type": "git-clone",
"description": "Creative suite for ComfyUI with 3D Builder, AudioReact, Image Composer, Paint Studio, Save Mp4, Image Crop, Image Compare, Note Pixaroma, Label, Resolution, Preview Image, and Align Pixaroma (canvas snap & alignment guides). Layers, transforms, AI background removal, audio-reactive video, and more."
},
{
"author": "Motif Technologies",
"title": "ComfyUI-MotifVideo2B",
"reference": "https://github.com/MotifTechnologies/ComfyUI-MotifVideo2B",
"files": [
"https://github.com/MotifTechnologies/ComfyUI-MotifVideo2B"
],
"install_type": "git-clone",
"description": "Custom nodes for Motif-Video 2B (Motif Technologies) text-to-video and image-to-video diffusion model. Includes model loaders, samplers, and a workflow-driven automatic model download dialog."
},
{
"author": "chkeeho80",
"title": "PromptDeckComposer",
"reference": "https://github.com/chkeeho80/PromptDeckComposer",
"files": [
"https://github.com/chkeeho80/PromptDeckComposer"
],
"install_type": "git-clone",
"description": "Structured + chaos-based prompt generation system for ComfyUI. Generate less. Evolve more."
},
{
"author": "AISeDam",
"title": "ComfyUI_RP_Cast",
"id": "comfyui_rp_cast",
"reference": "https://github.com/AISeDam/ComfyUI_RP_Cast",
"files": [
"https://github.com/AISeDam/ComfyUI_RP_Cast"
],
"install_type": "git-clone",
"description": "Per-region prompt and LoRA control for SD1.5, SDXL, Z-Image, and Qwen — compatible with multiple model architectures."
},
{
"author": "stevelasmin4real",
"title": "Resolution Calculator by Steve Lasmin",
"reference": "https://github.com/Eklipsis/resolution_calculator_by_steve_lasmin",
"files": [
"https://github.com/Eklipsis/resolution_calculator_by_steve_lasmin"
],
"install_type": "git-clone",
"description": "Calculates width and height from max resolution, aspect ratio, and multiplier for ComfyUI"
},
{
"author": "hm1579",
"title": "ComfyUI-LoopGif",
"reference": "https://github.com/HM1579/ComfyUI-LoopGif",
"files": [
"https://github.com/HM1579/ComfyUI-LoopGif"
],
"install_type": "git-clone",
"description": "A simple ComfyUI custom node for creating looping GIFs from VIDEO inputs."
},
{
"author": "stevelasmin4real",
"title": "Universal Input Hub by Steve Lasmin",
"reference": "https://github.com/Eklipsis/universal_input_hub_by_steve_lasmin",
"files": [
"https://github.com/Eklipsis/universal_input_hub_by_steve_lasmin"
],
"install_type": "git-clone",
"description": "All-in-one ComfyUI workflow hub: resolution calculator, noise, sigmas, conditioning, and sampler outputs"
},
{
"author": "bemoregt",
"title": "ComfyUI_FourierDomainAdaptation",
"reference": "https://github.com/bemoregt/ComfyUI_FourierDomainAdaptation",
"files": [
"https://github.com/bemoregt/ComfyUI_FourierDomainAdaptation"
],
"install_type": "git-clone",
"description": "A custom ComfyUI node that applies Fourier Domain Adaptation (FDA) between a target image and a reference image."
},
{
"author": "CrazyDashTool",
"title": "Combine-video-and-audio-comfyUI",
"reference": "https://github.com/CrazyDashTool/Combine-video-and-audio-comfyUI",
"files": [
"https://github.com/CrazyDashTool/Combine-video-and-audio-comfyUI"
],
"install_type": "git-clone",
"description": "A set of custom nodes for ComfyUI that merge video and audio using ffmpeg."
},
{
"author": "dokukobura",
"title": "comfyui-usk-utils",
"reference": "https://github.com/dokukobura/comfyui-usk-utils",
"files": [
"https://github.com/dokukobura/comfyui-usk-utils"
],
"install_type": "git-clone",
"description": "Smart offline checkpoint loader that auto-detects model architecture and lineage, dynamically routing optimal Latent, base prompt, and VAE warnings. (Description by CC)"
},
{
"author": "huagusam",
"title": "comfyui-attention-selector",
"reference": "https://github.com/huagusam/comfyui-attention-selector",
"files": [
"https://github.com/huagusam/comfyui-attention-selector"
],
"install_type": "git-clone",
"description": "Simple attention backend selector for ComfyUI supporting basic, sub_quad, split, pytorch, xformers, sage, and flash attention implementations."
},
{
"author": "db0",
"title": "comfyui-db0-pack",
"reference": "https://github.com/db0/comfyui-db0-pack",
"files": [
"https://github.com/db0/comfyui-db0-pack"
],
"install_type": "git-clone",
"description": "Custom comfyui nodes for my purposes."
},
{
"author": "arctan90",
"title": "single_image_deducker",
"reference": "https://github.com/arctan90/single_image_deducker",
"files": [
"https://github.com/arctan90/single_image_deducker"
],
"install_type": "git-clone",
"description": "ComfyUI plugin that decodes a single image from data and outputs it as IMAGE for use in subsequent nodes. (Description by CC)"
},
{
"author": "bertoo87",
"title": "ComfyUI_ColorGrading",
"reference": "https://github.com/bertoo87/ComfyUI_ColorGrading",
"files": [
"https://github.com/bertoo87/ComfyUI_ColorGrading"
],
"install_type": "git-clone",
"description": "Custom node featuring three interactive color wheels for shadows, midtones, and highlights with independent threshold sliders and master intensity control."
},
{
"author": "ankushgawande",
"title": "comfyui-scene-framer",
"reference": "https://github.com/ankushgawande/comfyui-scene-framer",
"files": [
"https://github.com/ankushgawande/comfyui-scene-framer"
],
"install_type": "git-clone",
"description": "Scene Framer is a simple utility node for framing multiple shots from a single image."
},
{
"author": "artemko7v",
"title": "ComfyUI Complex Prompt Nodes",
"reference": "https://github.com/ArtemKo7v/ComfyUI-Complex-Prompt",
"files": [
"https://github.com/ArtemKo7v/ComfyUI-Complex-Prompt"
],
"install_type": "git-clone",
"description": "ComfyUI node for working with complex prompts with support for variables, randomness, and basic logic."
},
{
"author": "orion4d",
"title": "Orion4D_AutoCachedPreview",
"reference": "https://github.com/orion4d/Orion4D_AutoCachedPreview",
"files": [
"https://github.com/orion4d/Orion4D_AutoCachedPreview"
],
"install_type": "git-clone",
"description": "A custom node for ComfyUI that allows you to cache an image and its mask to avoid recalculating upstream steps in your workflow."
},
{
"author": "alikonfilms",
"title": "comfyui-alikonfilms",
"reference": "https://github.com/alikonfilms/comfyui_alikonfilms",
"files": [
"https://github.com/alikonfilms/comfyui_alikonfilms"
],
"install_type": "git-clone",
"description": "A CLIP text encoder with 18 cinematic camera movement presets (dolly, pan, tilt, zoom, orbit and more). Subject-aware and free-camera modes, blend slider to mix your prompt with camera movements, and a live text output to preview the final prompt."
},
{
"author": "mexxmillion",
"title": "ComfyUI-VLMPrompt",
"reference": "https://github.com/mexxmillion/ComfyUI-VLMPrompt",
"files": [
"https://github.com/mexxmillion/ComfyUI-VLMPrompt"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for local VLM prompt generation with GGUF and Hugging Face backends."
},
{
"author": "hassan-mb",
"title": "HB ComfyUI Nodes",
"reference": "https://github.com/HassanEclipse/comfyui-hb-party",
"files": [
"https://github.com/HassanEclipse/comfyui-hb-party"
],
"install_type": "git-clone",
"description": "Utility nodes for ComfyUI featuring a dynamic Text Preset Switch with workflow-safe persistence and Node 2.0 support."
},
{
"author": "rikanrino",
"title": "Rikannodes",
"reference": "https://github.com/rikanrino/Rikannodes",
"files": [
"https://github.com/rikanrino/Rikannodes"
],
"install_type": "git-clone",
"description": "kijai ComfyUI-PromptRelay with fps and max frame output"
},
{
"author": "Cordux",
"title": "ComfyUI-PromptTagBuilder",
"reference": "https://github.com/Cordux/ComfyUI-PromptTagBuilder",
"files": [
"https://github.com/Cordux/ComfyUI-PromptTagBuilder"
],
"install_type": "git-clone",
"description": "Flexible ComfyUI node that simplifies prompt building through organized dropdown categories for tag-based models."
},
{
"author": "GeekatplayStudio",
"title": "ComfyUI-cluster",
"reference": "https://github.com/GeekatplayStudio/ComfyUI-cluster",
"files": [
"https://github.com/GeekatplayStudio/ComfyUI-cluster"
],
"install_type": "git-clone",
"description": "Ollama-driven routing nodes and curated workflows for ComfyUI with checkpoint, LoRA, and Flux split-component flows plus image-guided variants using vision analysis."
},
{
"author": "cowneko",
"title": "CWK_Checkpoints_Preset_Manager",
"reference": "https://github.com/cowneko/CWK_Checkpoints_Preset_Manager",
"files": [
"https://github.com/cowneko/CWK_Checkpoints_Preset_Manager"
],
"install_type": "git-clone",
"description": "ComfyUI node combining per-model preset system with full-featured model manager, CivitAI integration, and GGUF support for browsing and organizing checkpoints."
},
{
"author": "kijai",
"title": "ComfyUI-NativeLooping_testing",
"reference": "https://github.com/kijai/ComfyUI-NativeLooping_testing",
"files": [
"https://github.com/kijai/ComfyUI-NativeLooping_testing"
],
"install_type": "git-clone",
"description": "Temporary repository for testing candidate for native ComfyUI loop nodes. (Description by CC)"
},
{
"author": "IA-gyz",
"title": "comfyui-VarBoard",
"reference": "https://github.com/IA-gyz/comfyui-VarBoard",
"files": [
"https://github.com/IA-gyz/comfyui-VarBoard"
],
"install_type": "git-clone",
"description": "Variables Board is a floating control center for ComfyUI workflows that centralizes parameters into a customizable overlay."
},
{
"author": "wsq194",
"title": "Yeban Workflow Manager",
"reference": "https://github.com/wsq194/yeban-workflow-manager",
"files": [
"https://github.com/wsq194/yeban-workflow-manager"
],
"install_type": "git-clone",
"description": "A ComfyUI workflow manager plugin with auto-save, version history, sidebar integration and more."
},
{
"author": "nekodificador",
"title": "NKD Klein Tools",
"reference": "https://github.com/Nekodificador/ComfyUI-NKD-Klein-Tools",
"files": [
"https://github.com/Nekodificador/ComfyUI-NKD-Klein-Tools"
],
"install_type": "git-clone",
"description": "NKD Klein Presampling and Postsampling nodes for Flux Klein workflows in ComfyUI"
},
{
"author": "szymonj",
"title": "LoRA Range Loader",
"reference": "https://github.com/esp-dev/comfyui-lora-range-loader",
"files": [
"https://github.com/esp-dev/comfyui-lora-range-loader"
],
"install_type": "git-clone",
"description": "ComfyUI custom node: load a LoRA from current selection and automatically advance current within a first/last filename range."
},
{
"author": "brosequist",
"title": "ComfyUI-PipelineBarrier",
"reference": "https://github.com/brosequist/ComfyUI-PipelineBarrier",
"files": [
"https://github.com/brosequist/ComfyUI-PipelineBarrier"
],
"install_type": "git-clone",
"description": "A single node that flushes PyTorch's GPU memory cache and runs garbage collection between pipeline stages, preventing OOM errors in multi-stage workflows (e.g. two-pass video generation). Accepts a LATENT input and returns it unchanged."
},
{
"author": "artemko7v",
"title": "ComfyUI Prompt Enhance Nodes",
"reference": "https://github.com/ArtemKo7v/ComfyUI-Prompt-Magic",
"files": [
"https://github.com/ArtemKo7v/ComfyUI-Prompt-Magic"
],
"install_type": "git-clone",
"description": "ComfyUI prompt enhance nodes and string utilities"
},
{
"author": "mitch-avis",
"title": "ComfyUI-HoldCounter",
"reference": "https://github.com/mitch-avis/ComfyUI-HoldCounter",
"files": [
"https://github.com/mitch-avis/ComfyUI-HoldCounter"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node that emits a held, range-bound integer index with multiple advancement modes (loop, clamp, pingpong, random, shuffle) — useful as a Load Image batch index that advances every N runs."
},
{
"author": "capacap",
"title": "ComfyUI-Selective-Sigma-Detailer",
"reference": "https://github.com/Capacap/ComfyUI-Selective-Sigma-Detailer",
"files": [
"https://github.com/Capacap/ComfyUI-Selective-Sigma-Detailer"
],
"install_type": "git-clone",
"description": "A ComfyUI sampler that boosts detail only in latent regions that are already dense at the moment the schedule activates."
},
{
"author": "xav",
"title": "XAV Anima Style Selector",
"reference": "https://github.com/XAV-Games/comfyui-xav-anima-style-selector",
"files": [
"https://github.com/XAV-Games/comfyui-xav-anima-style-selector"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for quick and easy style selection for the Anima model"
},
{
"author": "xxchinenxx",
"title": "Qwen Clothing Selector",
"reference": "https://github.com/xxchinenxx/ComfyUI-QwenClothingSelector",
"files": [
"https://github.com/xxchinenxx/ComfyUI-QwenClothingSelector"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for Qwen-Image-Edit outfit/clothing edits — toggles, presets, and identity-preserving prompt builders. Useful for fashion edits, costume changes, and outfit swaps."
},
{
"author": "halr9000",
"title": "Procgen 9000",
"reference": "https://github.com/halr9000/procgen9000",
"files": [
"https://github.com/halr9000/procgen9000"
],
"install_type": "git-clone",
"description": "Procedural image generation toolkit designed as input to image edit workflows."
},
{
"author": "amrnidal999-tech",
"title": "Realisim Enhancor",
"reference": "https://github.com/amrnidal999-tech/comfyui-realisim-enhancor",
"files": [
"https://github.com/amrnidal999-tech/comfyui-realisim-enhancor"
],
"install_type": "git-clone",
"description": "A ComfyUI image enhancement node with JPEG degradation, noise, blur, sharpening, contrast, and color controls."
},
{
"author": "xmarre",
"title": "ComfyUI-TIDE",
"reference": "https://github.com/xmarre/ComfyUI-TIDE",
"files": [
"https://github.com/xmarre/ComfyUI-TIDE"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node implementing TIDE (Text-Informed Dynamic Extrapolation with Step-Aware Temperature Control) for diffusion models."
},
{
"author": "xmarre",
"title": "ComfyUI-DiffAid-Patches",
"reference": "https://github.com/xmarre/ComfyUI-DiffAid-Patches",
"files": [
"https://github.com/xmarre/ComfyUI-DiffAid-Patches"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node pack implementing Diff-Aid-inspired inference-time text-conditioning patches for Flux and SDXL models."
},
{
"author": "wos-ai-studio",
"title": "ComfyUI-Title-Memo",
"reference": "https://github.com/xujianjian2004/ComfyUI-Title-Memo",
"files": [
"https://github.com/xujianjian2004/ComfyUI-Title-Memo"
],
"install_type": "git-clone",
"description": "A lightweight ComfyUI canvas annotation node with rich styling, built-in presets, and custom presets."
},
{
"author": "takkun",
"title": "ComfyUI-StepByStep-Sampler",
"reference": "https://github.com/TakkunRed/ComfyUI-StepByStep-Sampler",
"files": [
"https://github.com/TakkunRed/ComfyUI-StepByStep-Sampler"
],
"install_type": "git-clone",
"description": "ComfyUI StepByStep Sampler is a plugin for ComfyUI that provides a step-by-step sampling method for image generation. It allows users to generate images in a more controlled and iterative manner, making it easier to achieve desired results."
},
{
"author": "marduk191",
"title": "comfyui-nucleus",
"reference": "https://github.com/marduk191/comfyui-nucleus",
"files": [
"https://github.com/marduk191/comfyui-nucleus"
],
"install_type": "git-clone",
"description": "Nucleus Image (MoE diffusion) support for ComfyUI — backport of PR #13471"
},
{
"author": "ussaaron",
"title": "FrameFuse",
"reference": "https://github.com/headline-design/comfyui-framefuse",
"files": [
"https://github.com/headline-design/comfyui-framefuse"
],
"install_type": "git-clone",
"description": "ComfyUI nodes for stitching a still frame onto the start or end of an IMAGE video batch and trimming extra tail frames with optional audio sync alignment."
},
{
"author": "eniewold",
"title": "Subworkflow (reusable workflows)",
"reference": "https://github.com/eniewold/ComfyUI-Subworkflow",
"files": [
"https://github.com/eniewold/ComfyUI-Subworkflow"
],
"install_type": "git-clone",
"description": "Use ComfyUI workflows as reusable subworkflows via Subworkflow Input, Subworkflow Output, and Subworkflow nodes"
},
{
"author": "machinedelusions",
"title": "ComfyUI-FL-LTXTools",
"reference": "https://github.com/filliptm/ComfyUI-FL-LTXTools",
"files": [
"https://github.com/filliptm/ComfyUI-FL-LTXTools"
],
"install_type": "git-clone",
"description": "Experimental tools and motion controls for LTX-Video in ComfyUI"
},
{
"author": "serhiiyashyn-sf",
"title": "Face-Aligned Center",
"reference": "https://github.com/serhiiyashyn-sf/comfyui-face-aligned-center",
"files": [
"https://github.com/serhiiyashyn-sf/comfyui-face-aligned-center"
],
"install_type": "git-clone",
"description": "Batch-aware character centering for ComfyUI. Given a character sheet (multiple angles), scales every image so the face ends up at the same size and canvas position — including back-view angles, via a silhouette fallback tied to the batch's face scale. Includes a Fine-Tune node for per-image zoom/nudge with a live canvas preview, and an Anime Face Detect node for crop+mask using lbpcascade_animeface."
},
{
"author": "amortegui84",
"title": "Tile Upscale NB2",
"reference": "https://github.com/amortegui84/comfyui-tile-upscale-nb2",
"files": [
"https://github.com/amortegui84/comfyui-tile-upscale-nb2"
],
"install_type": "git-clone",
"description": "Tile-based upscaling nodes for ComfyUI — Nano Banana 2 compatible"
},
{
"author": "dorpxam",
"title": "LTX-2 Microscope",
"reference": "https://github.com/dorpxam/ComfyUI-LTX2-Microscope",
"files": [
"https://github.com/dorpxam/ComfyUI-LTX2-Microscope"
],
"install_type": "git-clone",
"description": "48-Layers Latent Previewer for Lightrick's LTX-2 model."
},
{
"author": "enviral-design",
"title": "Enviral Design Node Pack",
"reference": "https://github.com/EnviralDesign/comfyUI-enviral-design-node-pack",
"files": [
"https://github.com/EnviralDesign/comfyUI-enviral-design-node-pack"
],
"install_type": "git-clone",
"description": "Small, dependency-light ComfyUI utility nodes from Enviral Design."
},
{
"author": "newgrit1004",
"title": "Qwen3 Triton TTS",
"reference": "https://github.com/newgrit1004/ComfyUI-Qwen3-TTS-Triton",
"files": [
"https://github.com/newgrit1004/ComfyUI-Qwen3-TTS-Triton"
],
"install_type": "git-clone",
"description": "ComfyUI node wrapping qwen3-tts-triton for 7-mode Qwen3-TTS inference (Triton kernel fusion + TurboQuant KV cache)"
},
{
"author": "intelliprompt",
"title": "comfy-intelliprompt",
"reference": "https://github.com/galpt/comfy-intelliPrompt",
"files": [
"https://github.com/galpt/comfy-intelliPrompt"
],
"install_type": "git-clone",
"description": "intelliPrompt - An intelligent prompt optimizer for ComfyUI that fixes typos, balances parentheses, and enhances prompts"
},
{
"author": "mahilkr",
"title": "HunyuanWorld 3D World Generation",
"reference": "https://github.com/krmahil/comfyui-hunyuan-world",
"files": [
"https://github.com/krmahil/comfyui-hunyuan-world"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for immersive 3D world generation using Tencent HunyuanWorld 1.0"
},
{
"author": "dailydoseofaiart",
"title": "ComfyUI-FPSFrameDrop",
"reference": "https://github.com/dailydoseofaiart/ComfyUI-FPSFrameDrop",
"files": [
"https://github.com/dailydoseofaiart/ComfyUI-FPSFrameDrop"
],
"install_type": "git-clone",
"description": "A node to drop frames from the output images to force the video to a lower FPS at the same playback speed."
},
{
"author": "comfyui-attic",
"title": "External LoRA Loader",
"reference": "https://github.com/comfyuiattic-989/ComfyUI-External-Lora-Loader",
"files": [
"https://github.com/comfyuiattic-989/ComfyUI-External-Lora-Loader"
],
"install_type": "git-clone",
"description": "Load LoRA files from any path on any mounted drive, with a tree-style file browser and LRU RAM cache."
},
{
"author": "uonr",
"title": "comfyui-uonr-nodes",
"reference": "https://github.com/uonr/comfyui-uonr-nodes",
"files": [
"https://github.com/uonr/comfyui-uonr-nodes"
],
"install_type": "git-clone",
"description": "Personal ComfyUI custom nodes."
},
{
"author": "fkxianzhou",
"title": "ComfyUI 360 Panoramas",
"reference": "https://github.com/fkxianzhou/ComfyUI-360Panoramas",
"files": [
"https://github.com/fkxianzhou/ComfyUI-360Panoramas"
],
"install_type": "git-clone",
"description": "Panorama equirectangular to perspective rectify node with interactive preview for ComfyUI."
},
{
"author": "Phykrex",
"title": "comfyui-momo-nodes",
"reference": "https://github.com/Phykrex/ComfyUI-Momo-Nodes",
"files": [
"https://github.com/Phykrex/ComfyUI-Momo-Nodes"
],
"install_type": "git-clone",
"description": "Custom nodes for ComfyUI by Momo."
},
{
"author": "mrgattax",
"title": "ComfyUI-Egregora-ARMD",
"reference": "https://github.com/lucasgattas/ComfyUI-Egregora-ARMD",
"files": [
"https://github.com/lucasgattas/ComfyUI-Egregora-ARMD"
],
"install_type": "git-clone",
"description": "🌐 ARMD (Adaptive Regional Mixture of Diffusers) is a region-based diffusion system for ComfyUI, designed for semantic upscaling with per-region conditioning, optional VLM captioning, and adaptive regional reconstruction."
},
{
"author": "teradark",
"title": "ComfyUI Universal Extractor",
"reference": "https://github.com/Tera-Dark/ComfyUI-Universal-Extractor",
"files": [
"https://github.com/Tera-Dark/ComfyUI-Universal-Extractor"
],
"install_type": "git-clone",
"description": "ComfyUI custom node and gallery workspace for prompt libraries, searchable image notes, and reusable extraction workflows."
},
{
"author": "josegomezfreelance",
"title": "Spectrumify (ZX)",
"reference": "https://github.com/JoseGomezFreelance/ComfyUI_Spectrumify_A-public",
"files": [
"https://github.com/JoseGomezFreelance/ComfyUI_Spectrumify_A-public"
],
"install_type": "git-clone",
"description": "ZX Spectrum pixel-art converter for ComfyUI. Based on spectrumify-public by JGF."
},
{
"author": "xuxiao305",
"title": "ComfyUI-ImageBatchUtils",
"reference": "https://github.com/xuxiao305/ComfyUI-ImageBatchUtils",
"files": [
"https://github.com/xuxiao305/ComfyUI-ImageBatchUtils"
],
"install_type": "git-clone",
"description": "Lightweight ComfyUI custom nodes for working with image and mask batches. No dependencies beyond ComfyUI itself."
},
{
"author": "BarleyFarmer",
"title": "comfyui-promptsegmentselector",
"reference": "https://github.com/BarleyFarmer/ComfyUI-PromptSegmentSelector",
"files": [
"https://github.com/BarleyFarmer/ComfyUI-PromptSegmentSelector"
],
"install_type": "git-clone",
"description": "Split a multiline prompt into up to 12 numbered STRING outputs using a user-defined delimiter. Useful for multi-segment video workflows."
},
{
"author": "Kyreo",
"title": "comfyui-characterpromptbuffer",
"reference": "https://github.com/Kyreo/ComfyUI-CharacterPromptBuffer",
"files": [
"https://github.com/Kyreo/ComfyUI-CharacterPromptBuffer"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for generating character prompt variations as batch"
},
{
"author": "cuzelac",
"title": "ComfyUI-Trellis2 Multi-View Refiner",
"reference": "https://github.com/cuzelac/ComfyUI-Trellis2-MultiViewRefiner",
"files": [
"https://github.com/cuzelac/ComfyUI-Trellis2-MultiViewRefiner"
],
"install_type": "git-clone",
"description": "Multi-view mesh refiner node for ComfyUI-Trellis2 with spatial blending across front/back/left/right views."
},
{
"author": "river-side",
"title": "riversidenodes",
"reference": "https://github.com/RiverSide71/comfyui-image-resize-to-model-resolution",
"files": [
"https://github.com/RiverSide71/comfyui-image-resize-to-model-resolution"
],
"install_type": "git-clone",
"description": "A custom node to resize your image to model-specific resolution"
},
{
"author": "Av007",
"title": "comfyui-credit-tracker",
"reference": "https://github.com/Av007/custom_fns",
"files": [
"https://github.com/Av007/custom_fns"
],
"install_type": "git-clone",
"description": "Pre-flight cost estimator with live balance check for ComfyUI Partner Nodes"
},
{
"author": "deno2026",
"title": "Deno Custom Nodes",
"reference": "https://github.com/Deno2026/comfyui-deno-custom-nodes",
"files": [
"https://github.com/Deno2026/comfyui-deno-custom-nodes"
],
"install_type": "git-clone",
"description": "Korean-friendly practical custom nodes for ComfyUI"
},
{
"author": "OvertliDS",
"title": "Overtli Studio Suite",
"id": "overtli-studio-suite",
"reference": "https://github.com/OvertliDS/overtli-studio-suite",
"files": [
"https://github.com/OvertliDS/overtli-studio-suite"
],
"install_type": "git-clone",
"category": "Model/LLM",
"description": "Windows-first advanced suite for Pollinations, LM Studio, Copilot CLI, and OpenAI-compatible multi-engine workflows."
},
{
"author": "yawiii",
"title": "Prompt Assistant",
"id": "prompt-assistant",
"reference": "https://github.com/yawiii/ComfyUI-Prompt-Assistant",
"files": [
"https://github.com/yawiii/ComfyUI-Prompt-Assistant"
],
"install_type": "git-clone",
"description": "A versatile prompt utility featuring translation, refinement, expansion, and image/video-to-prompt reverse engineering with one-click access to any online or local LLM."
},
{
"author": "Mayo",
"title": "Mayo Nodes",
"reference": "https://github.com/Pasu2k/comfyui-mayo-nodes",
"files": [
"https://github.com/Pasu2k/comfyui-mayo-nodes"
],
"install_type": "git-clone",
"description": "Mayo's Custom Nodes, including Aspect Ratio Randomizer and Custom Dropdown"
},
{
"author": "deluxa",
"title": "ComfyUI-DN_PatchVAEAttention",
"reference": "https://github.com/0xDELUXA/ComfyUI-DN_PatchVAEAttention",
"files": [
"https://github.com/0xDELUXA/ComfyUI-DN_PatchVAEAttention"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node that patches the attention mechanism inside a VAE's encoder and decoder to use a specific implementation, regardless of what ComfyUI auto-selected at startup."
},
{
"author": "facok",
"title": "comfyui-diversityboost",
"reference": "https://github.com/facok/ComfyUI-DiversityBoost",
"files": [
"https://github.com/facok/ComfyUI-DiversityBoost"
],
"install_type": "git-clone",
"description": "Restore composition diversity for distilled diffusion models. Training-free frequency-domain phase injection."
},
{
"author": "sparknight",
"title": "ComfyUI-EnumCombo",
"reference": "https://github.com/SparknightLLC/ComfyUI-EnumCombo",
"files": [
"https://github.com/SparknightLLC/ComfyUI-EnumCombo"
],
"install_type": "git-clone",
"description": "Workflow-local enumerated values for ComfyUI."
},
{
"author": "vladgohn",
"title": "🦄 MurMur",
"reference": "https://github.com/vladgohn/ComfyUI-MurMur",
"files": [
"https://github.com/vladgohn/ComfyUI-MurMur"
],
"install_type": "git-clone",
"description": "Tiny ComfyUI styling utility for fast node and group coloring with emoji labels for nodes."
},
{
"author": "ethanfel",
"title": "LoRA Optimizer",
"id": "comfyui-lora-optimizer",
"reference": "https://github.com/ethanfel/ComfyUI-LoRA-Optimizer",
"files": [
"https://github.com/ethanfel/ComfyUI-LoRA-Optimizer"
],
"install_type": "git-clone",
"description": "Auto-optimizer node for combining multiple LoRAs via diff-based merging with TIES conflict resolution"
},
{
"author": "rookiestar28",
"title": "ComfyUI-RookieUI",
"id": "comfyui-rookieui",
"reference": "https://github.com/rookiestar28/ComfyUI-RookieUI",
"files": [
"https://github.com/rookiestar28/ComfyUI-RookieUI"
],
"install_type": "git-clone",
"description": "The ultimate A1111-style sidebar. Bring the classic UX you know and love into ComfyUI."
},
{
"author": "rookiestar28",
"title": "ComfyUI-OpenClaw",
"id": "comfyui-openclaw",
"reference": "https://github.com/rookiestar28/ComfyUI-OpenClaw",
"files": [
"https://github.com/rookiestar28/ComfyUI-OpenClaw"
],
"install_type": "git-clone",
"description": "Your own personal AIGC Factory. Any picture. Any reel. The Comfy way. ©️"
},
{
"author": "knottttt",
"title": "ComfyUI TinyPNG",
"id": "comfyui-tinypng",
"reference": "https://github.com/knottttt/comfyui-tinyPNG",
"files": [
"https://github.com/knottttt/comfyui-tinyPNG"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node for compressing images via TinyPNG API."
},
{
"author": "steptonite",
"title": "Seedance 2.0 (Sjinn.ai)",
"reference": "https://github.com/steptonite/seedance2-sjinn-comfyui",
"files": [
"https://github.com/steptonite/seedance2-sjinn-comfyui"
],
"install_type": "git-clone",
"description": "Run ByteDance Seedance 2.0 video generation in ComfyUI via Sjinn.ai API. Supports up to 6 image, 3 video and 2 audio references. Outputs native VIDEO plus first frame, last frame and frame batch."
},
{
"author": "kinorax",
"title": "ComfyUI-Info-Prompt-Toolkit",
"id": "info-prompt-toolkit",
"reference": "https://github.com/kinorax/comfyui-info-prompt-toolkit",
"files": [
"https://github.com/kinorax/comfyui-info-prompt-toolkit"
],
"install_type": "git-clone",
"description": "Civitai-compatible metadata saving, same-name .txt captions, XY Plot, Tiled Sampling, SAM3, Detailer, PixAI Tagger, wildcards, and Dynamic Prompts to simplify ComfyUI wiring, improve reusability, and carry trial results into the next production pass."
},
{
"author": "jtreminio",
"title": "Connect The Dots",
"id": "connect-the-dots",
"reference": "https://github.com/jtreminio/ComfyUI-ConnectTheDots",
"files": [
"https://github.com/jtreminio/ComfyUI-ConnectTheDots"
],
"install_type": "git-clone",
"description": "Connect compatible nodes without scrolling across your graph."
},
{
"author": "magicwang1111",
"title": "Comfyui-Kling-Wrapper",
"id": "comfyui-kling-wrapper",
"reference": "https://github.com/magicwang1111/Comfyui-Kling-Wrapper",
"files": [
"https://github.com/magicwang1111/Comfyui-Kling-Wrapper"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for Kling AI image generation, text-to-video, image-to-video, advanced custom elements, motion control, lip sync, text/video to audio, effects, virtual try-on, and image expansion."
},
{
"author": "magicwang1111",
"title": "ComfyUI-Nanobanana",
"id": "comfyui-nanobanana",
"reference": "https://github.com/magicwang1111/ComfyUI-Nanobanana",
"files": [
"https://github.com/magicwang1111/ComfyUI-Nanobanana"
],
"install_type": "git-clone",
"description": "Gemini native generateContent custom nodes for ComfyUI with Nano Banana, Nano Banana 2, and Nano Banana Pro, supporting both Google direct access and Gemini-compatible native relay endpoints."
},
{
"author": "magicwang1111",
"title": "ComfyUI-Happyhorse-Wrapper",
"reference": "https://github.com/magicwang1111/ComfyUI-Happyhorse-Wrapper",
"files": [
"https://github.com/magicwang1111/ComfyUI-Happyhorse-Wrapper"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for HappyHorse 1.0 video generation, including text-to-video, image-to-video, reference-to-video, video editing, and preview nodes."
},
{
"author": "magicwang1111",
"title": "ComfyUI-Account-Manager",
"reference": "https://github.com/magicwang1111/ComfyUI-Account-Manager",
"files": [
"https://github.com/magicwang1111/ComfyUI-Account-Manager"
],
"install_type": "git-clone",
"description": "Adds login, admin-managed user registration, API token generation, IP filtering, and per-account asset isolation to ComfyUI."
},
{
"author": "artyclaw",
"title": "ArtyClaw Comfy Nodes",
"reference": "https://github.com/artyclaw/artyclaw-comfy",
"files":[
"https://github.com/artyclaw/artyclaw-comfy"
],
"install_type": "git-clone",
"description": "A power-user toolkit for prompt logic, IO, RNG handling, and LoRA formatting."
},
{
"author": "Guillaume-127",
"title": "Post Processing PRO",
"reference": "https://github.com/Guillaume-127/ConfyUI_Post_Processing_PRO",
"files": [
"https://github.com/Guillaume-127/ConfyUI_Post_Processing_PRO"
],
"install_type": "git-clone",
"description": "A professional, high-fidelity post-processing node suite aiming for photorealism. Simulates precise physical analog camera behaviors (Bloom, Optics, Glare, Diffusion)."
},
{
"author": "ULT7RA",
"title": "FLUXNATION FLUX.1 Fused Neuromorphic SPIKE Attention & Step Cache Cuda Kernel",
"id": "fluxnation",
"reference": "https://github.com/ULT7RA/FLUXNATION",
"files": [
"https://github.com/ULT7RA/FLUXNATION"
],
"install_type": "git-clone",
"description": "FLUXNATION is a fused FP8 CUDA kernel for FLUX.1 that replaces the entire SingleStreamBlock forward pass with a single torch.ops call covering modulation dual GEMMs QKV projection RoPE attention gating and residual all in one shot. On top of that it ships with neuromorphic spike attention which scores every attention block by real dot product similarity and kills the ones that dont matter after image structure has formed keeping only the top 45 percent. Step caching then replays the cached output on alternating spike steps for zero attention compute every other step. The result is 30 percent faster generation than stock ComfyUI on an RTX 4090 with no quality loss. Works with every sampler ComfyUI supports at any step count. FP16 ports for 10 series 20 series and 30 series GPUs are included. A must have for anyone running FLUX.1."
},
{
"author": "zaochuan5854",
"title": "ComfyUI-TensorRT-Reforge",
"id": "comfyui-tensorrt-reforge",
"reference": "https://github.com/zaochuan5854/ComfyUI-TensorRT-Reforge",
"files": [
"https://github.com/zaochuan5854/ComfyUI-TensorRT-Reforge"
],
"install_type": "git-clone",
"description": "Building upon the excellent foundation of ComfyUI_TensorRT, this version focuses on full support for the Anima architecture and advanced TensorRT acceleration. It aims to push NVIDIA RTX™ GPU performance to its limits for the next generation of Stable Diffusion workflows."
},
{
"author": "MSXYZ",
"title": "ComfyUI-MSXYZ",
"id": "comfyui-msxyz",
"reference": "https://github.com/MSXYZ-GenAI/comfyui-msxyz",
"files": [
"https://github.com/MSXYZ-GenAI/comfyui-msxyz"
],
"install_type": "git-clone",
"description": "Video Adaptive Anti-Aliasing post-processing node for ComfyUI to eliminate jagged edges in AI-generated videos and images."
},
{
"author": "longyijdos",
"title": "ComfyUI-LLM-Prompt-Tagger",
"id": "llm-prompt-tagger",
"reference": "https://github.com/longyijdos/ComfyUI-LLM-Prompt-Tagger",
"files": [
"https://github.com/longyijdos/ComfyUI-LLM-Prompt-Tagger"
],
"install_type": "git-clone",
"description": "Nodes: LLM Prompt Tags, LLM Prompt Conditioning. Generates positive and negative prompts with an OpenAI-compatible chat/completions API and can encode them directly into CLIP conditioning."
},
{
"author": "yedp123",
"title": "ComfyUI-Beginner-Bible",
"reference": "https://github.com/yedp123/ComfyUI-Beginner-Bible",
"files": [
"https://github.com/yedp123/ComfyUI-Beginner-Bible"
],
"install_type": "git-clone",
"description": "An in-app, drag-and-drop dictionary for ComfyUI, designed specifically for absolute beginners and non-coders."
},
{
"author": "itom0717",
"title": "ComfyUI-Prompt-String-Selector",
"reference": "https://github.com/itom0717/ComfyUI-Prompt-String-Selector",
"files": [
"https://github.com/itom0717/ComfyUI-Prompt-String-Selector"
],
"install_type": "git-clone",
"description": "ComfyUI custom node set for efficient prompt management and visualization across categories like characters, art styles, clothing, and poses with dynamic control and integration. (Description by CC)"
},
{
"author": "noesclavo",
"title": "ComfyUI-NodeColorizer",
"reference": "https://github.com/noesclavo/ComfyUI-NodeColorizer",
"files": [
"https://github.com/noesclavo/ComfyUI-NodeColorizer"
],
"install_type": "git-clone",
"description": "A lightweight ComfyUI extension that adds a floating RGBA color picker panel for coloring selected nodes on the canvas."
},
{
"author": "QuigleyDown",
"title": "ComfyUI-FooterGallery",
"reference": "https://github.com/QuigleyDown/ComfyUI-FooterGallery",
"files": [
"https://github.com/QuigleyDown/ComfyUI-FooterGallery"
],
"install_type": "git-clone",
"description": "ComfyUI-FooterGallery is a ComfyUI extension that adds an image gallery to the bottom of the user interface."
},
{
"author": "yogurt7771",
"title": "ComfyUI-YogurtKiwiEdit",
"reference": "https://github.com/yogurt7771/ComfyUI-YogurtKiwiEdit",
"files": [
"https://github.com/yogurt7771/ComfyUI-YogurtKiwiEdit"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for Kiwi-Edit video editing."
},
{
"author": "arzumata",
"title": "ComfyUI-ARZUMATA-LGCTinyPerf",
"reference": "https://github.com/ARZUMATA/ComfyUI-ARZUMATA-LGCTinyPerf",
"files": [
"https://github.com/ARZUMATA/ComfyUI-ARZUMATA-LGCTinyPerf"
],
"install_type": "git-clone",
"description": "Lightweight LiteGraph performance enhancement."
},
{
"author": "xuedee",
"title": "ComfyUI-ID-Search",
"reference": "https://github.com/xuedee/ComfyUI-ID-Search",
"files": [
"https://github.com/xuedee/ComfyUI-ID-Search"
],
"install_type": "git-clone",
"description": "A lightweight node search and logical navigation tool for ComfyUI. (Description by CC)"
},
{
"author": "komlevv",
"title": "komlevv Align ComfyUI",
"reference": "https://github.com/komlevv/komlevv-Align-ComfyUI",
"files": [
"https://github.com/komlevv/komlevv-Align-ComfyUI"
],
"install_type": "git-clone",
"description": "Node alignment panel for ComfyUI with reroute dot support and no color widget features."
},
{
"author": "bananasss00",
"title": "ComfyUI-NodeHider",
"reference": "https://github.com/bananasss00/ComfyUI-NodeHider",
"files": [
"https://github.com/bananasss00/ComfyUI-NodeHider"
],
"install_type": "git-clone",
"description": "Universal node hiding extension for ComfyUI. Hide any node on the canvas with a stylish spoiler overlay that disappears on hover."
},
{
"author": "SpaceWarpStudio",
"title": "ComfyUI-SetInputGetOutput",
"reference": "https://github.com/SpaceWarpStudio/ComfyUI-SetInputGetOutput",
"files": [
"https://github.com/SpaceWarpStudio/ComfyUI-SetInputGetOutput"
],
"install_type": "git-clone",
"description": "Virtual Set and Get nodes for ComfyUI: name a value on a Set node and read it from a Get node without long wires."
},
{
"author": "Gothdir",
"title": "ComfyUI-AppToolbox",
"reference": "https://github.com/Gothdir/ComfyUI-AppToolbox",
"files": [
"https://github.com/Gothdir/ComfyUI-AppToolbox"
],
"install_type": "git-clone",
"description": "A small toolbox gadget for Appmode in ComfyUI that shows terminal information, restart button, VRAM usage and clear VRAM button."
},
{
"author": "makadi",
"title": "ComfyUI-Targm",
"reference": "https://github.com/MohammadAboulEla/ComfyUI-Targm",
"files": [
"https://github.com/MohammadAboulEla/ComfyUI-Targm"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node for high-quality text translation using Tencent's HY-MT1.5-1.8B-FP8 model."
},
{
"author": "craftopiastudio",
"title": "ComfyUI-CraftKit",
"reference": "https://github.com/CraftopiaStudio/ComfyUI-CraftKit",
"files": [
"https://github.com/CraftopiaStudio/ComfyUI-CraftKit"
],
"install_type": "git-clone",
"description": "Smart resize, batch resize, resolution multiplier and prompt controller nodes for ComfyUI"
},
{
"author": "mike420",
"title": "ComfyUI_Workflow_Timer",
"reference": "https://github.com/mike420/ComfyUI_Workflow_Timer",
"files": [
"https://github.com/mike420/ComfyUI_Workflow_Timer"
],
"install_type": "git-clone",
"description": "A simple workflow timer node for ComfyUI."
},
{
"author": "mrgattax",
"title": "ComfyUI-Egregora-Adaptive-Colorfix",
"reference": "https://github.com/lucasgattas/ComfyUI-Egregora-Adaptive-Colorfix",
"files": [
"https://github.com/lucasgattas/ComfyUI-Egregora-Adaptive-Colorfix"
],
"install_type": "git-clone",
"description": "Adaptive color fix custom node for ComfyUI with stronger edge protection and luminance-aware chroma fusion."
},
{
"author": "prelife",
"title": "ComfyUI_prelife",
"reference": "https://github.com/prelife/ComfyUI_prelife",
"files": [
"https://github.com/prelife/ComfyUI_prelife"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for image analysis and preprocessing (V3 API)"
},
{
"author": "ecalot",
"title": "ComfyUI-GameDev",
"reference": "https://github.com/ecalot/ComfyUI-GameDev",
"files": [
"https://github.com/ecalot/ComfyUI-GameDev"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for depth-to-layers processing and grid slicing. For Game Development use cases."
},
{
"author": "masternc80",
"title": "ComfyUI-BBoxNodes",
"reference": "https://github.com/masternc80/ComfyUI-BBoxNodes",
"files": [
"https://github.com/masternc80/ComfyUI-BBoxNodes"
],
"install_type": "git-clone",
"description": "Bboxes (Bounding Boxes) handling and visualization"
},
{
"author": "imk-design",
"title": "Mask Analyzer",
"reference": "https://github.com/imk-design/ComfyUI-Mask-Analyzer",
"files": [
"https://github.com/imk-design/ComfyUI-Mask-Analyzer"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for analyzing mask complexity and routing between direct, simplified, and overlay strategies."
},
{
"author": "hlibr",
"title": "comfyui-gguf-prompt-rewriter",
"reference": "https://github.com/hlibr/ComfyUI-GGUF-Prompt-Rewriter",
"files": [
"https://github.com/hlibr/ComfyUI-GGUF-Prompt-Rewriter"
],
"install_type": "git-clone",
"description": "Standalone ComfyUI nodes for prompt rewriting with local GGUF models via llama-cpp-python."
},
{
"author": "myonmu0",
"title": "ComfyUI-NanoGPT_ImageGeneration",
"reference": "https://github.com/myonmu0/ComfyUI-NanoGPT_ImageGeneration",
"files": [
"https://github.com/myonmu0/ComfyUI-NanoGPT_ImageGeneration"
],
"install_type": "git-clone",
"description": "Custom node to generate a image using NanoGPT API"
},
{
"author": "starfieldscreensaver",
"title": "ComfyUI Batch Blend",
"id": "comfyui-batch-blend",
"reference": "https://github.com/starfieldscreensaver/comfyui-batch-blend",
"files": [
"https://github.com/starfieldscreensaver/comfyui-batch-blend"
],
"install_type": "git-clone",
"description": "Blends two image batches frame-by-frame using vectorised tensor ops. Supports 15 blend modes (normal, add, multiply, screen, overlay, soft light, and more). No loops or workarounds needed — works natively with batches."
},
{
"author": "tennantje",
"title": "comfyui-template-string",
"reference": "https://github.com/tennantje/comfyui-template-string",
"files": [
"https://github.com/tennantje/comfyui-template-string"
],
"install_type": "git-clone",
"description": "A simple ComfyUI custom node for string interpolation."
},
{
"author": "videofeedback",
"title": "ComfyUI Render Time",
"reference": "https://github.com/videofeedback/comfyui-render-time",
"files": [
"https://github.com/videofeedback/comfyui-render-time"
],
"install_type": "git-clone",
"description": "Real-time per-node execution timing, live log, and workflow reconstruction for ComfyUI"
},
{
"author": "leechking",
"title": "Latent Residue Cleaner",
"reference": "https://github.com/L33chKing/ComfyUI_LatentResidueCleaner",
"files": [
"https://github.com/L33chKing/ComfyUI_LatentResidueCleaner"
],
"install_type": "git-clone",
"description": "Latent Residue Cleaner — a ComfyUI node that removes diffusion noise residue from AI-generated images using GPU-accelerated guided, bilateral, flat snap, and hue snap filters"
},
{
"author": "jkmq-f",
"title": "comfyui-gemma4translate-gguf",
"reference": "https://github.com/jkmq-f/ComfyUI-Gemma4Translate-GGUF-Mini",
"files": [
"https://github.com/jkmq-f/ComfyUI-Gemma4Translate-GGUF-Mini"
],
"install_type": "git-clone",
"description": "ComfyUI custom node for local GGUF-only translation with Gemma 4"
},
{
"author": "CRT",
"title": "CRT-HeartMuLa",
"id": "crt-heartmula",
"reference": "https://github.com/PGCRT/CRT-HeartMuLa",
"files": [
"https://github.com/PGCRT/CRT-HeartMuLa"
],
"install_type": "git-clone",
"description": "A ComfyUI custom node for AI music generation using HeartMuLa models."
},
{
"author": "CRT",
"title": "ComfyUI-OmniVoice_CRT",
"id": "comfyui-omnivoice-crt",
"reference": "https://github.com/PGCRT/ComfyUI-OmniVoice_CRT",
"files": [
"https://github.com/PGCRT/ComfyUI-OmniVoice_CRT"
],
"install_type": "git-clone",
"description": "ComfyUI wrapper nodes for OmniVoice multilingual zero-shot TTS."
},
{
"author": "CRT",
"title": "ComfyUI-QWEN3_TTS",
"id": "comfyui-qwen3-tts",
"reference": "https://github.com/PGCRT/ComfyUI-QWEN3_TTS",
"files": [
"https://github.com/PGCRT/ComfyUI-QWEN3_TTS"
],
"install_type": "git-clone",
"description": "Fast and efficient Text-to-Speech nodes for ComfyUI based on Qwen3-TTS."
},
{
"author": "jeremieLouvaert",
"title": "ComfyUI-Darkroom",
"reference": "https://github.com/jeremieLouvaert/ComfyUI-Darkroom",
"files": [
"https://github.com/jeremieLouvaert/ComfyUI-Darkroom"
],
"install_type": "git-clone",
"description": "Professional color grading and film emulation suite — 29 nodes: 161 film stocks with real Capture One curve data, Camera Raw tools, Resolve-level grading (LGG, Log Wheels, Hue vs Hue, Color Warper), lens optics with 102 real lens profiles. Zero API costs."
},
{
"author": "jeremieLouvaert",
"title": "ComfyUI-Gemini-Direct",
"reference": "https://github.com/jeremieLouvaert/ComfyUI-Gemini-Direct",
"files": [
"https://github.com/jeremieLouvaert/ComfyUI-Gemini-Direct"
],
"install_type": "git-clone",
"description": "Direct Google Gemini image generation for ComfyUI — use your own API key, bypass credits. Supports Gemini 2.0 Flash, 2.5 Flash, 2.5 Pro. Includes Prompt Studio and photographer style transfer."
},
{
"author": "jeremieLouvaert",
"title": "ComfyUI-API-Optimizer",
"reference": "https://github.com/jeremieLouvaert/ComfyUI-API-Optimizer",
"files": [
"https://github.com/jeremieLouvaert/ComfyUI-API-Optimizer"
],
"install_type": "git-clone",
"description": "API cost tracking, deterministic caching, and lazy execution bypass for ComfyUI cloud API workflows. Circuit-breaker spending control with persistent ledger."
},
{
"author": "jeremieLouvaert",
"title": "ComfyUI-Gemini-Conversation-Canvas",
"reference": "https://github.com/jeremieLouvaert/ComfyUI-Gemini-Conversation-Canvas",
"files": [
"https://github.com/jeremieLouvaert/ComfyUI-Gemini-Conversation-Canvas"
],
"install_type": "git-clone",
"description": "Multi-turn conversational image editing powered by Google Gemini — persistent sessions, edit chaining, and visual gallery with full scene coherence across turns."
},
{
"author": "jeremieLouvaert",
"title": "comfyui-wireless-link-simple",
"reference": "https://github.com/jeremieLouvaert/comfyui-wireless-link-simple",
"files": [
"https://github.com/jeremieLouvaert/comfyui-wireless-link-simple"
],
"install_type": "git-clone",
"description": "Simple wireless data transmission nodes for ComfyUI — send and receive any data type without visible wires using named channels. Inspired by Blackmagic Fusion."
},
{
"author": "jeremieLouvaert",
"title": "ComfyUI-Higgsfield-Direct",
"reference": "https://github.com/jeremieLouvaert/ComfyUI-Higgsfield-Direct",
"files": [
"https://github.com/jeremieLouvaert/ComfyUI-Higgsfield-Direct"
],
"install_type": "git-clone",
"description": "Direct Higgsfield API integration for ComfyUI — multi-model image and video generation with Soul 2.0, Seedream 4, Kling 2.1, Seedance, and more. Use your own API key."
},
{
"author": "Atsushi888",
"title": "ComfyUI-MediaPreview",
"id": "comfyui-mediapreview",
"reference": "https://github.com/Atsushi888/ComfyUI-MediaPreview",
"files": [
"https://github.com/Atsushi888/ComfyUI-MediaPreview"
],
"install_type": "git",
"description": "All-in-one media preview node for ComfyUI."
},
{
"author": "kplkasteel",
"title": "Image to Prompt (Abacus.AI)",
"id": "comfyui-image-to-prompt-abacusai",
"reference": "https://github.com/kplkasteel/ComfyUI-Image-to-Prompt-Abacus.AI-",
"files": [
"https://github.com/kplkasteel/ComfyUI-Image-to-Prompt-Abacus.AI-"
],
"install_type": "git-clone",
"description": "ComfyUI custom node that converts an input image into a Stable Diffusion-ready prompt using Abacus.AI’s OpenAI-compatible multimodal API (model dropdown fetched from /v1/models; supports route-llm and other available models). Requires an Abacus.AI API key and consumes API credits.",
"tags": [
"prompt",
"image-to-prompt",
"vision",
"multimodal",
"captioning",
"stable-diffusion",
"abacus-ai",
"api"
],
"pip": [
"openai",
"requests",
"pillow",
"numpy"
]
},
{
"author": "judian17",
"title": "ComfyUI-PixelSmile-Conditioning-Interpolation",
"reference": "https://github.com/judian17/ComfyUI-PixelSmile-Conditioning-Interpolation",
"files": [
"https://github.com/judian17/ComfyUI-PixelSmile-Conditioning-Interpolation"
],
"install_type": "git-clone",
"description": "An unofficial implementation of PixelSmile workflow in ComfyUI that enables fine-grained expression editing using natural language prompts."
},
{
"author": "rTachibana",
"title": "Promptcraft",
"reference": "https://github.com/rTachibana/comfyui-promptcraft",
"files": [
"https://github.com/rTachibana/comfyui-promptcraft"
],
"install_type": "git-clone",
"description": "Dynamic prompt generation with {A|B} variants, __wildcard__ files, and ${var} variables"
},
{
"author": "katsut",
"title": "comfyui-alphavae",
"reference": "https://github.com/katsut/ComfyUI-AlphaVAE",
"files": [
"https://github.com/katsut/ComfyUI-AlphaVAE"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for AlphaVAE — native RGBA transparent image generation using FLUX"
},
{
"author": "kayfahaarukku",
"title": "ComfyUI-Adaptive-Noise-Scale",
"reference": "https://github.com/nawka12/comfyui-adaptive-noise-scale",
"files": [
"https://github.com/nawka12/comfyui-adaptive-noise-scale"
],
"install_type": "git-clone",
"description": "Adaptive Noise Scale sampler wrapper for ComfyUI — port of sd-webui-adaptive-noise-scale"
},
{
"author": "rTachibana",
"title": "Aspect Ratio Selector",
"reference": "https://github.com/rTachibana/comfyUI-aspect-ratio-selector",
"files": [
"https://github.com/rTachibana/comfyUI-aspect-ratio-selector"
],
"install_type": "git-clone",
"description": "Select aspect ratio and generate appropriately-sized empty latent for each model"
},
{
"author": "amortegui84",
"title": "ComfyUI-Inpaint-CropStitch-NB2",
"reference": "https://github.com/amortegui84/comfyui-inpaint-cropstitch-nb2",
"files": [
"https://github.com/amortegui84/comfyui-inpaint-cropstitch-nb2"
],
"install_type": "git-clone",
"description": "Fork of ComfyUI-Inpaint-CropAndStitch adapted for Nano Banana 2. Adds NB2 Mask Generator, exact-resolution cropping and feathered alpha compositing in the stitch step."
},
{
"author": "hqrz",
"title": "ComfyUI Japanese Romaji Converter",
"reference": "https://github.com/hirokazu/ComfyUI-JapaneseRomaji",
"files": [
"https://github.com/hirokazu/ComfyUI-JapaneseRomaji"
],
"install_type": "git-clone",
"description": "ComfyUI custom node to convert Japanese text in prompts to Hepburn romaji for LTX-2.3 speech generation"
},
{
"author": "cerridan",
"title": "comfyui-resolution-picker",
"reference": "https://github.com/cerridan/ComfyUI_ResolutionPicker",
"files": [
"https://github.com/cerridan/ComfyUI_ResolutionPicker"
],
"install_type": "git-clone",
"description": "ComfyUI node: pick format + resolution from organized dropdown, outputs width/height"
},
{
"author": "pxlpshr",
"title": "ComfyUI-SD-CN-Animation",
"reference": "https://github.com/pxl-pshr/ComfyUI-SD-CN-Animation",
"files": [
"https://github.com/pxl-pshr/ComfyUI-SD-CN-Animation"
],
"install_type": "git-clone",
"description": "Temporally coherent video generation and stylization for ComfyUI using optical flow. Port of SD-CN-Animation to ComfyUI custom nodes."
},
{
"author": "saganaki22",
"title": "LongCat AudioDiT TTS",
"reference": "https://github.com/Saganaki22/ComfyUI-LongCat-AudioDIT-TTS",
"files": [
"https://github.com/Saganaki22/ComfyUI-LongCat-AudioDIT-TTS"
],
"install_type": "git-clone",
"description": "ComfyUI custom nodes for LongCat-AudioDiT TTS - zero-shot and voice cloning diffusion TTS"
},
{
"author": "IMGLAB",
"title": "IMGLAB_ComfyUI",
"reference": "https://github.com/IMGLAB-net/IMGLAB_ComfyUI",
"files": [
"https://github.com/IMGLAB-net/IMGLAB_ComfyUI"
],
"install_type": "git-clone",
"description": "IMGLAB custom nodes for ComfyUI"
},
{
"author": "sorryhyun",
"title": "Flex Attention",
"reference": "https://github.com/sorryhyun/comfyui-flex-attention",
"files": [
"https://github.com/sorryhyun/comfyui-flex-attention"
],
"install_type": "git-clone",
"description": "Flex Attention (torch.compile) node for ComfyUI. Uses PyTorch's built-in flex_attention with torch.compile — no extra dependencies, works on any GPU. Falls back to PyTorch SDPA when masks are present."
},
{
"author": "spacewarpstudio",
"title": "ComfyUI Override Switch",
"reference": "https://github.com/SpaceWarpStudio/ComfyUI-OverrideSwitch",
"files": [
"https://github.com/SpaceWarpStudio/ComfyUI-OverrideSwitch"
],
"install_type": "git-clone",
"description": "Custom ComfyUI node: switch between two inputs from an optional boolean condition, with graceful handling when inputs are missing."
},
{
"author": "mmmmmmmmm",
"title": "ComfyUI_MaskBatchMerger",
"reference": "https://github.com/mmmmmmmmme/ComfyUI_MaskBatchMerger",
"files": [
"https://github.com/mmmmmmmmme/ComfyUI_MaskBatchMerger"
],
"install_type": "git-clone",
"description": "A mask merge/edit node that merges masks from a mask batch into one mask as output for future use, using add mode."
},
{
"author": "lil0k",
"title": "Camera Movement to Prompt",
"reference": "https://github.com/Lil0k/comfyui_camera_movement_to_prompt",
"files": [
"https://github.com/Lil0k/comfyui_camera_movement_to_prompt"
],
"install_type": "git-clone",
"description": "ComfyUI node that computes relative camera movement between two extrinsics matrices and injects it into a prompt template as JSON."
},
{
"author": "sparknight",
"title": "ComfyUI-INT8-Fast-Fork",
"reference": "https://github.com/SparknightLLC/ComfyUI-INT8-Fast-Fork",
"files": [
"https://github.com/SparknightLLC/ComfyUI-INT8-Fast-Fork"
],
"install_type": "git-clone",
"description": "Fork of node to load models in INT8 for 1.5~2X Speed gains on 30 series cards. Contains additional fixes and performance improvements."
},
{
"author": "love530love",
"title": "ComfyUI HealthCheck",
"reference": "https://github.com/love530love/ComfyUI-HealthCheck",
"files": [
"https://github.com/love530love/ComfyUI-HealthCheck"
],
"install_type": "git-clone",
"description": "A lightweight health check plugin for ComfyUI that monitors custom node import status and provides colorful summary reports"
},
{
"author": "nekodificador",
"title": "NKD Popup Preview",
"reference": "https://github.com/Nekodificador/ComfyUI-NKD-Popup-Preview",
"files": [
"https://github.com/Nekodificador/ComfyUI-NKD-Popup-Preview"
],
"install_type": "git-clone",
"description": "A floating preview window node for ComfyUI. Ideal for multi-monitor setups."
},
{
"author": "nekodificador",
"title": "ComfyUI-MaskToTransparent",
"reference": "https://github.com/Warningning/ComfyUI-MaskToTransparent",
"files": [
"https://github.com/Warningning/ComfyUI-MaskToTransparent"
],
"install_type": "git-clone",
"description": "Turn black mask areas into transparent pixels with edge feathering, ideal for SAM object extraction.",
"tags": ["mask", "transparent", "alpha", "image", "matting"]
},
{
"author": "darksidewalker",
"description": "DaSiWa Custom Nodes Collection",
"id": "dasiwa",
"install_type": "git-clone",
"reference": "https://github.com/darksidewalker/ComfyUI-DaSiWa-Nodes",
"files": [
"https://github.com/darksidewalker/ComfyUI-DaSiWa-Nodes"
],
"title": "ComfyUI-DaSiWa-Nodes"
}
]
}
|