diff --git a/comfyui_manager/glob/manager_core.py b/comfyui_manager/glob/manager_core.py index 6efcbf23..3d8e3d57 100644 --- a/comfyui_manager/glob/manager_core.py +++ b/comfyui_manager/glob/manager_core.py @@ -304,32 +304,72 @@ class ManagedResult: return self -class NormalizedKeyDict(dict): +class NormalizedKeyDict: + def __init__(self): + self._store = {} + self._key_map = {} + def _normalize_key(self, key): if isinstance(key, str): return key.strip().lower() return key def __setitem__(self, key, value): - super().__setitem__(self._normalize_key(key), value) + norm_key = self._normalize_key(key) + self._key_map[norm_key] = key + self._store[key] = value def __getitem__(self, key): - return super().__getitem__(self._normalize_key(key)) + norm_key = self._normalize_key(key) + original_key = self._key_map[norm_key] + return self._store[original_key] def __delitem__(self, key): - return super().__delitem__(self._normalize_key(key)) + norm_key = self._normalize_key(key) + original_key = self._key_map.pop(norm_key) + del self._store[original_key] def __contains__(self, key): - return super().__contains__(self._normalize_key(key)) + return self._normalize_key(key) in self._key_map def get(self, key, default=None): - return super().get(self._normalize_key(key), default) + return self[key] if key in self else default def setdefault(self, key, default=None): - return super().setdefault(self._normalize_key(key), default) + if key in self: + return self[key] + self[key] = default + return default def pop(self, key, default=None): - return super().pop(self._normalize_key(key), default) + if key in self: + val = self[key] + del self[key] + return val + if default is not None: + return default + raise KeyError(key) + + def keys(self): + return self._store.keys() + + def values(self): + return self._store.values() + + def items(self): + return self._store.items() + + def __iter__(self): + return iter(self._store) + + def __len__(self): + return len(self._store) + + def __repr__(self): + return repr(self._store) + + def to_dict(self): + return dict(self._store) class UnifiedManager: @@ -749,7 +789,7 @@ class UnifiedManager: channel = normalize_channel(channel) nodes = await self.load_nightly(channel, mode) - res = {} + res = NormalizedKeyDict() added_cnr = set() for v in nodes.values(): v = v[0] diff --git a/comfyui_manager/js/custom-nodes-manager.js b/comfyui_manager/js/custom-nodes-manager.js index 63c5a9c6..b82e2d69 100644 --- a/comfyui_manager/js/custom-nodes-manager.js +++ b/comfyui_manager/js/custom-nodes-manager.js @@ -714,6 +714,7 @@ export class CustomNodesManager { link.href = rowItem.reference; link.target = '_blank'; link.innerHTML = `${title}`; + link.title = rowItem.originalData.id; container.appendChild(link); return container; diff --git a/comfyui_manager/legacy/manager_core.py b/comfyui_manager/legacy/manager_core.py index 71653eab..7d2c5a03 100644 --- a/comfyui_manager/legacy/manager_core.py +++ b/comfyui_manager/legacy/manager_core.py @@ -304,18 +304,86 @@ class ManagedResult: return self +class NormalizedKeyDict: + def __init__(self): + self._store = {} + self._key_map = {} + + def _normalize_key(self, key): + if isinstance(key, str): + return key.strip().lower() + return key + + def __setitem__(self, key, value): + norm_key = self._normalize_key(key) + self._key_map[norm_key] = key + self._store[key] = value + + def __getitem__(self, key): + norm_key = self._normalize_key(key) + original_key = self._key_map[norm_key] + return self._store[original_key] + + def __delitem__(self, key): + norm_key = self._normalize_key(key) + original_key = self._key_map.pop(norm_key) + del self._store[original_key] + + def __contains__(self, key): + return self._normalize_key(key) in self._key_map + + def get(self, key, default=None): + return self[key] if key in self else default + + def setdefault(self, key, default=None): + if key in self: + return self[key] + self[key] = default + return default + + def pop(self, key, default=None): + if key in self: + val = self[key] + del self[key] + return val + if default is not None: + return default + raise KeyError(key) + + def keys(self): + return self._store.keys() + + def values(self): + return self._store.values() + + def items(self): + return self._store.items() + + def __iter__(self): + return iter(self._store) + + def __len__(self): + return len(self._store) + + def __repr__(self): + return repr(self._store) + + def to_dict(self): + return dict(self._store) + + class UnifiedManager: def __init__(self): self.installed_node_packages: dict[str, InstalledNodePackage] = {} - self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath - self.nightly_inactive_nodes = {} # node_id -> fullpath - self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath - self.active_nodes = {} # node_id -> node_version * fullpath - self.unknown_active_nodes = {} # node_id -> repo url * fullpath - self.cnr_map = {} # node_id -> cnr info - self.repo_cnr_map = {} # repo_url -> cnr info - self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json + self.cnr_inactive_nodes = NormalizedKeyDict() # node_id -> node_version -> fullpath + self.nightly_inactive_nodes = NormalizedKeyDict() # node_id -> fullpath + self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath + self.active_nodes = NormalizedKeyDict() # node_id -> node_version * fullpath + self.unknown_active_nodes = {} # node_id -> repo url * fullpath + self.cnr_map = NormalizedKeyDict() # node_id -> cnr info + self.repo_cnr_map = {} # repo_url -> cnr info + self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json self.processed_install = set() def get_module_name(self, x): @@ -721,7 +789,7 @@ class UnifiedManager: channel = normalize_channel(channel) nodes = await self.load_nightly(channel, mode) - res = {} + res = NormalizedKeyDict() added_cnr = set() for v in nodes.values(): v = v[0] @@ -2776,7 +2844,7 @@ async def get_unified_total_nodes(channel, mode, regsitry_cache_mode='cache'): if cnr_id is not None: # cnr or nightly version - cnr_ids.remove(cnr_id) + cnr_ids.discard(cnr_id) updatable = False cnr = unified_manager.cnr_map[cnr_id] diff --git a/comfyui_manager/legacy/manager_server.py b/comfyui_manager/legacy/manager_server.py index 760d09b9..4f53c693 100644 --- a/comfyui_manager/legacy/manager_server.py +++ b/comfyui_manager/legacy/manager_server.py @@ -1063,7 +1063,7 @@ async def fetch_customnode_list(request): channel = found - result = dict(channel=channel, node_packs=node_packs) + result = dict(channel=channel, node_packs=node_packs.to_dict()) return web.json_response(result, content_type='application/json') diff --git a/custom-node-list.json b/custom-node-list.json index 5135bd4f..2374d468 100755 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -2741,6 +2741,16 @@ "install_type": "git-clone", "description": "Nodes: SamplerCustomNoise, SamplerCustomNoiseDuo, SamplerCustomModelMixtureDuo, SamplerRES_Momentumized, SamplerDPMPP_DualSDE_Momentumized, SamplerCLYB_4M_SDE_Momentumized, SamplerTTM, SamplerLCMCustom\nThis extension provides various custom samplers not offered by the default nodes in ComfyUI." }, + { + "author": "Clybius", + "title": "ComfyUI-ClybsChromaNodes", + "reference": "https://github.com/Clybius/ComfyUI-ClybsChromaNodes", + "files": [ + "https://github.com/Clybius/ComfyUI-ClybsChromaNodes" + ], + "install_type": "git-clone", + "description": "A small collection of nodes intended for use with Lodestone Rock's Chroma model, for ComfyUI." + }, { "author": "mcmonkeyprojects", "title": "Dynamic Thresholding", @@ -3694,6 +3704,7 @@ "author": "shadowcz007", "title": "comfyui-try-on", "reference": "https://github.com/shadowcz007/comfyui-try-on", + "reference2": "https://github.com/MixLabPro/comfyui-try-on", "files": [ "https://github.com/shadowcz007/comfyui-try-on" ], @@ -5219,17 +5230,6 @@ "install_type": "git-clone", "description": "Unofficial implementation of siliconflow API for ComfyUI\nHow to use:apply api key in :https://cloud.siliconflow.cn/\nadd api key in config.json" }, - { - "author": "SpaceKendo", - "title": "Text to video for Stable Video Diffusion in ComfyUI", - "id": "svd-txt2vid", - "reference": "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid", - "files": [ - "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid" - ], - "install_type": "git-clone", - "description": "This is node replaces the init_image conditioning for the [a/Stable Video Diffusion](https://github.com/Stability-AI/generative-models) image to video model with text embeds, together with a conditioning frame. The conditioning frame is a set of latents." - }, { "author": "NimaNzrii", "title": "comfyui-popup_preview", @@ -9125,6 +9125,16 @@ "install_type": "git-clone", "description": "Enjoy the latest GEMINI V2 API for ComfyUI - generate images, analyze content, and use multimodal capabilities with Google's Gemini models" }, + { + "author": "impactframes", + "title": "ComfyUI-WanResolutionSelector", + "reference": "https://github.com/if-ai/ComfyUI-WanResolutionSelector", + "files": [ + "https://github.com/if-ai/ComfyUI-WanResolutionSelector" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node that automatically selects appropriate video resolution dimensions based on generation mode, aspect ratio, and quality settings. Designed to work seamlessly with video generation models and KJNodes image resize nodes." + }, { "author": "dmMaze", "title": "Sketch2Manga", @@ -10954,6 +10964,26 @@ "install_type": "git-clone", "description": "HunyuanVideo-Avatar: High-Fidelity Audio-Driven Human Animation for Multiple Characters,try it in comfyUI ,if your VRAM >24G." }, + { + "author": "smthemex", + "title": "ComfyUI_PartPacker", + "reference": "https://github.com/smthemex/ComfyUI_PartPacker", + "files": [ + "https://github.com/smthemex/ComfyUI_PartPacker" + ], + "install_type": "git-clone", + "description": "This is the comfyui implementation of [a/PartPacker](https://github.com/NVlabs/PartPacker): Efficient Part-level 3D Object Generation via Dual Volume Packing.Max varm12G" + }, + { + "author": "smthemex", + "title": "ComfyUI_SongGeneration", + "reference": "https://github.com/smthemex/ComfyUI_SongGeneration", + "files": [ + "https://github.com/smthemex/ComfyUI_SongGeneration" + ], + "install_type": "git-clone", + "description": "[a/SongGeneration](https://github.com/tencent-ailab/SongGeneration):High-Quality Song Generation with Multi-Preference Alignment (SOTA),you can try VRAM>12G" + }, { "author": "choey", "title": "Comfy-Topaz", @@ -11221,6 +11251,16 @@ "install_type": "git-clone", "description": "Nodes for calling LLMs, enabled by LiteLLM" }, + { + "author": "TashaSkyUp", + "title": "EternalKernel PyTorch Nodes", + "reference": "https://github.com/TashaSkyUp/EternalKernelPytorchNodes", + "files": [ + "https://github.com/TashaSkyUp/EternalKernelPytorchNodes" + ], + "install_type": "git-clone", + "description": "Comprehensive PyTorch nodes for ComfyUI - Neural network training, inference, and ML workflows" + }, { "author": "AonekoSS", "title": "ComfyUI-SimpleCounter", @@ -14623,47 +14663,6 @@ "install_type": "git-clone", "description": "A ComfyUI custom node package based on the BAGEL-7B-MoT multimodal model." }, - { - "author": "DriftJohnson", - "title": "DJZ-Nodes", - "id": "DJZ-Nodes", - "reference": "https://github.com/MushroomFleet/DJZ-Nodes", - "files": [ - "https://github.com/MushroomFleet/DJZ-Nodes" - ], - "install_type": "git-clone", - "description": "AspectSize and other nodes" - }, - { - "author": "DriftJohnson", - "title": "KokoroTTS Node", - "reference": "https://github.com/MushroomFleet/DJZ-KokoroTTS", - "files": [ - "https://github.com/MushroomFleet/DJZ-KokoroTTS" - ], - "install_type": "git-clone", - "description": "This node provides advanced text-to-speech functionality powered by KokoroTTS. Follow the instructions below to install, configure, and use the node within your portable ComfyUI installation." - }, - { - "author": "MushroomFleet", - "title": "DJZ-Pedalboard", - "reference": "https://github.com/MushroomFleet/DJZ-Pedalboard", - "files": [ - "https://github.com/MushroomFleet/DJZ-Pedalboard" - ], - "install_type": "git-clone", - "description": "This project provides a collection of custom nodes designed for enhanced audio effects in ComfyUI. With an intuitive pedalboard interface, users can easily integrate and manipulate various audio effects within their workflows." - }, - { - "author": "MushroomFleet", - "title": "SVG Suite for ComfyUI", - "reference": "https://github.com/MushroomFleet/svg-suite", - "files": [ - "https://github.com/MushroomFleet/svg-suite" - ], - "install_type": "git-clone", - "description": "SVG Suite is an advanced set of nodes for converting images to SVG in ComfyUI, expanding upon the functionality of ComfyUI-ToSVG." - }, { "author": "var1ableX", "title": "ComfyUI_Accessories", @@ -14867,6 +14866,16 @@ "install_type": "git-clone", "description": "Implementation of X-Portrait nodes for ComfyUI, animate portraits with an input video and a reference image." }, + { + "author": "akatz-ai", + "title": "ComfyUI-Basic-Math", + "reference": "https://github.com/akatz-ai/ComfyUI-Basic-Math", + "files": [ + "https://github.com/akatz-ai/ComfyUI-Basic-Math" + ], + "install_type": "git-clone", + "description": "Custom nodes for performing basic math operations" + }, { "author": "teward", "title": "Comfy-Sentry", @@ -16379,6 +16388,16 @@ "install_type": "git-clone", "description": "Huggingface Api Serverless request" }, + { + "author": "Alex Genovese", + "title": "ComfyUI UNO Nodes", + "reference": "https://github.com/alexgenovese/ComfyUI-UNO-Flux", + "files": [ + "https://github.com/alexgenovese/ComfyUI-UNO-Flux" + ], + "install_type": "git-clone", + "description": "ComfyUI UNO Nodes is a collection of nodes for ComfyUI that allows you to load and use UNO models." + }, { "author": "freelifehacker", "title": "ComfyUI-ImgMask2PNG", @@ -16453,6 +16472,16 @@ "install_type": "git-clone", "description": "This is a custom node to add timestep for FreeU V2." }, + { + "author": "Shiba-2-shiba", + "title": "ComfyUI-Magcache-for-SDXL", + "reference": "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL", + "files": [ + "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL" + ], + "install_type": "git-clone", + "description": "An experimental implementation of MagCache for SDXL" + }, { "author": "Bao Pham", "title": "ComfyUI-LyraVSIH", @@ -16941,6 +16970,7 @@ "title": "Image to Painting and Inspyrenet Assistant Nodes", "id": "ComfyUI-Img2PaintingAssistant", "reference": "https://github.com/Isi-dev/ComfyUI-Img2PaintingAssistant", + "reference2": "https://github.com/Isi-dev/ComfyUI_Img2PaintingAssistant", "files": [ "https://github.com/Isi-dev/ComfyUI-Img2PaintingAssistant" ], @@ -17360,13 +17390,12 @@ { "author": "ez-af", "title": "ComfyUI-EZ-AF-Nodes", - "id": "ez-af", "reference": "https://github.com/ez-af/ComfyUI-EZ-AF-Nodes", "files": [ "https://github.com/ez-af/ComfyUI-EZ-AF-Nodes" ], "install_type": "git-clone", - "description": "This pack helps to conveniently control text in complex prompt-builder type workflows. Load/Read Prompts from .CSV; Concatenate large amounts of text; Use string input as ANY type. Requires pythongosssss custom scripts" + "description": "Conveniently control parts of text prompts with custom UI. Pack includes loaders from txt and csv files, dynamic text concatenation tool and easy-to-use input node" }, { "author": "danbochman", @@ -17862,6 +17891,17 @@ "install_type": "git-clone", "description": "TTS with emotional speech capabilities in 8 Languages 24 speakers." }, + { + "author": "NumZ", + "title": "ComfyUI-SeedVR2_VideoUpscaler", + "id": "SeedVR2_VideoUpscaler", + "reference": "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler", + "files": [ + "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler" + ], + "install_type": "git-clone", + "description": "Welcome to the ComfyUI-SeedVR2 Video Upscaler repository! This project offers a non-official video upscaling tool designed specifically for ComfyUI. With this tool, you can enhance your video quality, making your visual content more engaging and clearer." + }, { "author": "SozeInc", "title": "Quality of Life Nodes for ComfyUI", @@ -19146,16 +19186,6 @@ "install_type": "git-clone", "description": "A collection of image processing extension nodes for ComfyUI." }, - { - "author": "yichengup", - "title": "ComfyUI-VideoBlender", - "reference": "https://github.com/yichengup/ComfyUI-VideoBlender", - "files": [ - "https://github.com/yichengup/ComfyUI-VideoBlender" - ], - "install_type": "git-clone", - "description": "Video clip mixing" - }, { "author": "yichengup", "title": "comfyui-face-liquify", @@ -19789,6 +19819,16 @@ "install_type": "git-clone", "description": "ComfyUI-Hunyuan3D-2.1 is now available in ComfyUI, Hunyuan3D-2.1 is a scalable 3D asset creation system that advances state-of-the-art 3D generation through two pivotal innovations: Fully Open-Source Framework and Physically-Based Rendering (PBR) Texture Synthesis." }, + { + "author": "Yuan-ManX", + "title": "ComfyUI-OmniGen2", + "reference": "https://github.com/Yuan-ManX/ComfyUI-OmniGen2", + "files": [ + "https://github.com/Yuan-ManX/ComfyUI-OmniGen2" + ], + "install_type": "git-clone", + "description": "ComfyUI-OmniGen2 is now available in ComfyUI, OmniGen2 is a powerful and efficient unified multimodal model. Its architecture is composed of two key components: a 3B Vision-Language Model (VLM) and a 4B diffusion model." + }, { "author": "Starnodes2024", "title": "ComfyUI_StarNodes", @@ -21225,6 +21265,16 @@ "install_type": "git-clone", "description": "This is a ComfyUI implementation of the timestep shift technique used in [a/NitroFusion: High-Fidelity Single-Step Diffusion through Dynamic Adversarial Training.](https://arxiv.org/abs/2412.02030)\nFor more details, visit the official [a/NitroFusion GitHub repository](https://github.com/ChenDarYen/NitroFusion)." }, + { + "author": "ChenDarYen", + "title": "ComfyUI-NAG", + "reference": "https://github.com/ChenDarYen/ComfyUI-NAG", + "files": [ + "https://github.com/ChenDarYen/ComfyUI-NAG" + ], + "install_type": "git-clone", + "description": "ComfyUI implemtation for NAG" + }, { "author": "facok", "title": "ComfyUI-HunyuanVideoMultiLora", @@ -22280,6 +22330,7 @@ "author": "oxysoft", "title": "ComfyUI-gowiththeflow", "reference": "https://github.com/oxysoft/ComfyUI-gowiththeflow-loopback", + "reference2": "https://github.com/oxysoft/ComfyUI-gowiththeflow", "files": [ "https://github.com/oxysoft/ComfyUI-gowiththeflow" ], @@ -22306,16 +22357,6 @@ "install_type": "git-clone", "description": "ComfyUI nodes for LLM Structured Outputs with integration for prompting" }, - { - "author": "Conor-Collins", - "title": "ComfyUI-CoCoTools", - "reference": "https://github.com/Conor-Collins/coco_tools", - "files": [ - "https://github.com/Conor-Collins/coco_tools" - ], - "install_type": "git-clone", - "description": "A set of custom nodes for ComfyUI providing advanced image processing, file handling, and utility functions." - }, { "author": "Conor-Collins", "title": "ComfyUI-CoCoTools_IO", @@ -22847,6 +22888,16 @@ "install_type": "git-clone", "description": "A ComfyUI custom node implementation of EdgeTAM (On-Device Track Anything Model) for efficient, interactive video object tracking." }, + { + "author": "lum3on", + "title": "ComfyUI-AudioX", + "reference": "https://github.com/lum3on/ComfyUI-StableAudioX", + "files": [ + "https://github.com/lum3on/ComfyUI-StableAudioX" + ], + "install_type": "git-clone", + "description": "A powerful audio generation extension for ComfyUI that integrates AudioX models for high-quality audio synthesis from text and video inputs." + }, { "author": "austinbrown34", "title": "ComfyUI-IO-Helpers", @@ -23176,7 +23227,7 @@ { "author": "crave33", "title": "RenesStuffDanboruTagGet", - "reference": "https://github.com/crave33/RenesStuffDanbooruTagGet", + "reference": "https://github.com/crave33/RenesStuffDanbooruTagGet", "files": [ "https://github.com/crave33/RenesStuffDanbooruTagGet" ], @@ -23333,7 +23384,7 @@ "https://github.com/PanicTitan/ComfyUI-Gallery" ], "install_type": "git-clone", - "description": "Real-time Output Gallery for ComfyUI with image metadata inspection." + "description": "Real-time Gallery for ComfyUI with image metadata inspection. Support for images and video." }, { "author": "maximclouser", @@ -24349,16 +24400,6 @@ "install_type": "git-clone", "description": "Custom text tools for helping with multiple prompt generation in ComfyUI. These tools allow more variety than just relying on the randomness of the image generator. You can create related, themed prompts, random each time." }, - { - "author": "joeriben", - "title": "AI4ArtsEd Ollama Prompt Node", - "reference": "https://github.com/joeriben/ai4artsed_comfyui", - "files": [ - "https://github.com/joeriben/ai4artsed_comfyui" - ], - "install_type": "git-clone", - "description": "Experimental nodes for ComfyUI. For more, see [a/https://kubi-meta.de/ai4artsed](https://kubi-meta.de/ai4artsed) A custom ComfyUI node for stylistic and cultural transformation of input text using local LLMs served via Ollama. This node allows you to combine a free-form prompt (e.g. translation, poetic recoding, genre shift) with externally supplied text in the ComfyUI graph. The result is processed via an Ollama-hosted model and returned as plain text." - }, { "author": "dimtion", "title": "ComfyUI-Raw-Image", @@ -24439,6 +24480,16 @@ "install_type": "git-clone", "description": "Nodes for ComfyUI that extend the core functionality without adding extra dependencies." }, + { + "author": "rookiepsi", + "title": "Blur Mask", + "reference": "https://github.com/rookiepsi/comfypsi_blur_mask", + "files": [ + "https://github.com/rookiepsi/comfypsi_blur_mask" + ], + "install_type": "git-clone", + "description": "A custom node for ComfyUI that applies a Gaussian blur to a mask." + }, { "author": "younyokel", "title": "ComfyUI Prompt Formatter", @@ -24522,11 +24573,10 @@ }, { "author": "Michael Gold", - "title": "Hal.fun Hugging Face Model Downloader", - "id": "hal-dot-fun-model-downloader", - "reference": "https://github.com/michaelgold/ComfyUI-Hal-Dot-Fun-Model-Downloader", + "title": "ComfyUI-HF-Model-Downloader", + "reference": "https://github.com/michaelgold/ComfyUI-HF-Model-Downloader", "files": [ - "https://github.com/michaelgold/ComfyUI-Hal-Dot-Fun-Model-Downloader" + "https://github.com/michaelgold/ComfyUI-HF-Model-Downloader" ], "install_type": "git-clone", "description": "Easily download and install 2D to 3D and Flux models from Hugging Face." @@ -24744,6 +24794,16 @@ "install_type": "git-clone", "description": "A collection of ComfyUI custom nodes that integrate with MiniMax API services." }, + { + "author": "synthetai", + "title": "ComfyUI-JM-Volcengine-API", + "reference": "https://github.com/synthetai/ComfyUI-JM-Volcengine-API", + "files": [ + "https://github.com/synthetai/ComfyUI-JM-Volcengine-API" + ], + "install_type": "git-clone", + "description": "volcengine comfyui api" + }, { "author": "chou18194766xx", "title": "comfyui-EncryptSave", @@ -25345,7 +25405,7 @@ "description": "[a/A3D](https://github.com/n0neye/A3D) is an AI x 3D hybrid tool that allows you to compose 3D scenes and render them with AI. This integration allows you to send the color & depth images to ComfyUI. You can use it as a pose controller, or scene composer for your ComfyUI workflows." }, { - "author": "alessandroperilli", + "author": "perilli", "title": "apw_nodes", "reference": "https://github.com/alessandroperilli/apw_nodes", "files": [ @@ -25566,11 +25626,10 @@ }, { "author": "somesomebody", - "title": "comfyui-lorainfo-sidebar", - "id": "somesomebody-lorainfo-sidebar", - "reference": "https://github.com/somesomebody/comfyui-lorainfo-sidebar", + "title": "lorainfo-sidebar", + "reference": "https://github.com/somesomebody/lorainfo-sidebar", "files": [ - "https://github.com/somesomebody/comfyui-lorainfo-sidebar" + "https://github.com/somesomebody/lorainfo-sidebar" ], "install_type": "git-clone", "description": "Preview images of LoRA files and edit their associated JSON files." @@ -26481,6 +26540,18 @@ "install_type": "git-clone", "description": "A robust custom depth estimation node for ComfyUI using Depth-Anything models. It integrates depth estimation with configurable post-processing options including blur, median filtering, contrast enhancement, and gamma correction." }, + { + "author": "Limbicnation", + "title": "ComfyUI Face Detection Node", + "id": "comfyui-face-detection-node", + "reference": "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode", + "files": [ + "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node for face detection and cropping using OpenCV Haar cascades, with full ComfyUI v3 schema support and backward compatibility. Features adjustable detection threshold, minimum face size, padding, and multiple classifier options.", + "nodename_pattern": "FaceDetectionNode" + }, { "author": "Limbicnation", "title": "Transparency Background Remover", @@ -26602,6 +26673,16 @@ "install_type": "git-clone", "description": "ComfyUI-KikoTools provides carefully crafted, production-ready nodes grouped under the 'ComfyAssets' category. Each tool is designed with clean interfaces, comprehensive testing, and optimized performance for SDXL and FLUX workflows." }, + { + "author": "kiko9", + "title": "ComfyUI-KikoStats", + "reference": "https://github.com/ComfyAssets/ComfyUI-KikoStats", + "files": [ + "https://github.com/ComfyAssets/ComfyUI-KikoStats" + ], + "install_type": "git-clone", + "description": "Real-time monitoring and statistics for ComfyUI" + }, { "author": "TFL-TFL", "title": "ComfyUI_Text_Translation", @@ -26622,6 +26703,16 @@ "install_type": "git-clone", "description": "This custom node is a ComfyUI node for generating speech from text using the Gemini 2.5 Flash Preview TTS API." }, + { + "author": "Charonartist", + "title": "ComfyUI Auto LoRA", + "reference": "https://github.com/Charonartist/comfyui-auto-lora-v2", + "files": [ + "https://github.com/Charonartist/comfyui-auto-lora-v2" + ], + "install_type": "git-clone", + "description": "This is a ComfyUI custom node that automatically detects trigger words from text prompts and applies the corresponding LoRA models." + }, { "author": "ptmaster", "title": "ComfyUI-Load-Diffusion-Model-to-Muti-GPUs", @@ -26678,12 +26769,23 @@ "author": "coiichan", "title": "comfyui-every-person-seg-coii", "reference": "https://github.com/CoiiChan/comfyui-every-person-seg-coii", + "reference2": "https://github.com/CoiiChan/ComfyUI-Every-Person-Seg-CoiiNode", "files": [ "https://github.com/CoiiChan/comfyui-every-person-seg-coii" ], "install_type": "git-clone", "description": "A masking tool that provides the ability to break down the detailed contours of characters one by one for multi person use scenarios" }, + { + "author": "coiichan", + "title": "ComfyUI-FuncAsTexture-CoiiNode", + "reference": "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode", + "files": [ + "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode" + ], + "install_type": "git-clone", + "description": "This allows for mathematical operations on input images and precise manipulation of channels through NumPy formulas, making it suitable for ComfyUI users with programming experience." + }, { "author": "coulterj", "title": "ComfyUI SVG Visual Normalize & Margin Node", @@ -26804,6 +26906,16 @@ "install_type": "git-clone", "description": "This repository contains a set of custom nodes for ComfyUI that allow you to load, manipulate, extract information from, and preview PDF files directly within your workflows." }, + { + "author": "orion4d", + "title": "ComfyUI Illusion & Pattern Nodes", + "reference": "https://github.com/orion4d/illusion_node", + "files": [ + "https://github.com/orion4d/illusion_node" + ], + "install_type": "git-clone", + "description": "This repository contains a collection of custom nodes for ComfyUI, designed for generating various patterns, optical illusions, and performing related image manipulations. All nodes are categorized under 'illusion' in the ComfyUI menu." + }, { "author": "orion4d", "title": "ComfyUI_extract_imag", @@ -27231,26 +27343,6 @@ "install_type": "git-clone", "description": "Achieve seamless inpainting results without needing a specialized inpainting model." }, - { - "author": "vovler", - "title": "ComfyUI Civitai Helper Extension", - "reference": "https://github.com/vovler/comfyui-civitaihelper", - "files": [ - "https://github.com/vovler/comfyui-civitaihelper" - ], - "install_type": "git-clone", - "description": "ComfyUI extension for parsing Civitai PNG workflows and automatically downloading missing models" - }, - { - "author": "xl0", - "title": "latent-tools", - "reference": "https://github.com/xl0/latent-tools", - "files": [ - "https://github.com/xl0/latent-tools" - ], - "install_type": "git-clone", - "description": "Visualize and manipulate the latent space in ComfyUI" - }, { "author": "chaunceyyann", "title": "ComfyUI Image Processing Nodes", @@ -27291,6 +27383,16 @@ "install_type": "git-clone", "description": "The Olm LUT is a custom node for ComfyUI that allows you to apply .cube LUT (Look-Up Table) files to images within your generative workflows. It supports creative workflows including film emulation, color grading, and aesthetic stylization using LUTs." }, + { + "author": "o-l-l-i", + "title": "Olm Curve Editor for ComfyUI", + "reference": "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor", + "files": [ + "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor" + ], + "install_type": "git-clone", + "description": "A single-purpose, multi-channel curve editor for ComfyUI, providing precise color control over R, G, B, and Luma channels directly within the node graph. It’s a focused, lightweight, and standalone solution built specifically for one task: applying color curves cleanly and efficiently." + }, { "author": "xiaogui8dangjia", "title": "Comfyui-imagetoSTL", @@ -27425,14 +27527,34 @@ }, { "author": "fredconex", - "title": "ComfyUI_SoundFlow", - "reference": "https://github.com/fredconex/ComfyUI_SoundFlow", + "title": "ComfyUI-SoundFlow", + "reference": "https://github.com/fredconex/ComfyUI-SoundFlow", "files": [ - "https://github.com/fredconex/ComfyUI_SoundFlow" + "https://github.com/fredconex/ComfyUI-SoundFlow" ], "install_type": "git-clone", "description": "This is a bunch of nodes for ComfyUI to help with sound work." }, + { + "author": "fredconex", + "title": "Sync Edit", + "reference": "https://github.com/fredconex/ComfyUI-SyncEdit", + "files": [ + "https://github.com/fredconex/ComfyUI-SyncEdit" + ], + "install_type": "git-clone", + "description": "This node allow to intercept changes on the input string and choose between use the current one or sync with incoming new one." + }, + { + "author": "fredconex", + "title": "SongBloom", + "reference": "https://github.com/fredconex/ComfyUI-SongBloom", + "files": [ + "https://github.com/fredconex/ComfyUI-SongBloom" + ], + "install_type": "git-clone", + "description": "ComfyUI Nodes for SongBloom" + }, { "author": "A043-studios", "title": "Pixel3DMM ComfyUI Nodes", @@ -27595,17 +27717,6 @@ "install_type": "git-clone", "description": "A collection of custom nodes designed for ComfyUI from the AJO-reading organization. This repository currently includes the Audio Collect & Concat node, which collects multiple audio segments and concatenates them into a single audio stream." }, - { - "author": "flamacore", - "title": "ComfyUI YouTube Uploader", - "id": "comfyui-youtubeuploader", - "reference": "https://github.com/flamacore/ComfyUI-YouTubeUploader", - "files": [ - "https://github.com/flamacore/ComfyUI-YouTubeUploader" - ], - "install_type": "git-clone", - "description": "A ComfyUI node for uploading generated content to YouTube. [a/Buy me a coffee](https://buymeacoffee.com/chao.k)" - }, { "author": "neocrz", "title": "comfyui-usetaesd", @@ -27636,6 +27747,26 @@ "install_type": "git-clone", "description": "A ComfyUI custom node package for seamless integration with Threads (Meta's social platform). This package allows you to publish posts, manage images, and retrieve post history directly from your ComfyUI workflows." }, + { + "author": "dseditor", + "title": "ComfyUI-ScheduledTask", + "reference": "https://github.com/dseditor/ComfyUI-ScheduledTask", + "files": [ + "https://github.com/dseditor/ComfyUI-ScheduledTask" + ], + "install_type": "git-clone", + "description": "A powerful workflow scheduling extension for ComfyUI that enables automated daily execution of workflows with an intuitive web interface." + }, + { + "author": "dseditor", + "title": "ComfyUI-ListHelper", + "reference": "https://github.com/dseditor/ComfyUI-ListHelper", + "files": [ + "https://github.com/dseditor/ComfyUI-ListHelper" + ], + "install_type": "git-clone", + "description": "The ListHelper collection is a comprehensive set of custom nodes for ComfyUI that provides powerful list manipulation capabilities. This collection includes audio processing, text splitting, and number generation tools for enhanced workflow automation." + }, { "author": "Leon", "title": "Leon's Utility and API Integration Nodes", @@ -27670,6 +27801,319 @@ "midjourney" ] }, + { + "author": "jurdnf", + "title": "ComfyUI-JurdnsModelSculptor", + "reference": "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor", + "files": [ + "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor" + ], + "install_type": "git-clone", + "description": "A collection of ComfyUI nodes that sculpt diffusion models by applying gradient-based modifications to different layers and blocks." + }, + { + "author": "jurdnf", + "title": "ComfyUI-JurdnsIterativeNoiseKsampler", + "reference": "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler", + "files": [ + "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node that adds controlled noise injection during the sampling process for enhanced image generation quality and detail." + }, + { + "author": "DrStone71", + "title": "ComfyUI-Prompt-Translator", + "reference": "https://github.com/DrStone71/ComfyUI-Prompt-Translator", + "files": [ + "https://github.com/DrStone71/ComfyUI-Prompt-Translator" + ], + "install_type": "git-clone", + "description": "This custom node for ComfyUI allows you to translate your prompt directly into the language used by your LLM" + }, + { + "author": "Phospholipids", + "title": "PPWildCard", + "reference": "https://github.com/kohs100/comfyui-ppwc", + "files": [ + "https://github.com/kohs100/comfyui-ppwc" + ], + "install_type": "git-clone", + "description": "This extension offers wildcard prompting works solely in workflow." + }, + { + "author": "linjian-ufo", + "title": "DeepSeek Chat Node for ComfyUI", + "reference": "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update", + "files": [ + "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update" + ], + "install_type": "git-clone", + "description": "This is a custom node for ComfyUI that calls the DeepSeek Chat API to process text input and return text output." + }, + { + "author": "jkhayiying", + "title": "ImageLoadFromLocalOrUrl Node for ComfyUI", + "id": "JkhaImageLoaderPathOrUrl", + "reference": "https://gitee.com/yyh915/jkha-load-img", + "files": [ + "https://gitee.com/yyh915/jkha-load-img" + ], + "install_type": "git-clone", + "description": "This is a node to load an image from local path or url." + }, + { + "author": "jinchanz", + "title": "ComfyUI-ADIC", + "reference": "https://github.com/jinchanz/ComfyUI-ADIC", + "files": [ + "https://github.com/jinchanz/ComfyUI-ADIC" + ], + "install_type": "git-clone", + "description": "This is a set of custom nodes for calling an image translation API within ComfyUI." + }, + { + "author": "Lord Lethris", + "title": "ComfyUI-RPG-Characters", + "id": "rpg-characters", + "reference": "https://github.com/lord-lethris/ComfyUI-RPG-Characters", + "files": [ + "https://github.com/lord-lethris/ComfyUI-RPG-Characters" + ], + "install_type": "git-clone", + "description": "Stylized RPG character prompt generator for ComfyUI. Supports standard and Ollama-based prompts, works with SD, SDXL, Flux, and more." + }, + { + "author": "ialhabbal", + "title": "OcclusionMask", + "reference": "https://github.com/ialhabbal/OcclusionMask", + "files": [ + "https://github.com/ialhabbal/OcclusionMask" + ], + "install_type": "git-clone", + "description": "A powerful ComfyUI custom node for advanced face occlusion, segmentation, and masking, leveraging state-of-the-art face detection (insightface buffalo models) for robust and accurate results." + }, + { + "author": "kael558", + "title": "ComfyUI-GGUF-FantasyTalking", + "reference": "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking", + "files": [ + "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking" + ], + "install_type": "git-clone", + "description": "GGUF Quantization support for native ComfyUI models with FantasyTalking." + }, + { + "author": "😈 CasterPollux", + "title": "MiniMax Video Object Remover Suite", + "reference": "https://github.com/casterpollux/MiniMax-bmo", + "files": [ + "https://github.com/casterpollux/MiniMax-bmo" + ], + "nodename_pattern": "MiniMax.*BMO|BMO.*MiniMax", + "pip": ["segment-anything"], + "tags": ["video", "inpainting", "object-removal", "suite", "professional", "BMO"], + "install_type": "git-clone", + "description": "Professional video object removal suite using MiniMax optimization. Includes BMO-enhanced nodes with VAE normalization, temporal preservation, and 6-step inference. Complete video inpainting solution for ComfyUI." + }, + { + "author": "drphero", + "title": "ComfyUI-PromptTester", + "reference": "https://github.com/drphero/comfyui_prompttester", + "files": [ + "https://github.com/drphero/comfyui_prompttester" + ], + "install_type": "git-clone", + "description": "Automatically tests the impact of each phrase in a prompt by generating images with one phrase omitted at a time." + }, + { + "author": "azazeal04", + "title": "anime_character_selector", + "reference": "https://github.com/azazeal04/Azazeal_Anime_Characters_ComfyUI", + "files": [ + "https://github.com/azazeal04/Azazeal_Anime_Characters_ComfyUI" + ], + "install_type": "git-clone", + "description": "character nodes for characters from various anime shows and comics" + }, + { + "author": "flamacore", + "title": "ComfyUI YouTube Uploader", + "id": "comfyui-youtubeuploader", + "reference": "https://github.com/flamacore/ComfyUI-YouTubeUploader", + "files": [ + "https://github.com/flamacore/ComfyUI-YouTubeUploader" + ], + "install_type": "git-clone", + "description": "A ComfyUI node for uploading generated content to YouTube. [a/Buy me a coffee](https://buymeacoffee.com/chao.k)" + }, + { + "author": "robin-collins", + "title": "ComfyUI-TechsToolz", + "reference": "https://github.com/robin-collins/ComfyUI-TechsToolz", + "files": [ + "https://github.com/robin-collins/ComfyUI-TechsToolz" + ], + "install_type": "git-clone", + "description": "A modular collection of ComfyUI custom nodes with advanced dependency management and ComfyUI Manager integration." + }, + { + "author": "highdoping", + "title": "ComfyUI-ASSSSA", + "reference": "https://github.com/HighDoping/ComfyUI_ASSSSA", + "files": [ + "https://github.com/HighDoping/ComfyUI_ASSSSA" + ], + "install_type": "git-clone", + "description": "Add ASS/SSA subtitle to video using ffmpeg." + }, + { + "author": "highdoping", + "title": "lama_with_refiner", + "reference": "https://github.com/fplu/comfyui_lama_with_refiner", + "files": [ + "https://github.com/fplu/comfyui_lama_with_refiner" + ], + "install_type": "git-clone", + "description": "Nodes for lama+refiner inpainting with ComfyUI." + }, + { + "author": "quasiblob", + "title": "ComfyUI-EsesImageAdjustments", + "reference": "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments", + "files": [ + "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments" + ], + "install_type": "git-clone", + "description": "Image Adjustments node for ComfyUI with minimal requirements, uses PyTorch for image manipulation operations." + }, + { + "author": "quasiblob", + "title": "ComfyUI-EsesCompositionGuides", + "reference": "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides", + "files": [ + "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides" + ], + "install_type": "git-clone", + "description": "Non-destructive visual image composition helper tool node for ComfyUI with minimal requirements, works with larger images too." + }, + { + "author": "TheLustriVA", + "title": "ComfyUI Image Size Tool", + "reference": "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tools", + "files": [ + "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tools" + ], + "install_type": "git-clone", + "description": "Resolution calculator nodes for ComfyUI with model-specific constraints and optimal bucket resolutions" + }, + { + "author": "834t", + "title": "Scene Composer for ComfyUI", + "reference": "https://github.com/834t/ComfyUI_834t_scene_composer", + "files": [ + "https://github.com/834t/ComfyUI_834t_scene_composer" + ], + "install_type": "git-clone", + "description": "An intuitive, all-in-one node for ComfyUI that brings a powerful, layer-based regional prompting workflow directly into your graph. Say goodbye to managing countless Conditioning (Set Area) nodes and hello to drawing your creative vision." + }, + { + "author": "Maxed-Out-99", + "title": "ComfyUI-MaxedOut", + "reference": "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut", + "files": [ + "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut" + ], + "install_type": "git-clone", + "description": "Custom ComfyUI nodes used in Maxed Out workflows (SDXL, Flux, etc.)" + }, + { + "author": "lucak5s", + "title": "ComfyUI GFPGAN", + "reference": "https://github.com/lucak5s/comfyui_gfpgan", + "files": [ + "https://github.com/lucak5s/comfyui_gfpgan" + ], + "install_type": "git-clone", + "description": "Face restoration with GFPGAN." + }, + { + "author": "joeriben", + "title": "AI4ArtsEd Nodes", + "reference": "https://github.com/joeriben/ai4artsed_comfyui_nodes", + "files": [ + "https://github.com/joeriben/ai4artsed_comfyui_nodes" + ], + "install_type": "git-clone", + "description": "ComfyUI nodes for the project AI for Arts Education" + }, + { + "author": "DebugPadawan", + "title": "DebugPadawan's ComfyUI Essentials", + "reference": "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials", + "files": [ + "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials" + ], + "install_type": "git-clone", + "description": "Essential custom nodes for ComfyUI workflows" + }, + { + "author": "aleolidev", + "title": "Kaizen Package", + "id": "kaizen_package", + "reference": "https://github.com/aleolidev/comfy_kaizen_package", + "files": [ + "https://github.com/aleolidev/comfy_kaizen_package" + ], + "install_type": "git-clone", + "description": "A collection of custom image processing nodes for ComfyUI" + }, + { + "author": "cmdicely", + "title": "Simple Image To Palette", + "reference": "https://github.com/cmdicely/simple_image_to_palette", + "files": [ + "https://github.com/cmdicely/simple_image_to_palette" + ], + "install_type": "git-clone", + "description": "Custom node to extract the colors in an image as a palette for use with ComfyUI-PixelArt-Detector" + }, + { + "author": "cmdicely", + "title": "GrsAI api in ComfyUI", + "reference": "https://github.com/31702160136/ComfyUI-GrsAI", + "files": [ + "https://github.com/31702160136/ComfyUI-GrsAI" + ], + "install_type": "git-clone", + "description": "GrsAI API node supports models: Flux-Pro-1.1 (¥ 0.03), Flux-Ultra-1.1 (¥ 0.04), Flux Kontext Pro (¥ 0.035), Flux Kontext Max (¥ 0.07), GPT Image (¥ 0.02). Support text generated images, image generated images, and multi image fusion." + }, + { + "author": "AKharytonchyk", + "title": "ComfyUI-telegram-bot-node", + "reference": "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node", + "files": [ + "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node" + ], + "install_type": "git-clone", + "description": "ComfyUI custom nodes for Telegram bot integration" + }, + { + "author": "leonardomiramondi", + "title": "Flux Context ComfyUI Node", + "reference": "https://github.com/leonardomiramondi/flux-context-comfyui", + "files": [ + "https://github.com/leonardomiramondi/flux-context-comfyui" + ], + "install_type": "git-clone", + "description": "ComfyUI node for Flux Context (Kontext) image editing" + }, + + + + + + diff --git a/extension-node-map.json b/extension-node-map.json index ab742ac6..d1a452f8 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -18,6 +18,14 @@ "title_aux": "mmaker/Color Enhance" } ], + "https://gitee.com/yyh915/jkha-load-img": [ + [ + "JkhaLoadImage" + ], + { + "title_aux": "ImageLoadFromLocalOrUrl Node for ComfyUI" + } + ], "https://github.com/0x-jerry/comfyui-rembg": [ [ "Load Rembg Model", @@ -289,29 +297,38 @@ ], "https://github.com/1hew/ComfyUI-1hewNodes": [ [ - "CoordinateExtract", "ImageAddLabel", - "ImageBBoxCrop", - "ImageBBoxPaste", + "ImageBatchToList", "ImageBlendModesByAlpha", "ImageBlendModesByCSS", + "ImageCropByMaskAlpha", "ImageCropEdge", "ImageCropSquare", - "ImageCropWithBBox", + "ImageCropWithBBoxMask", "ImageDetailHLFreqSeparation", "ImageEditStitch", + "ImageListAppend", + "ImageListToBatch", "ImageLumaMatte", + "ImagePasteByBBoxMask", "ImagePlot", "ImageResizeUniversal", "ImageSolid", "ImageTileMerge", "ImageTileSplit", - "MaskBBoxCrop", + "ListCustomFloat", + "ListCustomInt", + "ListCustomString", "MaskBatchMathOps", + "MaskBatchToList", + "MaskCropByBBoxMask", + "MaskListToBatch", "MaskMathOps", - "PathSelect", - "PromptExtract", - "SliderValueRangeMapping" + "PathBuild", + "RangeMapping", + "StringCoordinateToBBoxMask", + "StringCoordinateToBBoxes", + "TextCustomExtract" ], { "title_aux": "ComfyUI 1hewNodes" @@ -390,6 +407,18 @@ "title_aux": "ComfyUI MagicClip_Strength for SDXL" } ], + "https://github.com/31702160136/ComfyUI-GrsAI": [ + [ + "GPTImage_ImageToImage", + "GPTImage_TextToImage", + "GrsaiFluxKontext_ImageToImage", + "GrsaiFluxKontext_MultiImageToImage", + "GrsaiFluxKontext_TextToImage" + ], + { + "title_aux": "GrsAI api in ComfyUI" + } + ], "https://github.com/42lux/ComfyUI-42lux": [ [ "FluxEmptyLatentSizePicker", @@ -676,6 +705,14 @@ "title_aux": "ComfyUI-Static-Primitives" } ], + "https://github.com/834t/ComfyUI_834t_scene_composer": [ + [ + "B34tSceneComposerNode" + ], + { + "title_aux": "Scene Composer for ComfyUI" + } + ], "https://github.com/852wa/ComfyUI-AAP": [ [ "AdvancedAlphaProcessor" @@ -1399,6 +1436,26 @@ "title_aux": "ComfyUI-AjoNodes" } ], + "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node": [ + [ + "SaveToTelegram", + "TelegramListener", + "author", + "description", + "files", + "install_type", + "keywords", + "license", + "name", + "nodename_pattern", + "pip", + "reference", + "version" + ], + { + "title_aux": "ComfyUI-telegram-bot-node" + } + ], "https://github.com/ALatentPlace/ComfyUI_yanc": [ [ "> Bloom", @@ -3057,6 +3114,24 @@ "title_aux": "Comfyui_gemini_tts_node" } ], + "https://github.com/Charonartist/comfyui-auto-lora-v2": [ + [ + "AutoLoRANode", + "LoRABrowserNode", + "LoRAManagerNode" + ], + { + "title_aux": "ComfyUI Auto LoRA" + } + ], + "https://github.com/ChenDarYen/ComfyUI-NAG": [ + [ + "NAGCFGGuider" + ], + { + "title_aux": "ComfyUI-NAG" + } + ], "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel": [ [ "Timestep Shift Model" @@ -3188,6 +3263,7 @@ "LatentPhaseMagnitudeOffset", "LatentPhaseMagnitudePower", "LatentUpscaleWithVAE", + "LayerPatcher", "Linear Quadratic Advanced", "Mask Bounding Box Aspect Ratio", "Mask Sketch", @@ -3330,6 +3406,18 @@ "title_aux": "RES4LYF" } ], + "https://github.com/Clybius/ComfyUI-ClybsChromaNodes": [ + [ + "ChromaNAG", + "ClybGuidance", + "InverseSquaredScheduler", + "PrintSigmas", + "SamplerClyb_BDF" + ], + { + "title_aux": "ComfyUI-ClybsChromaNodes" + } + ], "https://github.com/Clybius/ComfyUI-Extra-Samplers": [ [ "GeometricCFGGuider", @@ -3370,8 +3458,51 @@ "title_aux": "ComfyUI-Depth-Visualization-advanced" } ], + "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode": [ + [ + "Add", + "Ceil", + "Chroma_Key_Alpha", + "Clamp", + "Contant3Vector", + "CustomScriptNumpy", + "DDX", + "Desaturation", + "Distance", + "Divided", + "Dot", + "HueShift", + "InverseUVMapGenerator", + "Lerp", + "Max", + "Min", + "Multiply", + "Oneminus", + "Outline", + "Panner", + "Power", + "Rotator", + "Sine", + "Subtraction", + "TextureSampler", + "UVCoordinateGen", + "ifFunction" + ], + { + "title_aux": "ComfyUI-FuncAsTexture-CoiiNode" + } + ], + "https://github.com/ComfyAssets/ComfyUI-KikoStats": [ + [ + "ResourceMonitor" + ], + { + "title_aux": "ComfyUI-KikoStats" + } + ], "https://github.com/ComfyAssets/ComfyUI-KikoTools": [ [ + "EmptyLatentBatch", "ResolutionCalculator", "SamplerCombo", "SamplerComboCompact", @@ -3442,37 +3573,6 @@ "title_aux": "ComfyUI-CoCoTools_IO" } ], - "https://github.com/Conor-Collins/coco_tools": [ - [ - "ColorspaceNode", - "CryptomatteLayer", - "FrequencyCombine", - "FrequencySeparation", - "ImageLoader", - "JSONNode", - "JSONReaderNode", - "JSONValueFinderNode", - "LoadExr", - "LoadExrLayerByName", - "NoiseNode", - "RandomIntNode", - "RegexFindNode", - "SaverNode", - "SplitThreeBandsNode", - "WalkFolderNode", - "ZDepthNode", - "ZNormalizeNode", - "coco_loader", - "colorspace", - "load_exr", - "load_exr_layer_by_name", - "saver", - "shamble_cryptomatte" - ], - { - "title_aux": "ComfyUI-CoCoTools" - } - ], "https://github.com/CosmicLaca/ComfyUI_Primere_Nodes": [ [ "DebugToFile", @@ -3812,6 +3912,20 @@ "title_aux": "Pipeline Parallel ComfyUI" } ], + "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials": [ + [ + "DebugPadawan_ConditionalString", + "DebugPadawan_DebugPrint", + "DebugPadawan_ListInfo", + "DebugPadawan_TextJoiner", + "DebugPadawan_TextSplitter", + "DebugPadawan_TextToJSON", + "DebugPadawan_WaitNode" + ], + { + "title_aux": "DebugPadawan's ComfyUI Essentials" + } + ], "https://github.com/Deep-Neko/ComfyUI_ascii_art": [ [ "AsciiGenerator" @@ -4066,6 +4180,21 @@ "title_aux": "ComfyUI Color Detection Nodes" } ], + "https://github.com/DrStone71/ComfyUI-Prompt-Translator": [ + [ + "CLIP Text Encode (Translate)", + "CLIP Text Translate Advanced", + "Combine Conditioning", + "Conditional Translate", + "Language Package Manager", + "Prompt Text (Translate)", + "Text Translate", + "Universal Text Translate" + ], + { + "title_aux": "ComfyUI-Prompt-Translator" + } + ], "https://github.com/DraconicDragon/ComfyUI-RyuuNoodles": [ [ "Ryuu_CleanStringAdvanced", @@ -4079,6 +4208,10 @@ "Ryuu_FloatPlainLarger", "Ryuu_FloatSlider", "Ryuu_IntSlider", + "Ryuu_IsMultipleOf", + "Ryuu_ScaleToMultiple", + "Ryuu_ScaleToMultipleAdvanced", + "Ryuu_TestNode", "Ryuu_TextEncoderDiffCheck", "Ryuu_TokenCountTextBox" ], @@ -4092,6 +4225,7 @@ "GenerateImage_VENICE", "GenerateSpeech_VENICE", "GenerateTextAdvanced_VENICE", + "GenerateTextVeniceParameters_VENICE", "GenerateText_VENICE", "I2IEnhanceUpscale_VENICE" ], @@ -4319,6 +4453,19 @@ "title_aux": "ComfyUI-ReLight" } ], + "https://github.com/Erehr/ComfyUI-EreNodes": [ + [ + "ErePromptCloud", + "ErePromptFilter", + "ErePromptMultiSelect", + "ErePromptMultiline", + "ErePromptRandomizer", + "ErePromptToggle" + ], + { + "title_aux": "ComfyUI-EreNodes" + } + ], "https://github.com/EvilBT/ComfyUI_SLK_joy_caption_two": [ [ "Batch_joy_caption_two", @@ -4414,7 +4561,8 @@ ], "https://github.com/Extraltodeus/DistanceSampler": [ [ - "SamplerDistance" + "SamplerDistance", + "SamplerDistanceAdvanced" ], { "title_aux": "DistanceSampler" @@ -5684,6 +5832,20 @@ "title_aux": "Hiero-Nodes" } ], + "https://github.com/HighDoping/ComfyUI_ASSSSA": [ + [ + "ASSSubtitleReader", + "ASSSubtitleSave", + "FFMpegSettings", + "MultilineTextInput", + "SubtitleEmbedding", + "SubtitleExtraction", + "VideoTranscoding" + ], + { + "title_aux": "ComfyUI-ASSSSA" + } + ], "https://github.com/Holasyb918/Ghost2_Comfyui": [ [ "AlignPipeline", @@ -7090,6 +7252,14 @@ "title_aux": "ComfyUI_MatAnyone_Kytra" } ], + "https://github.com/LAOGOU-666/ComfyUI-LG_HotReload": [ + [ + "HotReload_Terminal" + ], + { + "title_aux": "ComfyUI-LG_HotReload" + } + ], "https://github.com/LAOGOU-666/ComfyUI_LG_FFT": [ [ "LG_FFTNode", @@ -7550,8 +7720,11 @@ "LTXVBaseSampler", "LTXVFilmGrain", "LTXVLatentUpsampler", + "LTXVPatcherVAE", + "LTXVPreprocessMasks", "LTXVPromptEnhancer", "LTXVPromptEnhancerLoader", + "LTXVQ8LoraModelLoader", "LTXVRecurrentKSampler", "LTXVSelectLatents", "LTXVSetVideoLatentNoiseMasks", @@ -7584,6 +7757,16 @@ "title_aux": "Depth Estimation Node" } ], + "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode": [ + [ + "FaceDetectionNode", + "custom_nodes" + ], + { + "nodename_pattern": "FaceDetectionNode", + "title_aux": "ComfyUI Face Detection Node" + } + ], "https://github.com/Limitex/ComfyUI-Calculation": [ [ "CenterCalculation", @@ -8010,6 +8193,18 @@ "title_aux": "ComfyUI Secure API Call" } ], + "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": [ + [ + "Flux Empty Latent Image", + "Flux Image Scale To Total Pixels (Flux Safe)", + "Image Scale To Total Pixels (SDXL Safe)", + "Prompt With Guidance (Flux)", + "Sdxl Empty Latent Image" + ], + { + "title_aux": "ComfyUI-MaxedOut" + } + ], "https://github.com/McKlinton2/comfyui-mcklinton-pack": [ [ "ColormaskNode", @@ -8454,205 +8649,6 @@ "title_aux": "ComfyUI-TextOverlay" } ], - "https://github.com/MushroomFleet/DJZ-KokoroTTS": [ - [ - "KokoroTTS_LoadVoice_v1", - "KokoroTTS_SaveVoice_v1", - "KokoroTTS_v1", - "KokoroTTS_v2", - "KokoroTTS_v3", - "KokoroTTS_v4", - "KokoroTTS_v5" - ], - { - "title_aux": "KokoroTTS Node" - } - ], - "https://github.com/MushroomFleet/DJZ-Nodes": [ - [ - "AnamorphicEffect", - "AspectSize", - "AspectSizeV2", - "BatchAlphaComposite", - "BatchOffset", - "BatchRangeInsert", - "BatchRangeSwap", - "BatchThief", - "BlackBarsV1", - "BlackBarsV2", - "BlackBarsV3", - "BorderCompositeAlpha", - "BracketCleaner", - "CRT_Effect_v1", - "CathodeRayEffect", - "ClassicFilmEffect", - "CombineAudio", - "DJZ-LoadLatent", - "DJZ-LoadLatentV2", - "DJZDatamosh", - "DJZDatamoshV2", - "DatasetWordcloud", - "DeadPixelEffect", - "DepthBasedPixelization", - "DinskyPlus", - "DinskyPlusV2", - "DjzDatabendingV1", - "DjzDatamoshV3", - "DjzDatamoshV4", - "DjzDatamoshV5", - "DjzDatamoshV6", - "DjzDatamoshV7", - "DjzDatamoshV8", - "FilmGateWeave", - "FilmGrainEffect", - "FilmGrainEffect_v2", - "FishEyeEffect", - "FishEyeV2", - "FractalGenerator", - "FractalGeneratorV2", - "FractalGeneratorV3", - "GSL_Filter_V1", - "HalationBloom", - "ImageInterleavedUpscaler", - "ImageInterleavedUpscalerV2", - "ImageSizeAdjuster", - "ImageSizeAdjusterV2", - "ImageSizeAdjusterV3", - "JitterEffect", - "KeyframeBasedUpscalerV1", - "KinescopeEffectV1", - "LensLeaks", - "LoadTextDirectory", - "LoadVideoDirectory", - "LoadVideoDirectoryV2", - "MotionBlending", - "NoiseFactory", - "NoiseFactoryV2", - "NoiseFactoryV3", - "NonSquarePixelsV1", - "PanavisionLensV2", - "ParametricMeshGen", - "ParametricMeshGenV2", - "ProjectFilePathNode", - "ProjectFolderPathNode", - "PromptCleaner", - "PromptCleanerV2", - "PromptDupeRemover", - "PromptDupeRemoverV2", - "PromptInject", - "PromptInjectV2", - "PromptSwap", - "RetroVideoText", - "ScreensaverGenerator", - "ScreensaverGeneratorV2", - "ScreensaverGeneratorV3", - "SequentialNumberGenerator", - "StringChaos", - "StringWeights", - "Technicolor3Strip_v1", - "Technicolor3Strip_v2", - "ThinkSeeker", - "ThreeToneStyler", - "TrianglesPlus", - "TrianglesPlusV2", - "UncleanSpeech", - "VGA_Effect_v1", - "VHS_Effect_V3", - "VHS_Effect_v1", - "VHS_Effect_v2", - "VideoBitClamp", - "VideoChromaticAberration", - "VideoCorridorV1", - "VideoCubeV1", - "VideoFilmDamage", - "VideoInterlaceFastV4", - "VideoInterlaceGANV3", - "VideoInterlaced", - "VideoInterlacedV2", - "VideoMazeV1", - "VideoMazeV2", - "VideoNoiseFactory", - "VideoPyramidV1", - "VideoRingPainter", - "VideoTemperatureV1", - "VideoText", - "VideoTextV2", - "VideoTimecode", - "VideoTrails", - "VideoTrailsV2", - "VideoVignettingV1", - "VoiceEffects", - "VoiceEffects2", - "WaveletCompose", - "WaveletDecompose", - "WinampViz", - "WinampVizV2", - "ZenkaiControlPromptV1", - "ZenkaiDepthPrompt", - "ZenkaiImagePromptV1", - "ZenkaiImagePromptV2", - "ZenkaiPoseMap", - "ZenkaiPrompt", - "ZenkaiPromptV2", - "ZenkaiPromptV3", - "ZenkaiPromptV4", - "ZenkaiPromptV5", - "ZenkaiWildcard", - "ZenkaiWildcardV2", - "Zenkai_IMPv1", - "djzTiling", - "djzTilingV2" - ], - { - "author": "DJZ-Nodes", - "title_aux": "DJZ-Nodes" - } - ], - "https://github.com/MushroomFleet/DJZ-Pedalboard": [ - [ - "DJZ_Pedalboard" - ], - { - "title_aux": "DJZ-Pedalboard" - } - ], - "https://github.com/MushroomFleet/svg-suite": [ - [ - "ConvertImageFileToSVG", - "ConvertRasterToVectorAdvanced", - "ConvertRawBytesToSVG", - "SVGAdvancedPreview", - "SVGArtGrid", - "SVGArtGridDimensionsCalculator", - "SVGArtGridV2", - "SVGArtGridV3", - "SVGArtGridV4", - "SVGAttributeManipulation", - "SVGBatchColorReplacer", - "SVGColorExtractor", - "SVGColorManipulation", - "SVGColorReplacer", - "SVGCompressAdvanced", - "SVGCreateStyle", - "SVGDefs", - "SVGElementManipulator", - "SVGElementSelector", - "SVGElementStyler", - "SVGOptimizePresets", - "SVGPathManipulation", - "SVGScourOptimize", - "SVGStringReplace", - "SVGStyler", - "SVGStylesManager", - "SVGThemeColorizer", - "SVGViewBox", - "SaveSVGAdvanced", - "ZenkaiSVG_V1" - ], - { - "title_aux": "SVG Suite for ComfyUI" - } - ], "https://github.com/MuziekMagie/ComfyUI-Matchering": [ [ "Matchering", @@ -10565,6 +10561,15 @@ "title_aux": "ComfyUI-Image-Inpainting" } ], + "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL": [ + [ + "MagCacheSDXL", + "MagCacheSDXLCalibration" + ], + { + "title_aux": "ComfyUI-Magcache-for-SDXL" + } + ], "https://github.com/Shiba-2-shiba/ComfyUI_DiffusionModel_fp8_converter": [ [ "ClipFP8ConverterNode", @@ -11215,14 +11220,6 @@ "title_aux": "Quality of Life Nodes for ComfyUI" } ], - "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid": [ - [ - "SVD_txt2vid_ConditioningwithLatent" - ], - { - "title_aux": "Text to video for Stable Video Diffusion in ComfyUI" - } - ], "https://github.com/SparknightLLC/ComfyUI-ConditionalInterrupt": [ [ "Conditional Interrupt" @@ -12247,6 +12244,7 @@ "tri3d_NSFWFilter", "tri3d_NarrowfyImage", "tri3d_Remove_Small_Mask_Islands", + "tri3d_SaveFlattenedPoseKpsAsJsonFile", "tri3d_SaveImage_absolute", "tri3d_SaveText_absolute", "tri3d_Skip_HeadMask", @@ -12562,6 +12560,19 @@ "title_aux": "comfyui-upscale-by-model" } ], + "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tools": [ + [ + "FluxResolutionNode", + "ImageSizeDetectorNode", + "SD15ResolutionNode", + "SDXLResolutionNode", + "WAN21AdvancedResolutionNode", + "WAN21ResolutionNode" + ], + { + "title_aux": "ComfyUI Image Size Tool" + } + ], "https://github.com/TheMistoAI/ComfyUI-Anyline": [ [ "AnyLinePreprocessor" @@ -12663,11 +12674,14 @@ ], "https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant": [ [ + "LoadImageAndExtractMetadataTlant", "LoadRandomTxtFileTlant", "LoadRandomTxtFileTlantV2", "LoadRandomTxtFileTlantV3", "OllamaPromptsGeneratorTlant", - "OllamaSimpleTextGeneratorTlant" + "OllamaSimpleTextGeneratorTlant", + "RandomImageLoaderTlant", + "ReasoningLLMOutputCleaner" ], { "title_aux": "ComfyUI-OllamaPromptsGeneratorTlant" @@ -12699,14 +12713,6 @@ "title_aux": "ComfyUI_YoloSegment_Mask" } ], - "https://github.com/TripleHeadedMonkey/ComfyUI_MileHighStyler": [ - [ - "menus" - ], - { - "title_aux": "ComfyUI_MileHighStyler" - } - ], "https://github.com/Tropfchen/ComfyUI-Embedding_Picker": [ [ "EmbeddingPicker" @@ -12825,7 +12831,11 @@ "TripoAnimateRetargetNode", "TripoAnimateRigNode", "TripoConvertNode", + "TripoMeshCompletion", + "TripoMeshSegmentation", "TripoRefineModel", + "TripoSmartLowPoly", + "TripoStylizeModel", "TripoTextureModel" ], { @@ -13232,6 +13242,10 @@ ], "https://github.com/WaveSpeedAI/wavespeed-comfyui": [ [ + "WaveSpeedAI BytedanceSeedanceLiteI2VNode", + "WaveSpeedAI BytedanceSeedanceLiteT2VNode", + "WaveSpeedAI BytedanceSeedanceProI2VNode", + "WaveSpeedAI BytedanceSeedanceProT2VNode", "WaveSpeedAI Client", "WaveSpeedAI DiaTTSNode", "WaveSpeedAI Flux Image2Image", @@ -13283,6 +13297,7 @@ "WaveSpeedAI Wan Image2Video", "WaveSpeedAI Wan Loras", "WaveSpeedAI Wan Text2Video", + "WaveSpeedAI Wan2114BVaceNode", "WaveSpeedAI Wan21I2V480pLoraNode", "WaveSpeedAI Wan21I2V480pLoraUltraFastNode", "WaveSpeedAI Wan21I2V480pNode", @@ -13530,11 +13545,16 @@ ], "https://github.com/Yanick112/ComfyUI-ToSVG": [ [ - "ConvertRasterToVectorBW", - "ConvertRasterToVectorColor", - "ConvertVectorToRaster", - "SVGPreview", - "SaveSVG" + "TS_ImageQuantize", + "TS_ImageToSVGStringBW_Potracer", + "TS_ImageToSVGStringBW_Vtracer", + "TS_ImageToSVGStringColor_Vtracer", + "TS_SVGBytesIOToString", + "TS_SVGPathSimplify", + "TS_SVGStringPreview", + "TS_SVGStringToImage", + "TS_SVGStringToSVGBytesIO", + "TS_SaveSVGString" ], { "title_aux": "ComfyUI-ToSVG" @@ -13790,6 +13810,16 @@ "title_aux": "ComfyUI-Muyan-TTS" } ], + "https://github.com/Yuan-ManX/ComfyUI-OmniGen2": [ + [ + "LoadOmniGen2Image", + "LoadOmniGen2Model", + "OmniGen2" + ], + { + "title_aux": "ComfyUI-OmniGen2" + } + ], "https://github.com/Yuan-ManX/ComfyUI-OrpheusTTS": [ [ "Long Text Generation", @@ -14485,11 +14515,14 @@ ], "https://github.com/aiaiaikkk/ComfyUI-Curve": [ [ + "CameraRawEnhanceNode", "ColorGradingNode", "CurvePresetNode", + "GaussianBlurNode", + "HistogramAnalysisNode", "PhotoshopCurveNode", "PhotoshopHSLNode", - "PhotoshopHistogramNode" + "PhotoshopLevelsNode" ], { "title_aux": "ComfyUI-Curve" @@ -14752,6 +14785,35 @@ "title_aux": "Akatz Custom Nodes" } ], + "https://github.com/akatz-ai/ComfyUI-Basic-Math": [ + [ + "BasicMath", + "BooleanInput", + "BooleanLogic", + "BooleanUnary", + "FloatComparison", + "FloatInput", + "FloatToType", + "IntMath", + "IntToType", + "IntegerComparison", + "IntegerInput", + "MathConstants", + "NumberClamp", + "NumberComparison", + "NumberLerp", + "NumberRange", + "NumberRound", + "PreciseFloatInput", + "StringComparison", + "StringInput", + "ToBool", + "UnaryMath" + ], + { + "title_aux": "ComfyUI-Basic-Math" + } + ], "https://github.com/akatz-ai/ComfyUI-DepthCrafter-Nodes": [ [ "DepthCrafter", @@ -14900,10 +14962,19 @@ "title_aux": "Caching to not Waste" } ], + "https://github.com/aleolidev/comfy_kaizen_package": [ + [ + "KaizenImageComposite" + ], + { + "title_aux": "Kaizen Package" + } + ], "https://github.com/alessandroperilli/apw_nodes": [ [ "APW_CloudImageSize", "APW_ImageListFilter", + "APW_ImageSaver", "APW_LocalImageSize", "APW_LocalVideoSize" ], @@ -14962,6 +15033,15 @@ "title_aux": "Qwen2-VL wrapper for ComfyUI" } ], + "https://github.com/alexgenovese/ComfyUI-UNO-Flux": [ + [ + "UNOGenerate", + "UNOModelLoader" + ], + { + "title_aux": "ComfyUI UNO Nodes" + } + ], "https://github.com/alexgenovese/ComfyUI_HF_Servelress_Inference": [ [ "HF_QuestionAnswer", @@ -15209,6 +15289,7 @@ ], "https://github.com/arcum42/ComfyUI_SageUtils": [ [ + "SageSetWildcardText", "Sage_AdvSamplerInfo", "Sage_CacheMaintenance", "Sage_CheckLorasForUpdates", @@ -15222,10 +15303,12 @@ "Sage_ConstructLLMPromptExtra", "Sage_ConstructMetadata", "Sage_ConstructMetadataLite", + "Sage_CubiqImageResize", "Sage_DualCLIPTextEncode", "Sage_DualCLIPTextEncodeLumina2", "Sage_EmptyLatentImagePassthrough", "Sage_GetFileHash", + "Sage_GuessResolutionByRatio", "Sage_HiDreamE1_Instruction", "Sage_JoinText", "Sage_KSampler", @@ -15234,6 +15317,7 @@ "Sage_KSamplerTiledDecoder", "Sage_LMStudioLLMPromptText", "Sage_LMStudioLLMPromptVision", + "Sage_LMStudioLLMPromptVisionRefine", "Sage_LastLoraInfo", "Sage_LoadImage", "Sage_LogicalSwitch", @@ -15247,17 +15331,21 @@ "Sage_MultiModelPicker", "Sage_OllamaLLMPromptText", "Sage_OllamaLLMPromptVision", + "Sage_OllamaLLMPromptVisionRefine", "Sage_PonyPrefix", "Sage_PonyStyle", + "Sage_QuickResPicker", "Sage_SamplerInfo", "Sage_SaveImageWithMetadata", + "Sage_SaveText", "Sage_SetText", "Sage_TextWeight", "Sage_TilingInfo", "Sage_TripleJoinText", "Sage_TripleLoraStack", "Sage_UNETLoader", - "Sage_ViewAnything" + "Sage_ViewAnything", + "Sage_ViewNotes" ], { "title_aux": "Sage Utils" @@ -15761,7 +15849,11 @@ [ "BatchCreativeInterpolation", "IpaConfiguration", - "RemoveAndInterpolateFrames" + "RemoveAndInterpolateFrames", + "VideoContinuationGenerator", + "VideoFrameExtractorAndMaskGenerator", + "WanInputFrameNumber", + "WanVideoBlender" ], { "title_aux": "Steerable Motion" @@ -15972,8 +16064,10 @@ "CPackOutputAudio", "CPackOutputFile", "CPackOutputImage", + "CPackOutputTextFile", "CPackOutputVideo", - "CPackOutputZip" + "CPackOutputZip", + "CPackOutputZipSwitch" ], { "title_aux": "Comfy-Pack" @@ -17179,6 +17273,15 @@ "title_aux": "ComfyUI-Apt_Preset" } ], + "https://github.com/casterpollux/MiniMax-bmo": [ + [ + "MinimaxRemoverBMO" + ], + { + "nodename_pattern": "MiniMax.*BMO|BMO.*MiniMax", + "title_aux": "MiniMax Video Object Remover Suite" + } + ], "https://github.com/catboxanon/comfyui_stealth_pnginfo": [ [ "CatboxAnonSaveImageStealth" @@ -17798,9 +17901,13 @@ ], "https://github.com/chaunceyyann/comfyui-image-processing-nodes": [ [ + "CharacterLoaderNode", "ImagePreviewCompare", "ImageSizeProcessor", + "LoraAndTextCombiner", "RandomPersonPhoto", + "ToggleLoraStackNode", + "ToggleTextNode", "VideoThumbnailExtractor", "YouTubeThumbnailExtractor" ], @@ -18354,6 +18461,7 @@ "Image Filter", "Image List From Batch", "Mask Image Filter", + "Masked Section", "Pick from List", "Split String by Commas", "String to Float", @@ -18420,7 +18528,8 @@ "ClaudeCodeMCP", "ClaudeCodeMemory", "ClaudeCodeReader", - "ClaudeCodeTools" + "ClaudeCodeTools", + "ClaudeRedditScraper" ], { "title_aux": "Claude Code ComfyUI Nodes" @@ -18757,6 +18866,14 @@ "title_aux": "ComfyUI-Scripting-Tools" } ], + "https://github.com/cmdicely/simple_image_to_palette": [ + [ + "Example" + ], + { + "title_aux": "Simple Image To Palette" + } + ], "https://github.com/codeprimate/ComfyUI-MaskContourProcessor": [ [ "MaskContourProcessor" @@ -18991,6 +19108,8 @@ "ModelMergeBlocks", "ModelMergeCosmos14B", "ModelMergeCosmos7B", + "ModelMergeCosmosPredict2_14B", + "ModelMergeCosmosPredict2_2B", "ModelMergeFlux1", "ModelMergeLTXV", "ModelMergeMochiPreview", @@ -19074,6 +19193,7 @@ "RepeatImageBatch", "RepeatLatentBatch", "RescaleCFG", + "ResizeAndPadImage", "Rodin3D_Detail", "Rodin3D_Regular", "Rodin3D_Sketch", @@ -19738,6 +19858,7 @@ "D2 Regex Replace", "D2 Regex Switcher", "D2 Resize Calculator", + "D2 Save Image", "D2 Size Slector", "D2 Token Counter", "D2 XY Annotation", @@ -20577,6 +20698,14 @@ "title_aux": "comfyui-dreambait-nodes" } ], + "https://github.com/drphero/comfyui_prompttester": [ + [ + "PromptTester" + ], + { + "title_aux": "ComfyUI-PromptTester" + } + ], "https://github.com/drustan-hawk/primitive-types": [ [ "float", @@ -20588,10 +20717,36 @@ "title_aux": "primitive-types" } ], + "https://github.com/dseditor/ComfyUI-ListHelper": [ + [ + "AudioListCombine", + "AudioListGenerator", + "AudioToFrameCount", + "CeilDivide", + "LoadVideoPath", + "MergeVideoFilename", + "NumberListGenerator", + "PromptListGenerator", + "SaveVideoPath" + ], + { + "title_aux": "ComfyUI-ListHelper" + } + ], + "https://github.com/dseditor/ComfyUI-ScheduledTask": [ + [ + "DailyPromptScheduler", + "TimeToSeedList" + ], + { + "title_aux": "ComfyUI-ScheduledTask" + } + ], "https://github.com/dseditor/ComfyUI-Thread": [ [ "PublishThread", "StartWithLongLiveToken", + "ThreadPublishVideo", "ThreadsHistory" ], { @@ -20983,9 +21138,16 @@ ], "https://github.com/ez-af/ComfyUI-EZ-AF-Nodes": [ [ - "EZ Concatenate Text", - "EZ Load from CSV", - "EZ String" + "EZ_CSV_Loader", + "EZ_Extract_Prompt", + "EZ_Find_Replace", + "EZ_Input", + "EZ_Prompt_Loader", + "EZ_Switch", + "EZ_Tag_Loader", + "EZ_Test", + "EZ_Text_Concat", + "EZ_Text_to_Size" ], { "title_aux": "ComfyUI-EZ-AF-Nodes" @@ -21669,6 +21831,15 @@ "title_aux": "JoyCaption Nodes" } ], + "https://github.com/fplu/comfyui_lama_with_refiner": [ + [ + "INPAINT_InpaintWithLaMaRefinerModel", + "INPAINT_LoadInpaintLaMaModel" + ], + { + "title_aux": "lama_with_refiner" + } + ], "https://github.com/frankchieng/ComfyUI_Aniportrait": [ [ "AniPortrait_Audio2Video", @@ -21699,7 +21870,17 @@ "title_aux": "ComfyUI_llm_easyanimiate" } ], - "https://github.com/fredconex/ComfyUI_SoundFlow": [ + "https://github.com/fredconex/ComfyUI-SongBloom": [ + [ + "SongBloomDecoder", + "SongBloomGenerate", + "SongBloomModelLoader" + ], + { + "title_aux": "SongBloom" + } + ], + "https://github.com/fredconex/ComfyUI-SoundFlow": [ [ "SoundFlow_Concatenator", "SoundFlow_DuckCompressor", @@ -21715,7 +21896,15 @@ "SoundFlow_TrimAudio" ], { - "title_aux": "ComfyUI_SoundFlow" + "title_aux": "ComfyUI-SoundFlow" + } + ], + "https://github.com/fredconex/ComfyUI-SyncEdit": [ + [ + "SyncTextEditor" + ], + { + "title_aux": "Sync Edit" } ], "https://github.com/freelifehacker/ComfyUI-ImgMask2PNG": [ @@ -22194,6 +22383,7 @@ "Hidreamfull_fal", "HunyuanVideoLoraTrainer_fal", "Ideogramv3_fal", + "Imagen4Preview_fal", "KlingMaster_fal", "KlingPro10_fal", "KlingPro16_fal", @@ -22208,9 +22398,12 @@ "Recraft_fal", "RunwayGen3_fal", "Sana_fal", + "SeedanceImageToVideo_fal", + "SeedanceTextToVideo_fal", "Upscaler_fal", "VLM_fal", "Veo2ImageToVideo_fal", + "Veo3_fal", "VideoUpscaler_fal", "WanLoraTrainer_fal", "WanPro_fal" @@ -23383,6 +23576,15 @@ "title_aux": "comfyui-undistort" } ], + "https://github.com/ialhabbal/OcclusionMask": [ + [ + "BatchLoadImages", + "ImageOcclusion" + ], + { + "title_aux": "OcclusionMask" + } + ], "https://github.com/iamandeepsandhu/ComfyUI-NSFW-Check": [ [ "NSFWScore" @@ -23567,6 +23769,14 @@ "title_aux": "IF_VideoPrompts" } ], + "https://github.com/if-ai/ComfyUI-WanResolutionSelector": [ + [ + "VideoResolutionSelector" + ], + { + "title_aux": "ComfyUI-WanResolutionSelector" + } + ], "https://github.com/if-ai/ComfyUI_IF_AI_LoadImages": [ [ "IF_LoadImagesS" @@ -24339,6 +24549,7 @@ "https://github.com/jax-explorer/ComfyUI-VideoBasic": [ [ "VideoBasicLoadVideo", + "VideoBasicMergeVideo", "VideoBasicVideoSave", "VideoBasicVideoUpscaleWithModel" ], @@ -24483,8 +24694,11 @@ ], "https://github.com/jiaqianjing/ComfyUI-MidjourneyHub": [ [ + "GPTImageEditNode", + "GPTImageGenerateNode", "MidjourneyActionNode", "MidjourneyBatchActionNode", + "MidjourneyBlendNode", "MidjourneyImagineNode" ], { @@ -24507,6 +24721,21 @@ "title_aux": "ComfyUI Prompt Expander Node" } ], + "https://github.com/jinchanz/ComfyUI-ADIC": [ + [ + "ADIC_COMMON_API", + "ImageTranslateAPI", + "ImageTranslateParamsBuilder", + "ImageTranslateResultExtractor", + "LoadImagesFromUrls", + "MarketImageGenerateWithPolling", + "PythonCodeExecutor", + "StringToJsonArray" + ], + { + "title_aux": "ComfyUI-ADIC" + } + ], "https://github.com/jitcoder/lora-info": [ [ "ImageFromURL", @@ -24693,6 +24922,21 @@ "title_aux": "ComfyUI_HuggingFace_Downloader" } ], + "https://github.com/joeriben/ai4artsed_comfyui_nodes": [ + [ + "ai4artsed_openrouter_key", + "ai4artsed_prompt_interception", + "ai4artsed_random_artform_generator", + "ai4artsed_random_instruction_generator", + "ai4artsed_random_language_selector", + "ai4artsed_stabilitai_key", + "ai4artsed_t5_clip_fusion", + "ai4artsed_text_remix" + ], + { + "title_aux": "AI4ArtsEd Nodes" + } + ], "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": [ [ "InspyrenetRembg", @@ -24865,6 +25109,24 @@ "title_aux": "ComfyUI_open_nodes" } ], + "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler": [ + [ + "KSamplerIterativeNoise" + ], + { + "title_aux": "ComfyUI-JurdnsIterativeNoiseKsampler" + } + ], + "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor": [ + [ + "ModelSculptorFlux", + "ModelSculptorSD3", + "ModelSculptorSDXL" + ], + { + "title_aux": "ComfyUI-JurdnsModelSculptor" + } + ], "https://github.com/jurdnisglobby/ComfyUI-Jurdns-Groq-Node": [ [ "JurdnsGroqAPIPromptEnhancer" @@ -25142,6 +25404,35 @@ "title_aux": "ComfyUI-YOLO" } ], + "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking": [ + [ + "CLIPLoaderGGUF", + "DownloadAndLoadWav2VecModel", + "FantasyTalkingModelLoader", + "FantasyTalkingWav2VecEmbeds", + "LoadWanVideoT5TextEncoderGGUF", + "ReCamMasterPoseVisualizer", + "UnetLoaderGGUF", + "UnetLoaderGGUF_LowVRAM", + "WanVideoATITracks", + "WanVideoATITracksVisualize", + "WanVideoATI_comfy", + "WanVideoControlnet", + "WanVideoControlnetLoader", + "WanVideoDiffusionForcingSampler", + "WanVideoFunCameraEmbeds", + "WanVideoReCamMasterCameraEmbed", + "WanVideoReCamMasterDefaultCamera", + "WanVideoReCamMasterGenerateOrbitCamera", + "WanVideoUni3C_ControlnetLoader", + "WanVideoUni3C_embeds", + "WanVideoUniAnimateDWPoseDetector", + "WanVideoUniAnimatePoseInput" + ], + { + "title_aux": "ComfyUI-GGUF-FantasyTalking" + } + ], "https://github.com/kaibioinfo/ComfyUI_AdvancedRefluxControl": [ [ "ReduxAdvanced", @@ -25386,8 +25677,11 @@ ], "https://github.com/keit0728/ComfyUI-keitNodes": [ [ + "AspectRatioResolutionFinder", "M2MTranslator", - "PixelLimitResizer" + "PixelLimitResizer", + "WanVideoOptimalResizer", + "WanVideoResolutionFinder" ], { "title_aux": "ComfyUI-keitNodes" @@ -26272,6 +26566,19 @@ "title_aux": "ComfyUI-Image-Tools" } ], + "https://github.com/kohs100/comfyui-ppwc": [ + [ + "PPWCBlock", + "PPWCReplace" + ], + { + "author": "Phospholipids", + "description": "This extension offers wildcard prompting works solely in workflow.", + "nickname": "PPWC", + "title": "PPWildCard", + "title_aux": "PPWildCard" + } + ], "https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI": [ [ "LLLiteLoader" @@ -26874,6 +27181,14 @@ "title_aux": "ComfyUI-LLMs" } ], + "https://github.com/leonardomiramondi/flux-context-comfyui": [ + [ + "FluxContextNode" + ], + { + "title_aux": "Flux Context ComfyUI Node" + } + ], "https://github.com/lepiai/ComfyUI-Minitools": [ [ "LP-CropTransparentEdges", @@ -26970,6 +27285,14 @@ "title_aux": "comfyui_kj" } ], + "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update": [ + [ + "DeepSeekChatNode" + ], + { + "title_aux": "DeepSeek Chat Node for ComfyUI" + } + ], "https://github.com/linksluckytime/comfyui_snacknodes": [ [ "ImageInfo", @@ -27641,6 +27964,19 @@ "title_aux": "comfyui-mask-util" } ], + "https://github.com/lord-lethris/ComfyUI-RPG-Characters": [ + [ + "ModelLikenessSwitch", + "PromptConcatenatorNode", + "PromptConditioningConverter", + "PromptSelectorNode", + "RPGArtStyleSelector", + "RPGCharacterSelector" + ], + { + "title_aux": "ComfyUI-RPG-Characters" + } + ], "https://github.com/lordgasmic/comfyui_save_image_with_options": [ [ "SaveImageWithOptions" @@ -27868,6 +28204,7 @@ "IterativeLatentUpscale", "KSamplerAdvancedProvider", "KSamplerProvider", + "LamaRemoverDetailerHookProvider", "LatentPixelScale", "LatentReceiver", "LatentSender", @@ -28349,6 +28686,14 @@ "title_aux": "ComfyUI CrewAI" } ], + "https://github.com/lucak5s/comfyui_gfpgan": [ + [ + "GFPGANRestorer" + ], + { + "title_aux": "ComfyUI GFPGAN" + } + ], "https://github.com/lujiazho/ComfyUI-CatvtonFluxWrapper": [ [ "CatvtonFluxSampler", @@ -28383,6 +28728,28 @@ "title_aux": "ComfyUI-ModelQuantizer" } ], + "https://github.com/lum3on/ComfyUI-StableAudioX": [ + [ + "AudioXAdvancedVolumeControl", + "AudioXAudioProcessor", + "AudioXEnhancedTextToAudio", + "AudioXEnhancedTextToMusic", + "AudioXEnhancedVideoToAudio", + "AudioXModelLoader", + "AudioXMultiModalGeneration", + "AudioXPromptHelper", + "AudioXTextToAudio", + "AudioXTextToMusic", + "AudioXVideoAudioCombiner", + "AudioXVideoMuter", + "AudioXVideoToAudio", + "AudioXVideoToMusic", + "AudioXVolumeControl" + ], + { + "title_aux": "ComfyUI-AudioX" + } + ], "https://github.com/lum3on/comfyui_EdgeTAM": [ [ "EdgeTAMVideoTracker", @@ -28441,10 +28808,13 @@ ], "https://github.com/m-sokes/ComfyUI-Sokes-Nodes": [ [ - "Current Date | sokes \ud83e\uddac", + "Current Date & Time | sokes \ud83e\uddac", + "Generate Random Background | sokes \ud83e\uddac", + "Hex Color Swatch | sokes \ud83e\uddac", "Hex to Color Name | sokes \ud83e\uddac", "Latent Switch x9 | sokes \ud83e\uddac", "Load Random Image | sokes \ud83e\uddac", + "Random Hex Color | sokes \ud83e\uddac", "Random Number | sokes \ud83e\uddac", "Replace Text with RegEx | sokes \ud83e\uddac" ], @@ -29056,13 +29426,13 @@ "title_aux": "ComfyUI-Miaoshouai-Tagger" } ], - "https://github.com/michaelgold/ComfyUI-Hal-Dot-Fun-Model-Downloader": [ + "https://github.com/michaelgold/ComfyUI-HF-Model-Downloader": [ [ "DownloadModel", "ModelDownloader" ], { - "title_aux": "Hal.fun Hugging Face Model Downloader" + "title_aux": "ComfyUI-HF-Model-Downloader" } ], "https://github.com/microbote/ComfyUI-StyledCLIPTextEncode": [ @@ -30093,6 +30463,7 @@ "https://github.com/nofunstudio/Node_Fun_ComfyUI": [ [ "DynamicQueueCounter", + "FalAPI_kling_video", "FalAPI_recraft_upscale", "Fun KSampler", "IframeView", @@ -30100,7 +30471,8 @@ "LayeredInfiniteZoom", "Replicate flux 1.1 pro ultra", "ReplicateAPI_flux_1_1_pro_ultra", - "ReplicateAPI_flux_fill_pro" + "ReplicateAPI_flux_fill_pro", + "StringLower" ], { "title_aux": "Node_Fun_ComfyUI" @@ -30245,6 +30617,14 @@ "title_aux": "ComfyUI-FlowChain" } ], + "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler": [ + [ + "SeedVR2" + ], + { + "title_aux": "ComfyUI-SeedVR2_VideoUpscaler" + } + ], "https://github.com/numz/Comfyui-Orpheus": [ [ "orpheus", @@ -30288,6 +30668,14 @@ "title_aux": "ComfyUI_NetDist_Plus" } ], + "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor": [ + [ + "OlmCurveEditor" + ], + { + "title_aux": "Olm Curve Editor for ComfyUI" + } + ], "https://github.com/o-l-l-i/ComfyUI-Olm-Resolution-Picker": [ [ "OlmResolutionPicker" @@ -30503,6 +30891,20 @@ "title_aux": "ComfyUI PDF Nodes" } ], + "https://github.com/orion4d/illusion_node": [ + [ + "AdvancedAutostereogramNode", + "AutostereogramNode", + "CheckerboardNode", + "ColorImageNode", + "PatternGeneratorNode", + "TessellationNode", + "TileImageRepeaterNode" + ], + { + "title_aux": "ComfyUI Illusion & Pattern Nodes" + } + ], "https://github.com/orssorbit/ComfyUI-wanBlockswap": [ [ "wanBlockSwap" @@ -30672,7 +31074,8 @@ "SlidingWindowGuidanceAdvanced", "SmoothedEnergyGuidanceAdvanced", "TRTAttachPag", - "TRTPerturbedAttention" + "TRTPerturbedAttention", + "TokenPerturbationGuidance" ], { "title_aux": "sd-perturbed-attention" @@ -30957,22 +31360,52 @@ ], "https://github.com/plugcrypt/CRT-Nodes": [ [ + "AutopromptProcessor", "Boolean Transform", + "CLIPTextEncodeFluxMerged", "CRT Post-Process Suite", "CRTPostProcess", + "CRT_UpscaleModelAdv", + "ClearPreprocessorCache", + "ClearStyleModelCache", + "ClearStyleModelDualCache", + "FaceEnhancementPipeline", + "FaceEnhancementPipelineWithInjection", "FancyNoteNode", + "FileLoaderCrawl", + "FluxAIO_CRT", + "FluxControlnetSampler", + "FluxControlnetSamplerWithInjection", "FluxLoraBlocksPatcher", + "FluxSemanticEncoder", "FluxTiledSamplerCustomAdvanced", + "ImageLoaderCrawl", + "LatentNoiseInjectionSampler", + "LoadImageResize", "Lora Loader Str", + "MaskEmptyFloatNode", + "MaskPassOrPlaceholder", + "PonyFaceEnhancementPipelineWithInjection", + "PonyUpscaleSamplerWithInjection", "Remove Trailing Comma", + "Resolution", + "SamplerSchedulerSelector", + "SimpleFluxShiftNode", + "SimpleKnobNode", + "SimpleToggleNode", + "SmartControlNetApply", + "SmartStyleModelApply", + "SmartStyleModelApplyDual", + "SmartStyleModelApplyWithVision", "Toggle Lora Unet Blocks L1", "Toggle Lora Unet Blocks L2", "Video Duration Calculator" ], { - "author": "CRT", - "description": "Set of nodes for ComfyUI", - "title": "CRT-Nodes", + "author": "chflame", + "description": "A set of nodes for ComfyUI that can composite layer and mask to achieve Photoshop like functionality.", + "nickname": "LayerStyle", + "title": "LayerStyle", "title_aux": "CRT-Nodes" } ], @@ -31127,6 +31560,7 @@ ], "https://github.com/ptmaster/comfyui-audio-speed": [ [ + "PT48KHZ", "PTAudioSpeed" ], { @@ -31255,6 +31689,22 @@ "title_aux": "ComfyUI-Step1X-Edit" } ], + "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides": [ + [ + "EsesCompositionGuides" + ], + { + "title_aux": "ComfyUI-EsesCompositionGuides" + } + ], + "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments": [ + [ + "EsesImageAdjustments2" + ], + { + "title_aux": "ComfyUI-EsesImageAdjustments" + } + ], "https://github.com/qwixiwp/queuetools": [ [ "load images (queue tools)" @@ -31687,6 +32137,7 @@ "BooleanToEnabled", "CannySlider", "ConfigurableDrawText", + "ConfigurableModelRouter", "ControlNetSlider", "DenoiseSlider", "DrawTextConfig", @@ -31777,6 +32228,14 @@ "title_aux": "ComfyUIFlexiLoRALoader" } ], + "https://github.com/rookiepsi/comfypsi_blur_mask": [ + [ + "comfypsi_blur_mask" + ], + { + "title_aux": "Blur Mask" + } + ], "https://github.com/rookiepsi/comfyui-extended": [ [ "ImageLiquify", @@ -31797,7 +32256,8 @@ "UtilitySwitch", "rookiepsi_BlurMask", "rookiepsi_ConstructMask", - "rookiepsi_CropImageToMask" + "rookiepsi_CropImageToMask", + "rookiepsi_ResizeMask" ], { "title_aux": "ComfyUI Extended" @@ -32345,7 +32805,9 @@ [ "LanPaint_KSampler", "LanPaint_KSamplerAdvanced", - "LanPaint_MaskBlend" + "LanPaint_MaskBlend", + "LanPaint_SamplerCustom", + "LanPaint_SamplerCustomAdvanced" ], { "title_aux": "LanPaint" @@ -33353,6 +33815,15 @@ "title_aux": "ComfyUI_ParlerTTS" } ], + "https://github.com/smthemex/ComfyUI_PartPacker": [ + [ + "PartPacker_Loader", + "PartPacker_Sampler" + ], + { + "title_aux": "ComfyUI_PartPacker" + } + ], "https://github.com/smthemex/ComfyUI_Personalize_Anything": [ [ "Personalize_Anything_Load", @@ -33417,6 +33888,16 @@ "title_aux": "ComfyUI_Sapiens" } ], + "https://github.com/smthemex/ComfyUI_SongGeneration": [ + [ + "SongGeneration_Sampler", + "SongGeneration_Stage1", + "SongGeneration_Stage2" + ], + { + "title_aux": "ComfyUI_SongGeneration" + } + ], "https://github.com/smthemex/ComfyUI_Sonic": [ [ "SONICSampler", @@ -34131,12 +34612,21 @@ "JM-MiniMax-API/load-audio", "JM-MiniMax-API/text-to-speech", "JM-MiniMax-API/video-generation", - "JM-MiniMax-API/voice-cloning" + "JM-MiniMax-API/voice-cloning", + "JM-MiniMax-API/voice-design" ], { "title_aux": "ComfyUI-JM-MiniMax-API" } ], + "https://github.com/synthetai/ComfyUI-JM-Volcengine-API": [ + [ + "volcengine-seedream-v3" + ], + { + "title_aux": "ComfyUI-JM-Volcengine-API" + } + ], "https://github.com/synthetai/ComfyUI-ToolBox": [ [ "AutoDLDownload", @@ -34369,6 +34859,7 @@ "GeminiNode", "KoboldCppApiNode", "LoraStrengthXYPlot", + "MusiQNode", "SaveImageEnhancedNode" ], { @@ -34649,8 +35140,48 @@ ], "https://github.com/traugdor/ComfyUI-quadMoons-nodes": [ [ + "AnimateDiff Script", + "Apply ControlNet Stack", + "Control Net Stacker", + "Eff. Loader SDXL", + "Efficient Loader", + "HighRes-Fix Script", + "Image Overlay", + "Join XY Inputs of Same Type", + "KSampler (Efficient)", + "KSampler Adv. (Efficient)", + "KSampler SDXL (Eff.)", + "LatentUpscaler", + "LoRA Stack to String converter", + "LoRA Stacker", + "Manual XY Entry Info", + "NNLatentUpscale", + "Noise Control Script", + "Pack SDXL Tuple", + "Tiled Upscaler Script", + "Unpack SDXL Tuple", + "XY Input: Add/Return Noise", + "XY Input: Aesthetic Score", + "XY Input: CFG Scale", + "XY Input: Checkpoint", + "XY Input: Clip Skip", + "XY Input: Control Net", + "XY Input: Control Net Plot", + "XY Input: Denoise", + "XY Input: LoRA", + "XY Input: LoRA Plot", + "XY Input: LoRA Stacks", + "XY Input: Manual XY Entry", + "XY Input: Prompt S/R", + "XY Input: Refiner On/Off", + "XY Input: Sampler/Scheduler", + "XY Input: Seeds++ Batch", + "XY Input: Steps", + "XY Input: VAE", + "XY Plot", "quadmoonBatchFromLatent", "quadmoonCLIPTextEncode", + "quadmoonCLIPTextEncode2", "quadmoonChangeBackground", "quadmoonConvertBoolToString", "quadmoonConvertFloatToString", @@ -34798,41 +35329,35 @@ ], "https://github.com/tusharbhutt/Endless-Nodes": [ [ - "ESS Aesthetic Scoring", - "ESS Combo Parameterizer", - "ESS Combo Parameterizer & Prompts", - "ESS Eight Input Text Switch", - "ESS Float to Integer", - "ESS Float to Number", - "ESS Float to String", - "ESS Float to X", - "ESS Image Reward", - "ESS Image Saver with JSON", - "ESS Integer to Float", - "ESS Integer to Number", - "ESS Integer to String", - "ESS Integer to X", - "ESS Number to Float", - "ESS Number to Integer", - "ESS Number to String", - "ESS Number to X", - "ESS Parameterizer", - "ESS Parameterizer & Prompts", - "ESS Six Float Output", - "ESS Six Input Text Switch", - "ESS Six Integer IO Switch", - "ESS Six Integer IO Widget", - "ESS String to Float", - "ESS String to Integer", - "ESS String to Num", - "ESS String to X", - "\u267e\ufe0f\ud83c\udf0a\u2728 Image Saver with JSON" + "BatchNegativePrompts", + "Eight_Input_Int_Switch", + "Eight_Input_Int_Switch_Widget", + "Eight_Input_Text_Switch", + "EndlessNode_BatchNegativePrompts", + "EndlessNode_FluxBatchPrompts", + "EndlessNode_PromptCounter", + "EndlessNode_SDXLBatchPrompts", + "EndlessNode_SimpleBatchPrompts", + "FluxBatchPrompts", + "Four_Input_Int_Switch", + "Four_Input_Int_Switch_Widget", + "Four_Input_Text_Switch", + "ImageComplexityScorer", + "ImageNoveltyScorer", + "Image_saver", + "PromptCounter", + "Random_Prompt_Multipicker", + "Random_Prompt_Selector", + "Randomizer_Chaos", + "Randomizer_Mayhem", + "Randomizer_Pandemonium", + "SDXLBatchPrompts", + "SimpleBatchPrompts", + "Six_Input_Int_Switch", + "Six_Input_Int_Switch_Widget", + "Six_Input_Text_Switch" ], { - "author": "BiffMunky", - "description": "A small set of nodes I created for various numerical and text inputs. Features image saver with ability to have JSON saved to separate folder, parameter collection nodes, two aesthetic scoring models, switches for text and numbers, and conversion of string to numeric and vice versa.", - "nickname": "\u267e\ufe0f\ud83c\udf0a\u2728", - "title": "Endless \ufe0f\ud83c\udf0a\u2728 Nodes", "title_aux": "Endless \ufe0f\ud83c\udf0a\u2728 Nodes" } ], @@ -35197,14 +35722,6 @@ "title_aux": "ComfyUI_BishaNodes" } ], - "https://github.com/vovler/comfyui-civitaihelper": [ - [ - "\ud83c\udfaf Civitai Helper" - ], - { - "title_aux": "ComfyUI Civitai Helper Extension" - } - ], "https://github.com/vsevolod-oparin/comfyui-kandinsky22": [ [ "comfy-kandinsky22-decoder-loader", @@ -35429,20 +35946,34 @@ "https://github.com/whmc76/ComfyUI-UniversalToolkit": [ [ "AudioCropProcessUTK", + "CheckMask_UTK", + "CropByMask_UTK", "DepthMapBlur_UTK", "EmptyUnitGenerator_UTK", + "FillMaskedArea_UTK", + "ImageAndMaskPreview_UTK", + "ImageCombineAlpha_UTK", "ImageConcatenateMulti_UTK", "ImageConcatenate_UTK", + "ImageMaskScaleAs_UTK", + "ImagePadForOutpaintMasked_UTK", "ImageRatioDetector_UTK", + "ImageRemoveAlpha_UTK", + "ImageScaleByAspectRatio_UTK", + "ImageScaleRestore_UTK", + "ImitationHueNode_UTK", "LoadAudioPlusFromPath_UTK", "MaskAdd_UTK", "MaskAnd_UTK", "MaskSub_UTK", "PreviewMask_UTK", + "PurgeVRAM_UTK", + "RestoreCropBox_UTK", "ShowFloat_UTK", "ShowInt_UTK", "ShowList_UTK", - "ShowText_UTK" + "ShowText_UTK", + "Show_UTK" ], { "title_aux": "ComfyUI-UniversalToolkit" @@ -35899,25 +36430,6 @@ "title_aux": "ComfyUI-connect-ui" } ], - "https://github.com/xl0/latent-tools": [ - [ - "LTBlendLatent", - "LTGaussianLatent", - "LTKSampler", - "LTLatentLoad", - "LTLatentOp", - "LTLatentToShape", - "LTLatentsConcatenate", - "LTNumberRangeGaussian", - "LTNumberRangeUniform", - "LTPreviewLatent", - "LTReshapeLatent", - "LTUniformLatent" - ], - { - "title_aux": "latent-tools" - } - ], "https://github.com/xlinx/ComfyUI-decadetw-auto-messaging-realtime": [ [ "Auto-MSG-ALL", @@ -36215,17 +36727,6 @@ "title_aux": "ComfyUI-LinearTransition" } ], - "https://github.com/yichengup/ComfyUI-VideoBlender": [ - [ - "VideoBlendLayer", - "VideoBlendStack", - "VideoBlendStackAdvanced", - "VideoPreprocess" - ], - { - "title_aux": "ComfyUI-VideoBlender" - } - ], "https://github.com/yichengup/ComfyUI-YCNodes": [ [ "AdvancedImageSelector", @@ -36501,6 +37002,7 @@ "easy lengthAnything", "easy loadImageBase64", "easy loadImagesForLoop", + "easy loraNames", "easy loraStack", "easy loraStackApply", "easy makeImageForICLora", @@ -37108,6 +37610,7 @@ "ImageResizeTo8x", "ImageTransition", "ImageTransitionLeftToRight", + "ImageTransitionTopToBottom", "ImagesConcanateToGrid", "IntMultipleAddLiteral", "LoadImageMaskWithSwitch", diff --git a/github-stats.json b/github-stats.json index 121d8d2a..57f13893 100644 --- a/github-stats.json +++ b/github-stats.json @@ -2,13101 +2,13311 @@ "https://github.com/0x-jerry/comfyui-rembg": { "stars": 0, "last_update": "2025-04-07 09:23:31", - "author_account_age_days": 3566 + "author_account_age_days": 3574 }, "https://github.com/0xRavenBlack/ComfyUI-OOP": { "stars": 7, "last_update": "2025-03-02 11:59:14", - "author_account_age_days": 1736 + "author_account_age_days": 1744 }, "https://github.com/0xbitches/ComfyUI-LCM": { "stars": 257, "last_update": "2023-11-11 21:24:33", - "author_account_age_days": 888 + "author_account_age_days": 896 }, "https://github.com/1038lab/ComfyUI-EdgeTTS": { - "stars": 41, - "last_update": "2025-04-18 18:32:53", - "author_account_age_days": 809 + "stars": 46, + "last_update": "2025-06-20 18:14:14", + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-JoyCaption": { - "stars": 15, + "stars": 19, "last_update": "2025-06-12 21:15:17", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-LBM": { - "stars": 40, + "stars": 46, "last_update": "2025-05-27 17:37:31", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-MegaTTS": { - "stars": 40, - "last_update": "2025-04-13 18:56:00", - "author_account_age_days": 809 + "stars": 42, + "last_update": "2025-06-19 19:12:51", + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-OmniGen": { - "stars": 270, + "stars": 275, "last_update": "2025-04-18 18:33:34", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-Pollinations": { - "stars": 32, - "last_update": "2025-05-31 06:08:23", - "author_account_age_days": 809 + "stars": 34, + "last_update": "2025-06-19 19:48:05", + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-RMBG": { - "stars": 1069, + "stars": 1081, "last_update": "2025-06-01 21:28:57", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-ReduxFineTune": { - "stars": 49, - "last_update": "2025-05-05 03:57:52", - "author_account_age_days": 809 + "stars": 53, + "last_update": "2025-06-21 19:10:36", + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-SparkTTS": { "stars": 105, "last_update": "2025-04-15 19:28:39", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/1038lab/ComfyUI-WildPromptor": { - "stars": 35, + "stars": 36, "last_update": "2025-04-18 18:54:52", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/111496583yzy/comfyui-PuzzleCrack-Effect": { "stars": 3, "last_update": "2025-01-13 10:15:44", - "author_account_age_days": 2240 + "author_account_age_days": 2248 }, "https://github.com/11cafe/comfyui-workspace-manager": { - "stars": 1304, + "stars": 1310, "last_update": "2025-04-16 14:02:54", - "author_account_age_days": 561 + "author_account_age_days": 569 }, "https://github.com/11dogzi/CYBERPUNK-STYLE-DIY": { - "stars": 29, - "last_update": "2025-06-15 13:25:55", - "author_account_age_days": 482 + "stars": 67, + "last_update": "2025-06-20 07:49:50", + "author_account_age_days": 490 }, "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant": { "stars": 38, "last_update": "2024-08-02 05:24:19", - "author_account_age_days": 482 + "author_account_age_days": 490 }, "https://github.com/11dogzi/Comfyui-ergouzi-Nodes": { "stars": 82, "last_update": "2024-08-23 12:04:09", - "author_account_age_days": 482 + "author_account_age_days": 490 }, "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan": { "stars": 66, - "last_update": "2025-06-14 16:29:45", - "author_account_age_days": 482 + "last_update": "2025-06-22 14:48:37", + "author_account_age_days": 490 }, "https://github.com/11dogzi/Comfyui-ergouzi-samplers": { "stars": 26, "last_update": "2024-06-28 05:28:05", - "author_account_age_days": 482 + "author_account_age_days": 490 }, "https://github.com/1hew/ComfyUI-1hewNodes": { "stars": 3, - "last_update": "2025-06-14 10:38:47", - "author_account_age_days": 805 + "last_update": "2025-06-23 14:32:45", + "author_account_age_days": 813 }, "https://github.com/1mckw/Comfyui-Gelbooru": { "stars": 4, "last_update": "2025-04-06 14:11:25", - "author_account_age_days": 1047 + "author_account_age_days": 1054 }, "https://github.com/1zhangyy1/comfyui-vidu-nodes": { "stars": 8, "last_update": "2025-03-21 12:25:22", - "author_account_age_days": 816 + "author_account_age_days": 824 }, "https://github.com/2frames/ComfyUI-AQnodes": { "stars": 1, "last_update": "2025-06-08 12:51:07", - "author_account_age_days": 347 + "author_account_age_days": 355 }, "https://github.com/2kpr/ComfyUI-PMRF": { - "stars": 198, + "stars": 202, "last_update": "2024-10-11 00:11:40", - "author_account_age_days": 1276 + "author_account_age_days": 1284 }, "https://github.com/2kpr/ComfyUI-UltraPixel": { "stars": 225, "last_update": "2024-07-27 14:52:10", - "author_account_age_days": 1276 + "author_account_age_days": 1284 }, "https://github.com/311-code/ComfyUI-MagicClip_Strength": { "stars": 2, "last_update": "2024-09-22 12:07:40", - "author_account_age_days": 3129 + "author_account_age_days": 3137 + }, + "https://github.com/31702160136/ComfyUI-GrsAI": { + "stars": 7, + "last_update": "2025-06-23 17:00:45", + "author_account_age_days": 2369 }, "https://github.com/42lux/ComfyUI-42lux": { "stars": 10, "last_update": "2024-12-19 10:21:03", - "author_account_age_days": 4055 + "author_account_age_days": 4063 }, "https://github.com/438443467/ComfyUI-GPT4V-Image-Captioner": { "stars": 27, "last_update": "2025-04-06 02:06:59", - "author_account_age_days": 771 + "author_account_age_days": 779 }, "https://github.com/45uee/ComfyUI-Color_Transfer": { "stars": 29, "last_update": "2025-05-12 22:12:06", - "author_account_age_days": 2659 + "author_account_age_days": 2667 }, "https://github.com/54rt1n/ComfyUI-DareMerge": { - "stars": 87, + "stars": 88, "last_update": "2025-03-27 14:57:35", - "author_account_age_days": 4407 + "author_account_age_days": 4415 }, "https://github.com/5x00/ComfyUI-PiAPI-Faceswap": { "stars": 2, "last_update": "2025-01-12 14:49:09", - "author_account_age_days": 1328 + "author_account_age_days": 1336 }, "https://github.com/5x00/ComfyUI-VLM-Captions": { - "stars": 5, + "stars": 6, "last_update": "2025-01-04 21:27:47", - "author_account_age_days": 1328 + "author_account_age_days": 1336 }, "https://github.com/6174/comflowy-nodes": { "stars": 14, "last_update": "2024-12-03 13:31:04", - "author_account_age_days": 4476 + "author_account_age_days": 4484 }, "https://github.com/807502278/ComfyUI-3D-MeshTool": { - "stars": 22, + "stars": 23, "last_update": "2024-10-18 09:59:54", - "author_account_age_days": 2370 + "author_account_age_days": 2378 }, "https://github.com/807502278/ComfyUI-WJNodes": { "stars": 11, "last_update": "2025-06-16 03:44:19", - "author_account_age_days": 2370 + "author_account_age_days": 2378 }, "https://github.com/807502278/ComfyUI_MaskGCT": { "stars": 27, "last_update": "2025-03-05 09:15:32", - "author_account_age_days": 2370 + "author_account_age_days": 2378 }, "https://github.com/80sVectorz/ComfyUI-Static-Primitives": { "stars": 11, "last_update": "2025-03-14 11:42:07", - "author_account_age_days": 1828 + "author_account_age_days": 1835 + }, + "https://github.com/834t/ComfyUI_834t_scene_composer": { + "stars": 1, + "last_update": "2025-06-23 10:55:47", + "author_account_age_days": 563 }, "https://github.com/852wa/ComfyUI-AAP": { "stars": 9, "last_update": "2025-01-29 13:21:59", - "author_account_age_days": 720 + "author_account_age_days": 728 }, "https://github.com/852wa/ComfyUI-ColorshiftColor": { "stars": 48, "last_update": "2025-02-01 12:17:38", - "author_account_age_days": 720 + "author_account_age_days": 728 }, "https://github.com/A043-studios/ComfyUI-ASDF-Pixel-Sort-Nodes": { "stars": 3, "last_update": "2025-06-12 12:51:33", - "author_account_age_days": 1006 + "author_account_age_days": 1014 }, "https://github.com/A043-studios/comfyui-deforum-x-flux-nodes": { "stars": 0, "last_update": "2025-06-10 14:28:27", - "author_account_age_days": 1006 + "author_account_age_days": 1014 }, "https://github.com/A043-studios/comfyui-pixel3dmm": { "stars": 3, "last_update": "2025-06-10 08:11:51", - "author_account_age_days": 1006 + "author_account_age_days": 1014 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-AutoColorGimp": { "stars": 1, "last_update": "2024-05-23 00:26:10", - "author_account_age_days": 829 + "author_account_age_days": 837 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-PixelOE-Wrapper": { "stars": 11, "last_update": "2025-01-21 22:26:11", - "author_account_age_days": 829 + "author_account_age_days": 837 }, "https://github.com/AARG-FAN/Image-Vector-for-ComfyUI": { - "stars": 136, + "stars": 137, "last_update": "2024-06-23 14:56:16", - "author_account_age_days": 856 + "author_account_age_days": 864 }, "https://github.com/AEmotionStudio/ComfyUI-ChristmasTheme": { "stars": 40, "last_update": "2025-06-03 13:01:58", - "author_account_age_days": 459 + "author_account_age_days": 467 }, "https://github.com/AEmotionStudio/ComfyUI-DiscordSend": { "stars": 9, "last_update": "2025-06-03 13:03:23", - "author_account_age_days": 459 + "author_account_age_days": 467 }, "https://github.com/AEmotionStudio/ComfyUI-EnhancedLinksandNodes": { "stars": 38, "last_update": "2025-06-03 13:02:36", - "author_account_age_days": 459 + "author_account_age_days": 467 }, "https://github.com/AEmotionStudio/ComfyUI-MagnifyGlass": { "stars": 12, "last_update": "2025-06-13 19:26:31", - "author_account_age_days": 459 + "author_account_age_days": 467 }, "https://github.com/AEmotionStudio/ComfyUI-ShaderNoiseKSampler": { - "stars": 44, - "last_update": "2025-06-14 03:55:08", - "author_account_age_days": 459 + "stars": 45, + "last_update": "2025-06-20 08:52:02", + "author_account_age_days": 467 }, "https://github.com/AI2lab/comfyUI-siliconflow-api-2lab": { "stars": 7, "last_update": "2024-08-01 15:13:33", - "author_account_age_days": 549 + "author_account_age_days": 557 }, "https://github.com/AIDC-AI/ComfyUI-Copilot": { - "stars": 1839, - "last_update": "2025-06-12 11:50:14", - "author_account_age_days": 368 + "stars": 1888, + "last_update": "2025-06-24 08:29:01", + "author_account_age_days": 376 }, "https://github.com/AIExplorer25/ComfyUI_AutoDownloadModels": { "stars": 14, "last_update": "2025-04-05 22:05:47", - "author_account_age_days": 3823 + "author_account_age_days": 3831 }, "https://github.com/AIExplorer25/ComfyUI_ChatGptHelper": { "stars": 0, "last_update": "2025-05-18 19:11:40", - "author_account_age_days": 3823 + "author_account_age_days": 3831 }, "https://github.com/AIExplorer25/ComfyUI_ImageCaptioner": { "stars": 0, "last_update": "2025-06-07 19:49:36", - "author_account_age_days": 3823 + "author_account_age_days": 3831 }, "https://github.com/AIFSH/AniTalker-ComfyUI": { "stars": 5, "last_update": "2024-08-06 03:08:44", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-3d-photo-inpainting": { "stars": 13, "last_update": "2024-06-19 13:59:49", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-AuraSR": { "stars": 22, "last_update": "2024-06-27 14:00:16", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-DiffSynth-Studio": { "stars": 82, "last_update": "2024-08-05 08:48:03", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-FishSpeech": { "stars": 38, "last_update": "2024-05-23 01:18:49", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-GPT_SoVITS": { - "stars": 233, + "stars": 234, "last_update": "2024-08-09 22:00:45", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-Hallo": { - "stars": 304, + "stars": 305, "last_update": "2024-06-24 06:43:23", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-I2V-Adapter": { "stars": 22, "last_update": "2024-07-02 01:59:49", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-IP_LAP": { - "stars": 33, + "stars": 34, "last_update": "2024-06-14 07:05:39", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-Live2DViewer": { "stars": 8, "last_update": "2024-06-14 07:04:49", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-MARS5-TTS": { - "stars": 30, + "stars": 29, "last_update": "2024-07-02 02:00:28", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-MimicBrush": { "stars": 112, "last_update": "2024-06-17 22:26:53", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-MimicMotion": { "stars": 372, "last_update": "2024-08-06 06:21:16", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-MuseTalk_FSH": { - "stars": 20, + "stars": 21, "last_update": "2024-06-14 07:05:19", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-RVC": { "stars": 24, "last_update": "2024-06-14 07:05:25", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-UVR5": { "stars": 95, "last_update": "2024-06-20 07:31:20", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-UniAnimate": { "stars": 39, "last_update": "2024-06-30 09:20:25", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-WhisperX": { "stars": 48, "last_update": "2025-04-01 00:14:44", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-XTTS": { "stars": 59, "last_update": "2024-06-24 09:45:59", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI_V-Express": { "stars": 87, "last_update": "2024-06-23 09:54:57", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/CosyVoice-ComfyUI": { - "stars": 262, + "stars": 263, "last_update": "2024-09-10 22:21:37", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/DHLive-ComfyUI": { "stars": 24, "last_update": "2024-11-14 01:45:45", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/DiffMorpher-ComfyUI": { "stars": 16, "last_update": "2024-07-17 01:24:59", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/DiffSynth-ComfyUI": { "stars": 0, "last_update": "2024-09-07 12:23:07", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/EchoMimicV2-ComfyUI": { "stars": 57, "last_update": "2024-12-08 08:53:21", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/EzAudio-ComfyUI": { "stars": 9, "last_update": "2024-10-08 05:22:46", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/F5-TTS-ComfyUI": { "stars": 36, "last_update": "2024-11-14 01:43:03", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/FancyVideo-ComfyUI": { "stars": 36, "last_update": "2024-10-12 07:21:51", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/FireRedTTS-ComfyUI": { "stars": 12, "last_update": "2024-10-24 01:18:51", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/GSTTS-ComfyUI": { "stars": 40, "last_update": "2024-08-25 03:23:24", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/HivisionIDPhotos-ComfyUI": { - "stars": 148, + "stars": 149, "last_update": "2024-09-16 14:16:06", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/IMAGDressing-ComfyUI": { "stars": 61, "last_update": "2024-11-14 01:44:02", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/JoyHallo-ComfyUI": { "stars": 8, "last_update": "2024-11-14 01:44:39", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/MaskGCT-ComfyUI": { "stars": 61, "last_update": "2024-11-14 01:40:15", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/MiniMates-ComfyUI": { "stars": 29, "last_update": "2024-11-14 01:36:30", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/OmniGen-ComfyUI": { "stars": 209, "last_update": "2024-11-14 01:37:33", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/PyramidFlow-ComfyUI": { "stars": 14, "last_update": "2024-10-10 13:59:16", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/RealisDance-ComfyUI": { - "stars": 48, + "stars": 49, "last_update": "2024-09-13 14:38:59", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/SemiChat-ComfyUI": { "stars": 10, "last_update": "2025-02-19 23:21:48", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/SenseVoice-ComfyUI": { "stars": 14, "last_update": "2024-07-16 06:41:25", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/StyleShot-ComfyUI": { "stars": 4, "last_update": "2024-08-17 00:25:29", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/VideoSys-ComfyUI": { "stars": 6, "last_update": "2024-09-01 09:11:57", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ViewCrafter-ComfyUI": { "stars": 8, "last_update": "2024-09-19 11:11:25", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/VocalSeparation-ComfyUI": { "stars": 18, "last_update": "2024-10-24 07:16:37", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIGCTeam/ComfyUI_kkTranslator_nodes": { "stars": 7, "last_update": "2024-09-13 07:34:18", - "author_account_age_days": 567 + "author_account_age_days": 574 }, "https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION": { - "stars": 2255, + "stars": 2268, "last_update": "2025-03-24 00:01:12", - "author_account_age_days": 858 + "author_account_age_days": 865 }, "https://github.com/AIGODLIKE/AIGODLIKE-ComfyUI-Studio": { "stars": 343, "last_update": "2025-01-06 11:31:20", - "author_account_age_days": 858 + "author_account_age_days": 865 }, "https://github.com/AIGODLIKE/ComfyUI-CUP": { "stars": 48, "last_update": "2025-05-12 07:53:11", - "author_account_age_days": 858 + "author_account_age_days": 865 }, "https://github.com/AIGODLIKE/ComfyUI-ToonCrafter": { - "stars": 364, + "stars": 365, "last_update": "2024-07-17 02:28:49", - "author_account_age_days": 858 + "author_account_age_days": 865 }, "https://github.com/AIPOQUE/ComfyUI-APQNodes": { - "stars": 100, + "stars": 102, "last_update": "2024-11-21 08:56:49", - "author_account_age_days": 239 + "author_account_age_days": 247 }, "https://github.com/AIToldMeTo/comfyui-cache-cleaner": { - "stars": 5, + "stars": 6, "last_update": "2025-05-29 10:44:45", - "author_account_age_days": 187 + "author_account_age_days": 195 }, "https://github.com/AIWarper/ComfyUI-NormalCrafterWrapper": { - "stars": 58, + "stars": 59, "last_update": "2025-05-15 17:06:29", - "author_account_age_days": 234 + "author_account_age_days": 242 }, "https://github.com/AIWarper/ComfyUI-WarperNodes": { - "stars": 7, + "stars": 8, "last_update": "2025-06-12 16:04:59", - "author_account_age_days": 234 + "author_account_age_days": 242 }, "https://github.com/AInseven/ComfyUI-fastblend": { - "stars": 216, + "stars": 217, "last_update": "2024-11-22 03:32:25", - "author_account_age_days": 2040 + "author_account_age_days": 2047 }, "https://github.com/AIrjen/OneButtonPrompt": { - "stars": 991, + "stars": 990, "last_update": "2025-03-28 09:17:10", - "author_account_age_days": 799 + "author_account_age_days": 807 }, "https://github.com/AJO-reading/ComfyUI-AjoNodes": { - "stars": 3, + "stars": 7, "last_update": "2025-06-16 08:10:10", - "author_account_age_days": 206 + "author_account_age_days": 214 + }, + "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node": { + "stars": 0, + "last_update": "2025-06-23 22:03:39", + "author_account_age_days": 3247 }, "https://github.com/ALatentPlace/ComfyUI_yanc": { "stars": 63, "last_update": "2025-01-22 14:44:17", - "author_account_age_days": 1816 + "author_account_age_days": 1824 }, "https://github.com/ALatentPlace/YANC_LMStudio": { "stars": 10, "last_update": "2025-04-30 14:57:13", - "author_account_age_days": 1816 + "author_account_age_days": 1824 }, "https://github.com/APZmedia/APZmedia-comfy-together-lora": { "stars": 0, "last_update": "2025-02-15 13:14:17", - "author_account_age_days": 2834 + "author_account_age_days": 2841 }, "https://github.com/APZmedia/APZmedia-comfyui-fast-image-save": { "stars": 4, "last_update": "2025-04-21 19:22:43", - "author_account_age_days": 2834 + "author_account_age_days": 2841 }, "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string": { "stars": 7, "last_update": "2025-04-21 19:22:10", - "author_account_age_days": 2834 + "author_account_age_days": 2841 }, "https://github.com/ARZUMATA/ComfyUI-ARZUMATA": { "stars": 4, "last_update": "2025-04-08 08:00:15", - "author_account_age_days": 2123 + "author_account_age_days": 2131 }, "https://github.com/ARZUMATA/ComfyUI-ARZUMATA-PixelIt": { "stars": 1, "last_update": "2025-06-04 13:11:52", - "author_account_age_days": 2123 + "author_account_age_days": 2131 }, "https://github.com/ARZUMATA/ComfyUI-ARZUMATA-Qwen2": { "stars": 1, "last_update": "2025-06-04 13:10:22", - "author_account_age_days": 2123 + "author_account_age_days": 2131 }, "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen": { "stars": 4, "last_update": "2024-07-17 03:55:26", - "author_account_age_days": 1883 + "author_account_age_days": 1891 }, "https://github.com/AbdullahAlfaraj/Comfy-Photoshop-SD": { - "stars": 293, + "stars": 294, "last_update": "2024-06-14 07:04:37", - "author_account_age_days": 4024 + "author_account_age_days": 4032 }, "https://github.com/AbyssBadger0/ComfyUI_BadgerTools": { "stars": 8, "last_update": "2024-11-12 11:10:16", - "author_account_age_days": 846 + "author_account_age_days": 854 }, "https://github.com/AbyssBadger0/ComfyUI_Kolors_awesome_prompts": { "stars": 5, "last_update": "2024-08-29 15:19:06", - "author_account_age_days": 846 + "author_account_age_days": 854 }, "https://github.com/Acly/comfyui-inpaint-nodes": { - "stars": 972, + "stars": 980, "last_update": "2025-03-31 09:53:40", - "author_account_age_days": 4161 + "author_account_age_days": 4169 }, "https://github.com/Acly/comfyui-tooling-nodes": { "stars": 507, "last_update": "2025-06-15 10:32:50", - "author_account_age_days": 4161 + "author_account_age_days": 4169 }, "https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes": { "stars": 9, "last_update": "2025-05-14 08:38:12", - "author_account_age_days": 1837 + "author_account_age_days": 1845 }, "https://github.com/Aerse/ComfyUI-Seed-Nodes": { "stars": 5, "last_update": "2025-06-10 08:19:10", - "author_account_age_days": 3735 + "author_account_age_days": 3742 }, "https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper": { "stars": 2, "last_update": "2025-06-13 08:15:25", - "author_account_age_days": 217 + "author_account_age_days": 225 }, "https://github.com/AhBumm/ComfyUI_BillBum_APIset_Nodes": { "stars": 10, "last_update": "2025-06-04 02:55:08", - "author_account_age_days": 1166 + "author_account_age_days": 1174 }, "https://github.com/AiMiDi/ComfyUI-Aimidi-nodes": { "stars": 0, "last_update": "2024-06-20 17:26:02", - "author_account_age_days": 1632 + "author_account_age_days": 1640 }, "https://github.com/AkashKarnatak/ComfyUI_faishme": { "stars": 0, "last_update": "2025-03-10 20:04:22", - "author_account_age_days": 2110 + "author_account_age_days": 2117 }, "https://github.com/Aksaz/comfyui-seamless-clone": { "stars": 8, "last_update": "2025-05-20 07:08:24", - "author_account_age_days": 239 + "author_account_age_days": 247 }, "https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet": { - "stars": 1237, - "last_update": "2025-06-05 17:48:54", - "author_account_age_days": 3056 + "stars": 1252, + "last_update": "2025-06-20 16:56:52", + "author_account_age_days": 3064 }, "https://github.com/Alexankharin/camera-comfyUI": { - "stars": 7, - "last_update": "2025-06-12 18:44:03", - "author_account_age_days": 2478 + "stars": 8, + "last_update": "2025-06-21 21:59:12", + "author_account_age_days": 2485 }, "https://github.com/Aljnk/ComfyUI-JNK-Tiny-Nodes": { - "stars": 0, + "stars": 1, "last_update": "2025-06-04 07:12:02", - "author_account_age_days": 3760 + "author_account_age_days": 3768 }, "https://github.com/Altair200333/ComfyUI_Flux_1.1_PRO": { "stars": 0, "last_update": "2025-03-23 19:29:25", - "author_account_age_days": 3067 + "author_account_age_days": 3075 }, "https://github.com/Alvaroeai/ComfyUI-Text2Json": { - "stars": 0, + "stars": 1, "last_update": "2024-11-26 16:40:31", - "author_account_age_days": 4058 + "author_account_age_days": 4066 }, "https://github.com/Amorano/Jovi_Capture": { "stars": 5, "last_update": "2025-05-31 18:38:22", - "author_account_age_days": 5569 + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovi_Colorizer": { "stars": 6, "last_update": "2025-05-22 20:00:19", - "author_account_age_days": 5569 + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovi_GLSL": { - "stars": 14, - "last_update": "2025-05-05 04:11:56", - "author_account_age_days": 5569 + "stars": 16, + "last_update": "2025-06-18 02:55:59", + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovi_MIDI": { "stars": 6, "last_update": "2025-05-05 04:11:06", - "author_account_age_days": 5569 + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovi_Measure": { "stars": 2, "last_update": "2025-05-05 04:10:36", - "author_account_age_days": 5569 + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovi_Spout": { "stars": 6, "last_update": "2025-05-29 17:34:42", - "author_account_age_days": 5569 + "author_account_age_days": 5576 }, "https://github.com/Amorano/Jovimetrix": { - "stars": 356, - "last_update": "2025-06-11 19:05:13", - "author_account_age_days": 5569 + "stars": 357, + "last_update": "2025-06-18 16:48:38", + "author_account_age_days": 5576 }, "https://github.com/Andro-Meta/ComfyUI-Ovis2": { - "stars": 4, + "stars": 5, "last_update": "2025-03-24 04:27:56", - "author_account_age_days": 628 + "author_account_age_days": 636 }, "https://github.com/AngelCookies/ComfyUI-Seed-Tracker": { "stars": 0, - "last_update": "2025-04-21 19:53:49", - "author_account_age_days": 1178 + "last_update": "2025-06-23 23:56:50", + "author_account_age_days": 1186 }, "https://github.com/Anibaaal/ComfyUI-UX-Nodes": { "stars": 2, "last_update": "2025-01-23 13:35:49", - "author_account_age_days": 3733 + "author_account_age_days": 3741 }, "https://github.com/AonekoSS/ComfyUI-LoRA-Tuner": { "stars": 9, "last_update": "2025-03-27 17:07:38", - "author_account_age_days": 4448 + "author_account_age_days": 4456 }, "https://github.com/AonekoSS/ComfyUI-SimpleCounter": { "stars": 1, "last_update": "2025-03-27 17:08:39", - "author_account_age_days": 4448 + "author_account_age_days": 4456 }, "https://github.com/ArcherFMY/Diffusion360_ComfyUI": { "stars": 44, "last_update": "2025-03-17 06:08:17", - "author_account_age_days": 3746 + "author_account_age_days": 3754 }, "https://github.com/ArdeniusAI/ComfyUI-Ardenius": { "stars": 5, "last_update": "2024-11-24 09:57:46", - "author_account_age_days": 483 + "author_account_age_days": 491 }, "https://github.com/Arkanun/ReadCSV_ComfyUI": { "stars": 0, "last_update": "2025-02-05 23:06:48", - "author_account_age_days": 3306 + "author_account_age_days": 3314 }, "https://github.com/ArtBot2023/CharacterFaceSwap": { "stars": 89, "last_update": "2024-05-22 20:53:09", - "author_account_age_days": 650 + "author_account_age_days": 658 }, "https://github.com/ArtHommage/HommageTools": { "stars": 2, "last_update": "2025-05-20 20:40:25", - "author_account_age_days": 890 + "author_account_age_days": 898 }, "https://github.com/ArtsticH/ComfyUI_EasyKitHT_NodeAlignPro": { - "stars": 9, + "stars": 11, "last_update": "2025-05-01 01:49:07", - "author_account_age_days": 446 + "author_account_age_days": 454 }, "https://github.com/AshMartian/ComfyUI-DirGir": { - "stars": 24, + "stars": 25, "last_update": "2025-05-04 03:34:19", - "author_account_age_days": 4943 + "author_account_age_days": 4951 }, "https://github.com/AstroCorp/ComfyUI-AstroCorp-Nodes": { "stars": 0, - "last_update": "2025-05-01 18:42:27", - "author_account_age_days": 3197 + "last_update": "2025-06-20 12:27:42", + "author_account_age_days": 3205 }, "https://github.com/AuroBit/ComfyUI-AnimateAnyone-reproduction": { "stars": 37, "last_update": "2024-06-14 09:03:24", - "author_account_age_days": 747 + "author_account_age_days": 754 }, "https://github.com/AuroBit/ComfyUI-OOTDiffusion": { - "stars": 460, + "stars": 461, "last_update": "2024-07-12 03:49:27", - "author_account_age_days": 747 + "author_account_age_days": 754 }, "https://github.com/AustinMroz/ComfyUI-DynamicOversampling": { "stars": 0, "last_update": "2024-06-14 07:06:51", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/AustinMroz/ComfyUI-MinCache": { "stars": 2, "last_update": "2024-12-25 18:52:07", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/AustinMroz/ComfyUI-SpliceTools": { "stars": 6, "last_update": "2024-06-14 07:07:21", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/AustinMroz/ComfyUI-WorkflowCheckpointing": { "stars": 11, "last_update": "2024-10-17 19:59:40", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/Auttasak-L/ComfyUI-ImageCropper": { "stars": 1, "last_update": "2024-05-23 05:04:53", - "author_account_age_days": 3006 + "author_account_age_days": 3014 }, "https://github.com/BAIS1C/ComfyUI_RSS_Feed_Reader": { "stars": 4, "last_update": "2025-04-24 14:09:18", - "author_account_age_days": 846 + "author_account_age_days": 854 }, "https://github.com/BIMer-99/ComfyUI_FishSpeech_EX": { "stars": 7, "last_update": "2024-12-21 11:35:08", - "author_account_age_days": 1589 + "author_account_age_days": 1597 }, "https://github.com/BIMer-99/Comfyui_Hunyuan3D_EX": { "stars": 7, "last_update": "2024-12-09 17:50:23", - "author_account_age_days": 1589 + "author_account_age_days": 1597 }, "https://github.com/BNP1111/comfyui_flux_corrector": { "stars": 4, "last_update": "2025-04-25 16:47:45", - "author_account_age_days": 853 + "author_account_age_days": 861 }, "https://github.com/BXYMartin/ComfyUI-InstantIDUtils": { "stars": 3, "last_update": "2024-05-23 00:08:50", - "author_account_age_days": 2800 + "author_account_age_days": 2808 }, "https://github.com/BZcreativ/ComfyUI-FLUX-TOGETHER-API": { "stars": 3, "last_update": "2024-11-02 14:45:28", - "author_account_age_days": 3593 + "author_account_age_days": 3601 }, "https://github.com/BadCafeCode/masquerade-nodes-comfyui": { - "stars": 422, + "stars": 424, "last_update": "2024-06-19 04:16:54", - "author_account_age_days": 787 + "author_account_age_days": 795 }, "https://github.com/BahaC/ComfyUI-ZonosTTS": { - "stars": 17, + "stars": 18, "last_update": "2025-02-19 06:28:38", - "author_account_age_days": 1662 + "author_account_age_days": 1670 }, "https://github.com/Beinsezii/bsz-cui-extras": { "stars": 24, "last_update": "2024-05-22 20:46:45", - "author_account_age_days": 2583 + "author_account_age_days": 2591 }, "https://github.com/Bellzs/ComfyUI-LoRA-Assistant": { "stars": 14, "last_update": "2025-01-27 09:47:46", - "author_account_age_days": 3364 + "author_account_age_days": 3372 }, "https://github.com/BenNarum/ComfyUI_CAS": { "stars": 3, "last_update": "2024-07-13 12:00:40", - "author_account_age_days": 3429 + "author_account_age_days": 3437 }, "https://github.com/BenNarum/SigmaWaveFormNode": { "stars": 5, "last_update": "2024-06-20 15:20:35", - "author_account_age_days": 3429 + "author_account_age_days": 3437 }, "https://github.com/BennyKok/comfyui-deploy": { - "stars": 1347, - "last_update": "2025-06-16 13:01:50", - "author_account_age_days": 3353 + "stars": 1357, + "last_update": "2025-06-18 15:01:12", + "author_account_age_days": 3360 }, "https://github.com/BetaDoggo/ComfyUI-Cloud-APIs": { "stars": 36, "last_update": "2025-05-01 06:24:47", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/BetaDoggo/ComfyUI-FastSDCPU": { "stars": 9, "last_update": "2024-09-16 05:34:01", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/BetaDoggo/ComfyUI-Gatcha-Embedding": { "stars": 1, "last_update": "2024-08-28 00:24:01", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/BetaDoggo/ComfyUI-VideoPlayer": { "stars": 17, "last_update": "2024-08-05 04:45:12", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes": { "stars": 1, "last_update": "2024-08-01 07:59:10", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker": { "stars": 5, "last_update": "2024-07-19 18:11:11", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/Big-Idea-Technology/ComfyUI-Book-Tools": { "stars": 26, "last_update": "2025-04-21 15:40:34", - "author_account_age_days": 1228 + "author_account_age_days": 1236 }, "https://github.com/Big-Idea-Technology/ComfyUI_LLM_Node": { "stars": 66, "last_update": "2025-04-19 11:58:55", - "author_account_age_days": 1228 + "author_account_age_days": 1236 }, "https://github.com/BigStationW/ComfyUi-RescaleCFGAdvanced": { "stars": 25, "last_update": "2025-05-07 18:10:18", - "author_account_age_days": 43 + "author_account_age_days": 50 }, "https://github.com/BigWhiteFly/ComfyUI-ImageConcat": { "stars": 0, "last_update": "2025-05-21 01:16:27", - "author_account_age_days": 2697 + "author_account_age_days": 2705 }, "https://github.com/Billius-AI/ComfyUI-Path-Helper": { "stars": 18, "last_update": "2024-05-22 23:25:08", - "author_account_age_days": 491 + "author_account_age_days": 499 }, "https://github.com/Bin-sam/DynamicPose-ComfyUI": { "stars": 5, "last_update": "2024-09-11 12:09:11", - "author_account_age_days": 291 + "author_account_age_days": 299 }, "https://github.com/Black-Lioness/ComfyUI-PromptUtils": { "stars": 2, "last_update": "2024-11-22 03:05:11", - "author_account_age_days": 1212 + "author_account_age_days": 1220 }, "https://github.com/BlackVortexAI/ComfyUI-BVortexNodes": { "stars": 2, "last_update": "2024-10-23 09:19:54", - "author_account_age_days": 312 + "author_account_age_days": 320 }, "https://github.com/BlakeOne/ComfyUI-CustomScheduler": { "stars": 16, "last_update": "2024-05-23 00:23:56", - "author_account_age_days": 2889 + "author_account_age_days": 2897 }, "https://github.com/BlakeOne/ComfyUI-NodePresets": { "stars": 12, "last_update": "2024-05-23 00:24:07", - "author_account_age_days": 2889 + "author_account_age_days": 2897 }, "https://github.com/BlakeOne/ComfyUI-NodeReset": { "stars": 3, "last_update": "2024-05-23 00:24:18", - "author_account_age_days": 2889 + "author_account_age_days": 2897 }, "https://github.com/BlakeOne/ComfyUI-SchedulerMixer": { "stars": 10, "last_update": "2024-05-23 00:23:44", - "author_account_age_days": 2889 + "author_account_age_days": 2897 }, "https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb": { - "stars": 384, + "stars": 387, "last_update": "2024-08-07 15:13:31", - "author_account_age_days": 834 + "author_account_age_days": 842 }, "https://github.com/BlenderNeko/ComfyUI_Cutoff": { "stars": 386, "last_update": "2024-05-22 15:01:45", - "author_account_age_days": 834 + "author_account_age_days": 842 }, "https://github.com/BlenderNeko/ComfyUI_Noise": { "stars": 298, "last_update": "2024-06-10 16:38:48", - "author_account_age_days": 834 + "author_account_age_days": 842 }, "https://github.com/BlenderNeko/ComfyUI_SeeCoder": { "stars": 38, "last_update": "2024-05-22 14:57:04", - "author_account_age_days": 834 + "author_account_age_days": 842 }, "https://github.com/BlenderNeko/ComfyUI_TiledKSampler": { - "stars": 378, + "stars": 381, "last_update": "2024-05-22 14:56:49", - "author_account_age_days": 834 + "author_account_age_days": 842 }, "https://github.com/Blonicx/ComfyUI-X-Rework": { "stars": 1, "last_update": "2025-05-07 17:02:20", - "author_account_age_days": 1079 + "author_account_age_days": 1087 }, "https://github.com/BlueprintCoding/ComfyUI_AIDocsClinicalTools": { "stars": 4, "last_update": "2025-02-22 17:07:39", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/BobRandomNumber/ComfyUI-DiaTTS": { - "stars": 7, + "stars": 8, "last_update": "2025-06-02 03:02:19", - "author_account_age_days": 200 + "author_account_age_days": 208 }, "https://github.com/BoyuanJiang/FitDiT-ComfyUI": { "stars": 97, "last_update": "2025-01-21 12:09:05", - "author_account_age_days": 3438 + "author_account_age_days": 3446 }, "https://github.com/Bria-AI/ComfyUI-BRIA-API": { "stars": 43, - "last_update": "2025-06-12 13:06:17", - "author_account_age_days": 1834 + "last_update": "2025-06-16 13:24:17", + "author_account_age_days": 1842 }, "https://github.com/BuffMcBigHuge/ComfyUI-Zonos": { "stars": 71, "last_update": "2025-04-29 21:48:07", - "author_account_age_days": 3269 + "author_account_age_days": 3277 }, "https://github.com/Burgstall-labs/ComfyUI-BETA-Cropnodes": { "stars": 4, "last_update": "2025-05-27 09:10:18", - "author_account_age_days": 148 + "author_account_age_days": 155 }, "https://github.com/Burgstall-labs/ComfyUI-BETA-Helpernodes": { "stars": 4, "last_update": "2025-05-27 09:10:18", - "author_account_age_days": 148 + "author_account_age_days": 155 }, "https://github.com/Burgstall-labs/ComfyUI-BS-Textchop": { "stars": 0, "last_update": "2025-04-05 07:45:54", - "author_account_age_days": 148 + "author_account_age_days": 155 }, "https://github.com/Burgstall-labs/ComfyUI-BS_Kokoro-onnx": { "stars": 36, "last_update": "2025-01-19 19:05:24", - "author_account_age_days": 148 + "author_account_age_days": 155 }, "https://github.com/CC-BryanOttho/ComfyUI_API_Manager": { "stars": 23, "last_update": "2024-06-14 07:13:34", - "author_account_age_days": 842 + "author_account_age_days": 849 }, "https://github.com/CC-SUN6/ccsun_node": { "stars": 0, "last_update": "2025-02-12 07:58:41", - "author_account_age_days": 726 + "author_account_age_days": 734 }, "https://github.com/CHAOSEA/ComfyUI_FaceAlignPaste": { "stars": 12, "last_update": "2025-03-27 13:34:40", - "author_account_age_days": 322 + "author_account_age_days": 330 }, "https://github.com/CY-CHENYUE/ComfyUI-FramePack-HY": { "stars": 18, "last_update": "2025-05-08 09:38:09", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-Free-GPU": { - "stars": 8, + "stars": 9, "last_update": "2025-02-16 16:30:36", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-GPT-API": { "stars": 69, "last_update": "2025-04-17 09:51:35", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-Gemini-API": { - "stars": 216, + "stars": 217, "last_update": "2025-05-08 05:52:02", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-InpaintEasy": { - "stars": 71, + "stars": 74, "last_update": "2025-01-24 16:09:46", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-Janus-Pro": { - "stars": 606, + "stars": 607, "last_update": "2025-01-30 08:08:20", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus": { "stars": 23, "last_update": "2024-10-09 06:56:04", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-MiniCPM-o": { - "stars": 33, + "stars": 34, "last_update": "2025-02-16 18:52:28", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-Molmo": { "stars": 128, "last_update": "2024-10-14 15:06:36", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-OmniGenX": { "stars": 6, "last_update": "2025-01-24 16:13:13", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CY-CHENYUE/ComfyUI-Redux-Prompt": { "stars": 89, "last_update": "2025-01-24 15:43:29", - "author_account_age_days": 555 + "author_account_age_days": 562 }, "https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr": { "stars": 9, "last_update": "2024-05-22 17:55:41", - "author_account_age_days": 606 + "author_account_age_days": 614 }, "https://github.com/CavinHuang/comfyui-nodes-docs": { - "stars": 230, + "stars": 232, "last_update": "2025-03-26 02:12:29", - "author_account_age_days": 3083 + "author_account_age_days": 3091 }, "https://github.com/Chan-0312/ComfyUI-EasyDeforum": { "stars": 11, "last_update": "2024-05-22 23:22:14", - "author_account_age_days": 2223 + "author_account_age_days": 2231 }, "https://github.com/Chan-0312/ComfyUI-IPAnimate": { "stars": 73, "last_update": "2024-05-22 23:22:03", - "author_account_age_days": 2223 + "author_account_age_days": 2231 }, "https://github.com/Chan-0312/ComfyUI-Prompt-Preview": { "stars": 34, "last_update": "2024-06-14 09:01:37", - "author_account_age_days": 2223 + "author_account_age_days": 2231 }, "https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes": { "stars": 37, "last_update": "2025-02-08 13:11:30", - "author_account_age_days": 2235 + "author_account_age_days": 2243 }, "https://github.com/Charlweed/image_transceiver": { "stars": 2, "last_update": "2025-01-06 19:22:50", - "author_account_age_days": 5454 + "author_account_age_days": 5462 }, "https://github.com/Charonartist/Comfyui_gemini_tts_node": { "stars": 0, "last_update": "2025-05-26 01:17:59", - "author_account_age_days": 351 + "author_account_age_days": 359 + }, + "https://github.com/Charonartist/comfyui-auto-lora-v2": { + "stars": 0, + "last_update": "2025-06-17 15:00:30", + "author_account_age_days": 359 + }, + "https://github.com/ChenDarYen/ComfyUI-NAG": { + "stars": 28, + "last_update": "2025-06-24 01:44:02", + "author_account_age_days": 2266 }, "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel": { "stars": 8, "last_update": "2025-01-07 18:22:10", - "author_account_age_days": 2258 + "author_account_age_days": 2266 }, "https://github.com/Chengym2023/ComfyUI-DeepSeek_Online": { "stars": 0, "last_update": "2025-04-07 01:09:05", - "author_account_age_days": 757 + "author_account_age_days": 765 }, "https://github.com/ChrisColeTech/ComfyUI-Elegant-Resource-Monitor": { "stars": 13, "last_update": "2024-09-23 21:48:27", - "author_account_age_days": 2769 + "author_account_age_days": 2777 }, "https://github.com/ChrisColeTech/ComfyUI-Line-counter": { "stars": 2, "last_update": "2025-03-12 00:07:25", - "author_account_age_days": 2769 + "author_account_age_days": 2777 }, "https://github.com/Chrisvenator/ComfyUI-Painting-by-colors-generator": { "stars": 0, "last_update": "2025-06-03 07:56:17", - "author_account_age_days": 2086 + "author_account_age_days": 2094 }, "https://github.com/ClownsharkBatwing/RES4LYF": { - "stars": 236, - "last_update": "2025-06-16 03:45:04", - "author_account_age_days": 386 + "stars": 266, + "last_update": "2025-06-22 16:41:12", + "author_account_age_days": 394 + }, + "https://github.com/Clybius/ComfyUI-ClybsChromaNodes": { + "stars": 7, + "last_update": "2025-06-18 17:09:18", + "author_account_age_days": 2098 }, "https://github.com/Clybius/ComfyUI-Extra-Samplers": { - "stars": 85, + "stars": 86, "last_update": "2024-11-15 17:21:45", - "author_account_age_days": 2090 + "author_account_age_days": 2098 }, "https://github.com/Clybius/ComfyUI-Latent-Modifiers": { "stars": 80, "last_update": "2024-06-14 09:02:44", - "author_account_age_days": 2090 + "author_account_age_days": 2098 }, "https://github.com/CoiiChan/ComfyUI-Depth-Visualization-Advanced": { - "stars": 3, - "last_update": "2025-06-16 11:50:23", - "author_account_age_days": 2254 + "stars": 4, + "last_update": "2025-06-17 03:43:27", + "author_account_age_days": 2262 + }, + "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode": { + "stars": 1, + "last_update": "2025-06-24 03:34:32", + "author_account_age_days": 2262 }, "https://github.com/CoiiChan/comfyui-every-person-seg-coii": { - "stars": 1, - "last_update": "2025-06-15 14:38:58", - "author_account_age_days": 2254 + "stars": 3, + "last_update": "2025-06-20 08:51:56", + "author_account_age_days": 2262 + }, + "https://github.com/ComfyAssets/ComfyUI-KikoStats": { + "stars": 0, + "last_update": "2025-06-21 15:03:38", + "author_account_age_days": 30 }, "https://github.com/ComfyAssets/ComfyUI-KikoTools": { "stars": 0, - "last_update": "2025-06-16 00:12:28", - "author_account_age_days": 22 + "last_update": "2025-06-20 15:03:50", + "author_account_age_days": 30 }, "https://github.com/ComfyAssets/ComfyUI_PromptManager": { - "stars": 19, - "last_update": "2025-06-11 20:44:02", - "author_account_age_days": 22 + "stars": 22, + "last_update": "2025-06-19 23:56:57", + "author_account_age_days": 30 }, "https://github.com/ComfyAssets/ComfyUI_Selectors": { "stars": 0, "last_update": "2025-06-13 16:13:05", - "author_account_age_days": 22 + "author_account_age_days": 30 }, "https://github.com/ComfyUI-JH/ComfyUI-JH-Misc-Nodes": { "stars": 1, "last_update": "2024-12-28 19:44:14", - "author_account_age_days": 179 + "author_account_age_days": 187 }, "https://github.com/ComfyUI-JH/ComfyUI-JH-XMP-Metadata-Nodes": { "stars": 2, "last_update": "2024-12-31 21:44:05", - "author_account_age_days": 179 + "author_account_age_days": 187 }, "https://github.com/ComplexRobot/ComfyUI-Simple-VFI": { "stars": 0, "last_update": "2025-03-31 15:37:25", - "author_account_age_days": 4780 + "author_account_age_days": 4788 }, "https://github.com/Conor-Collins/ComfyUI-CoCoTools_IO": { - "stars": 40, - "last_update": "2025-06-09 20:44:26", - "author_account_age_days": 531 - }, - "https://github.com/Conor-Collins/coco_tools": { - "stars": 33, - "last_update": "2025-04-22 00:18:33", - "author_account_age_days": 531 + "stars": 45, + "last_update": "2025-06-17 22:17:57", + "author_account_age_days": 539 }, "https://github.com/CosmicLaca/ComfyUI_Primere_Nodes": { - "stars": 123, + "stars": 124, "last_update": "2025-06-14 14:59:08", - "author_account_age_days": 4012 + "author_account_age_days": 4020 }, "https://github.com/CpreForEver/CFE_comfyui": { "stars": 0, "last_update": "2024-12-09 01:38:42", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/Creeper-MZ/comfyui_nai_api": { "stars": 0, "last_update": "2024-10-02 21:30:26", - "author_account_age_days": 1360 + "author_account_age_days": 1368 }, "https://github.com/Creepybits/ComfyUI-Creepy_nodes": { "stars": 11, "last_update": "2025-06-06 07:09:35", - "author_account_age_days": 1964 + "author_account_age_days": 1972 }, "https://github.com/Cryptyox/anaglyphTool-Comfyui": { "stars": 7, "last_update": "2025-05-13 16:12:27", - "author_account_age_days": 1285 + "author_account_age_days": 1293 }, "https://github.com/Curt-Park/human-parser-comfyui-node-in-pure-python": { "stars": 3, "last_update": "2025-03-18 00:51:34", - "author_account_age_days": 3543 + "author_account_age_days": 3551 }, "https://github.com/CyanAutumn/ComfyUi_Random_Manage_Cyan": { "stars": 3, "last_update": "2024-12-19 10:54:08", - "author_account_age_days": 1459 + "author_account_age_days": 1467 }, "https://github.com/Cyber-BlackCat/ComfyUI-Image-Vector": { "stars": 2, "last_update": "2025-04-27 05:40:25", - "author_account_age_days": 771 + "author_account_age_days": 779 }, "https://github.com/Cyber-BlackCat/ComfyUI-MoneyMaker": { "stars": 10, "last_update": "2025-05-29 02:15:11", - "author_account_age_days": 771 + "author_account_age_days": 779 }, "https://github.com/Cyber-BlackCat/ComfyUI_Auto_Caption": { "stars": 13, "last_update": "2025-05-29 02:14:55", - "author_account_age_days": 771 + "author_account_age_days": 779 }, "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader": { "stars": 1, "last_update": "2024-07-31 13:54:16", - "author_account_age_days": 5515 + "author_account_age_days": 5522 }, "https://github.com/DJ-Tribefull/Comfyui_FOCUS_nodes": { "stars": 5, "last_update": "2025-02-02 00:46:30", - "author_account_age_days": 145 + "author_account_age_days": 153 }, "https://github.com/Danand/ComfyUI-ComfyCouple": { - "stars": 59, + "stars": 60, "last_update": "2024-08-10 22:24:01", - "author_account_age_days": 4645 + "author_account_age_days": 4653 }, "https://github.com/DanielHabib/ComfyUI-Voxels": { "stars": 4, "last_update": "2024-09-16 15:41:02", - "author_account_age_days": 3940 + "author_account_age_days": 3948 }, "https://github.com/Danteday/ComfyUI-NoteManager": { "stars": 10, "last_update": "2025-04-20 19:52:58", - "author_account_age_days": 2673 + "author_account_age_days": 2681 }, "https://github.com/DareFail/ComfyUI-Roboflow": { "stars": 34, "last_update": "2024-09-25 18:30:43", - "author_account_age_days": 4944 + "author_account_age_days": 4952 }, "https://github.com/DarioFT/ComfyUI-VideoDirCombiner": { "stars": 5, "last_update": "2025-03-08 13:58:12", - "author_account_age_days": 3834 + "author_account_age_days": 3842 }, "https://github.com/DataCTE/prompt_injection": { "stars": 91, "last_update": "2024-06-21 12:56:43", - "author_account_age_days": 1134 + "author_account_age_days": 1142 }, "https://github.com/Dayuppy/ComfyUI-DiscordWebhook": { "stars": 3, "last_update": "2024-10-12 05:12:07", - "author_account_age_days": 4572 + "author_account_age_days": 4580 }, "https://github.com/De-Zoomer/ComfyUI-DeZoomer-Nodes": { - "stars": 4, - "last_update": "2025-05-12 17:25:04", - "author_account_age_days": 1211 + "stars": 6, + "last_update": "2025-06-20 16:45:43", + "author_account_age_days": 1219 }, "https://github.com/DeJoker/pipeline-parallel-comfy": { "stars": 3, "last_update": "2024-07-29 06:59:37", - "author_account_age_days": 3347 + "author_account_age_days": 3355 + }, + "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials": { + "stars": 0, + "last_update": "2025-06-21 12:46:56", + "author_account_age_days": 166 }, "https://github.com/Deep-Neko/ComfyUI_ascii_art": { "stars": 1, "last_update": "2025-02-24 13:07:36", - "author_account_age_days": 112 + "author_account_age_days": 119 }, "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes": { "stars": 411, "last_update": "2024-06-22 02:12:19", - "author_account_age_days": 2131 + "author_account_age_days": 2139 }, "https://github.com/DesertPixelAi/ComfyUI-Desert-Pixel-Nodes": { "stars": 16, - "last_update": "2025-05-29 13:13:56", - "author_account_age_days": 502 + "last_update": "2025-06-22 10:33:31", + "author_account_age_days": 510 }, "https://github.com/DiaoDaiaChan/ComfyUI_API_Request": { "stars": 3, "last_update": "2025-06-02 14:54:47", - "author_account_age_days": 842 + "author_account_age_days": 850 }, "https://github.com/DiffusionWave/PickResolution_DiffusionWave": { "stars": 0, "last_update": "2025-05-19 23:16:22", - "author_account_age_days": 78 + "author_account_age_days": 86 }, "https://github.com/DigitalIO/ComfyUI-stable-wildcards": { - "stars": 24, + "stars": 25, "last_update": "2025-03-17 17:53:33", - "author_account_age_days": 4395 + "author_account_age_days": 4403 }, "https://github.com/DimaChaichan/LAizypainter-Exporter-ComfyUI": { "stars": 6, "last_update": "2024-05-22 23:14:06", - "author_account_age_days": 3430 + "author_account_age_days": 3437 }, "https://github.com/Diohim/ComfyUI-Unusual-Tools": { "stars": 0, "last_update": "2025-03-17 12:47:19", - "author_account_age_days": 136 + "author_account_age_days": 144 }, "https://github.com/Dobidop/ComfyStereo": { - "stars": 22, + "stars": 23, "last_update": "2025-03-23 18:45:54", - "author_account_age_days": 1817 + "author_account_age_days": 1825 }, "https://github.com/DoctorDiffusion/ComfyUI-BEN": { "stars": 41, "last_update": "2024-12-15 18:19:01", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/DoctorDiffusion/ComfyUI-MediaMixer": { - "stars": 17, + "stars": 18, "last_update": "2024-12-05 03:05:44", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/DoctorDiffusion/ComfyUI-Schedulizer": { "stars": 6, "last_update": "2024-11-30 03:13:29", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/DoctorDiffusion/ComfyUI-SnakeOil": { "stars": 4, "last_update": "2024-12-31 00:59:19", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/DoctorDiffusion/ComfyUI-basic-pitch": { "stars": 1, "last_update": "2024-12-25 19:07:11", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/Dontdrunk/ComfyUI-DD-Nodes": { - "stars": 50, - "last_update": "2025-05-27 07:09:51", - "author_account_age_days": 3261 + "stars": 58, + "last_update": "2025-06-23 09:54:31", + "author_account_age_days": 3268 }, "https://github.com/Dontdrunk/ComfyUI-DD-Translation": { - "stars": 215, - "last_update": "2025-06-16 10:21:38", - "author_account_age_days": 3261 + "stars": 228, + "last_update": "2025-06-24 05:58:27", + "author_account_age_days": 3268 }, "https://github.com/DrJKL/ComfyUI-Anchors": { "stars": 6, "last_update": "2024-06-20 18:23:00", - "author_account_age_days": 5351 + "author_account_age_days": 5359 }, "https://github.com/DrMWeigand/ComfyUI-StereoVision": { "stars": 9, "last_update": "2025-02-04 14:24:46", - "author_account_age_days": 1389 + "author_account_age_days": 1396 }, "https://github.com/DrMWeigand/ComfyUI_ColorImageDetection": { "stars": 3, "last_update": "2024-07-15 13:21:10", - "author_account_age_days": 1389 + "author_account_age_days": 1396 + }, + "https://github.com/DrStone71/ComfyUI-Prompt-Translator": { + "stars": 0, + "last_update": "2025-06-17 00:22:24", + "author_account_age_days": 310 }, "https://github.com/DraconicDragon/ComfyUI-RyuuNoodles": { "stars": 3, - "last_update": "2025-06-15 05:39:33", - "author_account_age_days": 1730 + "last_update": "2025-06-24 03:14:18", + "author_account_age_days": 1738 }, "https://github.com/DraconicDragon/ComfyUI-Venice-API": { "stars": 5, - "last_update": "2025-06-15 00:34:21", - "author_account_age_days": 1730 + "last_update": "2025-06-16 18:58:57", + "author_account_age_days": 1738 }, "https://github.com/DragonDiffusionbyBoyo/BoyoSupercoolWrapper": { "stars": 4, "last_update": "2025-06-01 16:44:46", - "author_account_age_days": 169 + "author_account_age_days": 176 }, "https://github.com/DragonDiffusionbyBoyo/Boyonodes": { "stars": 2, "last_update": "2025-05-19 22:59:06", - "author_account_age_days": 169 + "author_account_age_days": 176 }, "https://github.com/Duanyll/duanyll_nodepack": { "stars": 0, "last_update": "2025-03-12 08:41:14", - "author_account_age_days": 3089 + "author_account_age_days": 3097 }, "https://github.com/Eagle-CN/ComfyUI-Addoor": { "stars": 50, "last_update": "2025-04-25 01:03:58", - "author_account_age_days": 2984 + "author_account_age_days": 2992 }, "https://github.com/Easymode-ai/ComfyUI-BPT": { "stars": 8, "last_update": "2025-02-28 00:32:37", - "author_account_age_days": 1629 + "author_account_age_days": 1637 }, "https://github.com/Easymode-ai/ComfyUI-ShadowR": { "stars": 10, "last_update": "2025-02-21 20:53:27", - "author_account_age_days": 1629 + "author_account_age_days": 1637 }, "https://github.com/EeroHeikkinen/ComfyUI-eesahesNodes": { "stars": 70, "last_update": "2024-09-01 11:43:02", - "author_account_age_days": 5074 + "author_account_age_days": 5082 }, "https://github.com/Elaine-chennn/comfyui-overlay-media": { "stars": 0, "last_update": "2024-10-09 11:07:46", - "author_account_age_days": 1500 + "author_account_age_days": 1508 }, "https://github.com/Electrofried/ComfyUI-OpenAINode": { "stars": 28, "last_update": "2024-06-14 09:01:22", - "author_account_age_days": 2977 + "author_account_age_days": 2984 }, "https://github.com/EllangoK/ComfyUI-post-processing-nodes": { - "stars": 223, + "stars": 224, "last_update": "2025-01-20 07:16:46", - "author_account_age_days": 3135 + "author_account_age_days": 3143 }, "https://github.com/EmAySee/ComfyUI_EmAySee_CustomNodes": { "stars": 1, "last_update": "2025-05-07 19:52:32", - "author_account_age_days": 1945 + "author_account_age_days": 1953 }, "https://github.com/EnragedAntelope/ComfyUI-ConstrainResolution": { "stars": 5, "last_update": "2025-03-30 13:06:11", - "author_account_age_days": 326 + "author_account_age_days": 334 }, "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer": { "stars": 10, "last_update": "2025-03-30 13:06:28", - "author_account_age_days": 326 + "author_account_age_days": 334 }, "https://github.com/EnragedAntelope/ComfyUI-EACloudNodes": { "stars": 6, "last_update": "2025-04-22 00:44:56", - "author_account_age_days": 326 + "author_account_age_days": 334 }, "https://github.com/EnragedAntelope/comfyui-relight": { - "stars": 70, + "stars": 73, "last_update": "2025-05-16 16:06:28", - "author_account_age_days": 326 + "author_account_age_days": 334 }, "https://github.com/Erehr/ComfyUI-EreNodes": { - "stars": 17, - "last_update": "2025-06-15 19:37:10", - "author_account_age_days": 3627 + "stars": 21, + "last_update": "2025-06-23 06:46:10", + "author_account_age_days": 3635 }, "https://github.com/EvilBT/ComfyUI_SLK_joy_caption_two": { - "stars": 566, - "last_update": "2024-10-22 09:13:15", - "author_account_age_days": 3956 + "stars": 572, + "last_update": "2025-06-18 23:00:26", + "author_account_age_days": 3964 }, "https://github.com/Excidos/ComfyUI-Documents": { "stars": 54, "last_update": "2024-07-11 20:15:21", - "author_account_age_days": 364 + "author_account_age_days": 371 }, "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": { "stars": 17, "last_update": "2024-07-30 10:27:07", - "author_account_age_days": 364 + "author_account_age_days": 371 }, "https://github.com/ExponentialML/ComfyUI_ModelScopeT2V": { "stars": 27, "last_update": "2024-05-23 00:12:17", - "author_account_age_days": 1980 + "author_account_age_days": 1988 }, "https://github.com/ExponentialML/ComfyUI_Native_DynamiCrafter": { "stars": 112, "last_update": "2024-06-08 02:33:02", - "author_account_age_days": 1980 + "author_account_age_days": 1988 }, "https://github.com/ExponentialML/ComfyUI_VisualStylePrompting": { "stars": 301, "last_update": "2024-05-23 00:12:41", - "author_account_age_days": 1980 + "author_account_age_days": 1988 }, "https://github.com/ExterminanzHS/Gecco-Discord-Autosend": { "stars": 1, "last_update": "2024-09-05 12:33:30", - "author_account_age_days": 3565 + "author_account_age_days": 3572 }, "https://github.com/Extraltodeus/ComfyUI-AutomaticCFG": { - "stars": 412, + "stars": 413, "last_update": "2024-09-10 17:44:50", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/DistanceSampler": { - "stars": 34, - "last_update": "2025-05-09 21:25:52", - "author_account_age_days": 3506 + "stars": 35, + "last_update": "2025-06-19 22:54:08", + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/LoadLoraWithTags": { "stars": 75, "last_update": "2025-02-25 18:12:40", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/Negative-attention-for-ComfyUI-": { "stars": 9, "last_update": "2025-03-20 15:10:24", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/Skimmed_CFG": { "stars": 194, "last_update": "2024-10-25 20:59:10", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/Stable-Diffusion-temperature-settings": { "stars": 43, "last_update": "2024-07-10 00:27:51", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/Uncond-Zero-for-ComfyUI": { "stars": 48, "last_update": "2024-07-10 00:27:36", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/Vector_Sculptor_ComfyUI": { "stars": 121, "last_update": "2024-08-28 05:29:07", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/noise_latent_perlinpinpin": { "stars": 33, "last_update": "2024-08-13 14:19:11", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI": { "stars": 47, "last_update": "2025-05-24 07:36:22", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/Extraltodeus/sigmas_tools_and_the_golden_scheduler": { "stars": 82, "last_update": "2024-12-13 00:18:40", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/FaberVS/MultiModel": { "stars": 1, "last_update": "2025-05-06 14:27:08", - "author_account_age_days": 2128 + "author_account_age_days": 2135 }, "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation": { - "stars": 720, + "stars": 731, "last_update": "2025-04-30 11:32:27", - "author_account_age_days": 3488 + "author_account_age_days": 3496 }, "https://github.com/Fannovel16/ComfyUI-MagickWand": { "stars": 113, "last_update": "2025-03-31 10:26:14", - "author_account_age_days": 3488 + "author_account_age_days": 3496 }, "https://github.com/Fannovel16/ComfyUI-MotionDiff": { "stars": 200, "last_update": "2024-08-01 01:01:53", - "author_account_age_days": 3488 + "author_account_age_days": 3496 }, "https://github.com/Fannovel16/ComfyUI-Video-Matting": { "stars": 208, "last_update": "2024-08-14 01:28:50", - "author_account_age_days": 3488 + "author_account_age_days": 3496 }, "https://github.com/Fannovel16/comfyui_controlnet_aux": { - "stars": 3087, - "last_update": "2025-06-12 04:41:58", - "author_account_age_days": 3488 + "stars": 3119, + "last_update": "2025-06-20 08:57:29", + "author_account_age_days": 3496 }, "https://github.com/Fantaxico/ComfyUI-GCP-Storage": { "stars": 3, "last_update": "2024-06-14 09:05:52", - "author_account_age_days": 892 + "author_account_age_days": 900 }, "https://github.com/Feidorian/feidorian-ComfyNodes": { "stars": 5, "last_update": "2024-06-20 11:31:37", - "author_account_age_days": 3112 + "author_account_age_days": 3120 }, "https://github.com/FewBox/fewbox-outfit-comfyui": { "stars": 0, "last_update": "2025-04-27 01:02:28", - "author_account_age_days": 2972 + "author_account_age_days": 2980 }, "https://github.com/Fictiverse/ComfyUI_Fictiverse": { "stars": 14, "last_update": "2024-12-02 16:48:03", - "author_account_age_days": 1028 + "author_account_age_days": 1036 }, "https://github.com/Fihade/IC-Light-ComfyUI-Node": { "stars": 8, "last_update": "2024-07-02 03:47:17", - "author_account_age_days": 3104 + "author_account_age_days": 3112 }, "https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite": { "stars": 3, "last_update": "2025-01-30 08:30:13", - "author_account_age_days": 378 + "author_account_age_days": 386 }, "https://github.com/FizzleDorf/ComfyUI-AIT": { "stars": 52, "last_update": "2024-06-22 03:13:05", - "author_account_age_days": 2336 + "author_account_age_days": 2344 }, "https://github.com/FizzleDorf/ComfyUI_FizzNodes": { - "stars": 440, + "stars": 442, "last_update": "2024-10-29 01:51:46", - "author_account_age_days": 2336 + "author_account_age_days": 2344 }, "https://github.com/Flow-two/ComfyUI-WanStartEndFramesNative": { - "stars": 75, + "stars": 76, "last_update": "2025-03-28 04:58:45", - "author_account_age_days": 1865 + "author_account_age_days": 1873 }, "https://github.com/FlyingFireCo/tiled_ksampler": { - "stars": 84, + "stars": 86, "last_update": "2024-05-22 23:15:17", - "author_account_age_days": 989 + "author_account_age_days": 997 }, "https://github.com/ForeignGods/ComfyUI-Mana-Nodes": { "stars": 234, "last_update": "2024-05-29 18:29:05", - "author_account_age_days": 1600 + "author_account_age_days": 1608 }, "https://github.com/Franck-Demongin/NX_HuggingFace_Flux": { "stars": 4, "last_update": "2024-08-14 02:17:21", - "author_account_age_days": 2128 + "author_account_age_days": 2136 }, "https://github.com/Franck-Demongin/NX_PromptStyler": { "stars": 9, "last_update": "2024-05-22 23:25:21", - "author_account_age_days": 2128 + "author_account_age_days": 2136 }, "https://github.com/Franck-Demongin/NX_Translator": { "stars": 1, "last_update": "2024-08-14 02:17:01", - "author_account_age_days": 2128 + "author_account_age_days": 2136 }, "https://github.com/FredBill1/comfyui-fb-utils": { "stars": 1, "last_update": "2025-03-14 08:09:14", - "author_account_age_days": 2674 + "author_account_age_days": 2681 }, "https://github.com/FunnyFinger/ComfyUi-RadarWeightNode": { "stars": 1, "last_update": "2025-04-22 09:12:55", - "author_account_age_days": 933 + "author_account_age_days": 940 }, "https://github.com/FunnyFinger/Dynamic_Sliders_stack": { "stars": 2, "last_update": "2025-04-22 10:00:31", - "author_account_age_days": 933 + "author_account_age_days": 940 }, "https://github.com/FuouM/ComfyUI-EbSynth": { "stars": 91, "last_update": "2025-03-30 06:30:52", - "author_account_age_days": 2038 + "author_account_age_days": 2046 }, "https://github.com/FuouM/ComfyUI-FirstOrderMM": { "stars": 5, "last_update": "2025-03-27 12:22:31", - "author_account_age_days": 2038 + "author_account_age_days": 2046 }, "https://github.com/FuouM/ComfyUI-MatAnyone": { "stars": 9, "last_update": "2025-03-24 03:43:48", - "author_account_age_days": 2038 + "author_account_age_days": 2046 }, "https://github.com/FuouM/ComfyUI-StyleTransferPlus": { "stars": 11, "last_update": "2025-03-27 12:15:58", - "author_account_age_days": 2038 + "author_account_age_days": 2046 }, "https://github.com/FuouM/FM_nodes": { "stars": 5, "last_update": "2025-03-27 12:16:55", - "author_account_age_days": 2038 + "author_account_age_days": 2046 }, "https://github.com/Fuwuffyi/ComfyUI-VisualArea-Nodes": { - "stars": 70, + "stars": 71, "last_update": "2024-11-05 17:00:49", - "author_account_age_days": 1519 + "author_account_age_days": 1527 }, "https://github.com/G-370/ComfyUI-SD3-Powerlab": { "stars": 20, "last_update": "2024-06-22 19:17:18", - "author_account_age_days": 1876 + "author_account_age_days": 1884 }, "https://github.com/GACLove/ComfyUI-Lightx2vWrapper": { - "stars": 2, + "stars": 5, "last_update": "2025-06-10 09:30:17", - "author_account_age_days": 3974 + "author_account_age_days": 3982 }, "https://github.com/GHOSTLXH/ComfyUI-Counternodes": { "stars": 10, "last_update": "2025-02-20 12:58:43", - "author_account_age_days": 2526 + "author_account_age_days": 2534 }, "https://github.com/GTSuya-Studio/ComfyUI-Gtsuya-Nodes": { "stars": 12, "last_update": "2024-05-22 21:31:52", - "author_account_age_days": 2913 + "author_account_age_days": 2921 }, "https://github.com/GadzoinksOfficial/comfyui_gprompts": { "stars": 0, "last_update": "2025-05-16 05:25:09", - "author_account_age_days": 513 + "author_account_age_days": 520 }, "https://github.com/GadzoinksOfficial/gadzoinks_ComfyUI": { "stars": 0, "last_update": "2025-05-12 09:51:17", - "author_account_age_days": 513 + "author_account_age_days": 520 }, "https://github.com/GamingDaveUk/daves_nodes": { "stars": 0, "last_update": "2025-02-22 06:22:19", - "author_account_age_days": 789 + "author_account_age_days": 796 }, "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes": { "stars": 13, "last_update": "2025-03-07 14:22:14", - "author_account_age_days": 4924 + "author_account_age_days": 4932 }, "https://github.com/GeekyGhost/ComfyUI-Geeky-Kokoro-TTS": { "stars": 31, "last_update": "2025-03-21 11:44:13", - "author_account_age_days": 1026 + "author_account_age_days": 1034 }, "https://github.com/GeekyGhost/ComfyUI-GeekyRemB": { "stars": 45, "last_update": "2025-04-09 05:27:46", - "author_account_age_days": 1026 + "author_account_age_days": 1034 }, "https://github.com/GentlemanHu/ComfyUI-SunoAI": { "stars": 19, "last_update": "2024-12-17 11:46:33", - "author_account_age_days": 2740 + "author_account_age_days": 2748 }, "https://github.com/GiusTex/ComfyUI-DiffusersImageOutpaint": { - "stars": 85, + "stars": 86, "last_update": "2025-05-20 10:59:38", - "author_account_age_days": 1022 + "author_account_age_days": 1030 }, "https://github.com/Goktug/comfyui-saveimage-plus": { "stars": 12, "last_update": "2024-11-13 06:03:10", - "author_account_age_days": 5289 + "author_account_age_days": 5296 }, "https://github.com/Goshe-nite/comfyui-gps-supplements": { "stars": 2, "last_update": "2025-05-14 20:52:22", - "author_account_age_days": 1017 + "author_account_age_days": 1025 }, "https://github.com/Gourieff/ComfyUI-ReActor": { - "stars": 605, + "stars": 619, "last_update": "2025-05-26 16:30:58", - "author_account_age_days": 1476 + "author_account_age_days": 1484 }, "https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR": { - "stars": 53, + "stars": 54, "last_update": "2025-02-24 07:15:35", - "author_account_age_days": 520 + "author_account_age_days": 527 }, "https://github.com/GraftingRayman/ComfyUI_GraftingRayman": { "stars": 61, "last_update": "2025-04-22 06:50:24", - "author_account_age_days": 520 + "author_account_age_days": 527 }, "https://github.com/GraftingRayman/ComfyUI_QueueTube": { "stars": 0, "last_update": "2025-01-08 20:59:13", - "author_account_age_days": 520 + "author_account_age_days": 527 }, "https://github.com/GrailGreg/images_base64": { "stars": 1, "last_update": "2025-05-13 07:12:00", - "author_account_age_days": 103 + "author_account_age_days": 111 }, "https://github.com/GreenLandisaLie/AuraSR-ComfyUI": { "stars": 184, "last_update": "2024-09-04 10:58:03", - "author_account_age_days": 1554 + "author_account_age_days": 1562 }, "https://github.com/GrenKain/PixelArt-Processing-Nodes-for-ComfyUI": { "stars": 7, "last_update": "2024-09-06 11:37:05", - "author_account_age_days": 2767 + "author_account_age_days": 2775 }, "https://github.com/GroxicTinch/EasyUI-ComfyUI": { "stars": 5, "last_update": "2025-05-16 07:54:32", - "author_account_age_days": 3302 + "author_account_age_days": 3309 }, "https://github.com/GrvBdgr/comfyui-negativewildcardsprocessor": { "stars": 1, "last_update": "2024-11-15 19:46:39", - "author_account_age_days": 229 + "author_account_age_days": 237 }, "https://github.com/Gue-e/ComfyUI-PanoCard": { "stars": 11, - "last_update": "2025-03-27 02:20:52", - "author_account_age_days": 2440 + "last_update": "2025-06-23 08:57:03", + "author_account_age_days": 2448 }, "https://github.com/Guillaume-Fgt/ComfyUI_StableCascadeLatentRatio": { "stars": 3, "last_update": "2024-06-14 08:59:42", - "author_account_age_days": 1837 + "author_account_age_days": 1845 }, "https://github.com/HAL41/ComfyUI-aichemy-nodes": { "stars": 4, "last_update": "2024-05-22 23:10:19", - "author_account_age_days": 3203 + "author_account_age_days": 3210 }, "https://github.com/HECer/ComfyUI-FilePathCreator": { "stars": 7, "last_update": "2025-04-17 16:32:12", - "author_account_age_days": 3337 + "author_account_age_days": 3345 }, "https://github.com/HJH-AILab/ComfyUI_CosyVoice2": { "stars": 3, "last_update": "2025-05-21 08:36:14", - "author_account_age_days": 126 + "author_account_age_days": 133 }, "https://github.com/HJH-AILab/ComfyUI_StableAnimator": { "stars": 16, "last_update": "2025-04-24 02:45:32", - "author_account_age_days": 126 + "author_account_age_days": 133 }, "https://github.com/HM-RunningHub/ComfyUI_RH_APICall": { - "stars": 60, + "stars": 63, "last_update": "2025-05-04 16:35:02", - "author_account_age_days": 186 + "author_account_age_days": 193 }, "https://github.com/HM-RunningHub/ComfyUI_RH_FramePack": { - "stars": 175, + "stars": 178, "last_update": "2025-05-05 18:32:28", - "author_account_age_days": 186 + "author_account_age_days": 193 }, "https://github.com/HM-RunningHub/ComfyUI_RH_OminiControl": { "stars": 136, "last_update": "2024-12-20 08:41:09", - "author_account_age_days": 186 + "author_account_age_days": 193 }, "https://github.com/HM-RunningHub/ComfyUI_RH_Step1XEdit": { "stars": 24, "last_update": "2025-04-30 17:12:58", - "author_account_age_days": 186 + "author_account_age_days": 193 }, "https://github.com/HM-RunningHub/ComfyUI_RH_UNO": { "stars": 51, "last_update": "2025-04-15 17:12:25", - "author_account_age_days": 186 + "author_account_age_days": 193 }, "https://github.com/Haiper-ai/ComfyUI-HaiperAI-API": { "stars": 13, "last_update": "2024-12-06 18:08:50", - "author_account_age_days": 1356 + "author_account_age_days": 1364 }, "https://github.com/HannibalP/comfyui-HannibalPack": { "stars": 1, "last_update": "2025-03-11 23:36:33", - "author_account_age_days": 2961 + "author_account_age_days": 2969 }, "https://github.com/Haoming02/comfyui-clear-screen": { "stars": 1, "last_update": "2025-03-14 06:47:03", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-diffusion-cg": { "stars": 99, "last_update": "2024-10-12 13:39:00", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-floodgate": { "stars": 31, "last_update": "2025-03-14 06:46:50", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-menu-anchor": { "stars": 3, "last_update": "2024-10-19 11:42:51", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-node-beautify": { "stars": 8, "last_update": "2025-03-14 06:46:56", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-old-photo-restoration": { - "stars": 46, + "stars": 47, "last_update": "2025-05-14 05:36:27", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-prompt-format": { "stars": 34, "last_update": "2024-09-20 04:29:03", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-resharpen": { "stars": 48, "last_update": "2024-08-20 05:21:20", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/Haoming02/comfyui-tab-handler": { "stars": 4, "last_update": "2024-09-09 09:20:58", - "author_account_age_days": 1688 + "author_account_age_days": 1696 }, "https://github.com/HavocsCall/comfyui_HavocsCall_Custom_Nodes": { "stars": 3, "last_update": "2025-06-07 18:56:34", - "author_account_age_days": 2271 + "author_account_age_days": 2279 }, "https://github.com/HaydenReeve/ComfyUI-Better-Strings": { "stars": 2, "last_update": "2025-03-27 12:41:28", - "author_account_age_days": 2599 + "author_account_age_days": 2606 }, "https://github.com/HeadshotPro/ComfyUI-HeadshotPro": { "stars": 1, "last_update": "2024-08-14 04:00:34", - "author_account_age_days": 711 + "author_account_age_days": 718 }, "https://github.com/HebelHuber/comfyui-enhanced-save-node": { "stars": 2, "last_update": "2024-06-14 08:59:28", - "author_account_age_days": 2681 + "author_account_age_days": 2688 }, "https://github.com/HellerCommaA/ComfyUI-VideoResolutions": { "stars": 1, "last_update": "2025-03-28 14:51:23", - "author_account_age_days": 4685 + "author_account_age_days": 4692 }, "https://github.com/Hellfiredragon/comfyui-image-manipulation": { "stars": 0, "last_update": "2025-02-17 23:25:53", - "author_account_age_days": 2092 + "author_account_age_days": 2100 }, "https://github.com/HelloVision/ComfyUI_HelloMeme": { - "stars": 363, - "last_update": "2025-06-12 10:49:20", - "author_account_age_days": 270 + "stars": 364, + "last_update": "2025-06-18 02:53:07", + "author_account_age_days": 277 }, "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes": { "stars": 2, "last_update": "2025-05-21 02:17:36", - "author_account_age_days": 3441 + "author_account_age_days": 3449 }, "https://github.com/Hiero207/ComfyUI-Hiero-Nodes": { "stars": 6, "last_update": "2024-08-14 01:25:26", - "author_account_age_days": 2055 + "author_account_age_days": 2063 + }, + "https://github.com/HighDoping/ComfyUI_ASSSSA": { + "stars": 0, + "last_update": "2025-06-21 02:05:12", + "author_account_age_days": 2535 }, "https://github.com/Holasyb918/Ghost2_Comfyui": { "stars": 3, "last_update": "2025-03-14 02:41:21", - "author_account_age_days": 992 + "author_account_age_days": 1000 }, "https://github.com/Hopping-Mad-Games/ComfyUI_LiteLLM": { "stars": 5, - "last_update": "2025-04-04 00:15:23", - "author_account_age_days": 545 + "last_update": "2025-06-17 23:52:49", + "author_account_age_days": 553 }, "https://github.com/HowToSD/ComfyUI-Data-Analysis": { - "stars": 16, + "stars": 17, "last_update": "2025-06-11 04:28:54", - "author_account_age_days": 532 + "author_account_age_days": 540 }, "https://github.com/HowToSD/ComfyUI-Pt-Wrapper": { "stars": 6, "last_update": "2025-06-11 04:48:46", - "author_account_age_days": 532 + "author_account_age_days": 540 }, "https://github.com/Hullabalo/ComfyUI-Loop": { "stars": 8, "last_update": "2025-05-01 15:26:44", - "author_account_age_days": 967 + "author_account_age_days": 975 }, "https://github.com/IDGallagher/ComfyUI-IG-Motion-I2V": { - "stars": 37, + "stars": 38, "last_update": "2024-09-30 10:38:22", - "author_account_age_days": 5838 + "author_account_age_days": 5845 }, "https://github.com/IDGallagher/ComfyUI-IG-Nodes": { "stars": 2, "last_update": "2025-05-13 08:37:57", - "author_account_age_days": 5838 + "author_account_age_days": 5845 }, "https://github.com/IDGallagher/MotionVideoSearch": { "stars": 12, "last_update": "2025-01-13 09:37:08", - "author_account_age_days": 5838 + "author_account_age_days": 5845 }, "https://github.com/IIs-fanta/ComfyUI-FANTA-GameBox": { "stars": 2, "last_update": "2025-06-04 09:43:26", - "author_account_age_days": 681 + "author_account_age_days": 689 }, "https://github.com/INuBq8/ComfyUI-NotificationBridge": { "stars": 0, "last_update": "2025-06-09 04:11:29", - "author_account_age_days": 238 + "author_account_age_days": 246 }, "https://github.com/ITurchenko/ComfyUI-SizeFromArray": { "stars": 0, "last_update": "2024-08-01 08:45:43", - "author_account_age_days": 4066 + "author_account_age_days": 4073 }, "https://github.com/IamCreateAI/Ruyi-Models": { "stars": 521, "last_update": "2025-01-20 12:21:40", - "author_account_age_days": 189 + "author_account_age_days": 197 }, "https://github.com/IcelandicCenterArtificialIntelligence/ComfyUI-SamplerSchedulerMetricsTester": { "stars": 1, "last_update": "2025-05-19 15:04:38", - "author_account_age_days": 385 + "author_account_age_days": 394 }, "https://github.com/Iemand005/ComfyUI-Touch-Gestures": { "stars": 3, "last_update": "2025-02-03 00:25:14", - "author_account_age_days": 1854 + "author_account_age_days": 1862 }, "https://github.com/Iemand005/ComfyUI-Touchpad-Gestures": { "stars": 2, "last_update": "2025-02-03 00:21:47", - "author_account_age_days": 1854 + "author_account_age_days": 1862 }, "https://github.com/IgalOgonov/ComfyUI_Simple_String_Repository": { "stars": 3, "last_update": "2024-12-28 20:21:22", - "author_account_age_days": 2586 + "author_account_age_days": 2594 }, "https://github.com/ImagineerNL/ComfyUI-IMGNR-Utils": { "stars": 0, "last_update": "2025-05-05 21:36:48", - "author_account_age_days": 1910 + "author_account_age_days": 1917 }, "https://github.com/ImagineerNL/ComfyUI-ToSVG-Potracer": { "stars": 10, "last_update": "2025-05-08 21:56:04", - "author_account_age_days": 1910 + "author_account_age_days": 1917 }, "https://github.com/Immac/ComfyUI-CoreVideoMocks": { "stars": 1, "last_update": "2025-03-17 20:21:25", - "author_account_age_days": 4536 + "author_account_age_days": 4543 }, "https://github.com/ImmortalPie/ComfyUI-PonySwitch": { "stars": 10, "last_update": "2025-03-27 12:49:04", - "author_account_age_days": 4179 + "author_account_age_days": 4187 }, "https://github.com/InceptionsAI/ComfyUI-RunComfy-Helper": { "stars": 2, "last_update": "2025-05-06 04:03:58", - "author_account_age_days": 887 + "author_account_age_days": 895 }, "https://github.com/InstantStudioAI/ComfyUI-InstantStudio": { "stars": 4, "last_update": "2025-03-25 06:19:54", - "author_account_age_days": 187 + "author_account_age_days": 195 }, "https://github.com/Intersection98/ComfyUI_MX_post_processing-nodes": { "stars": 13, "last_update": "2024-05-23 01:12:46", - "author_account_age_days": 2987 + "author_account_age_days": 2995 }, "https://github.com/Inzaniak/comfyui-ranbooru": { - "stars": 18, + "stars": 19, "last_update": "2024-05-22 23:12:23", - "author_account_age_days": 4266 + "author_account_age_days": 4274 }, "https://github.com/Irsalistic/comfyui-dam-object-extractor": { - "stars": 2, + "stars": 3, "last_update": "2025-05-13 11:10:44", - "author_account_age_days": 677 + "author_account_age_days": 684 }, "https://github.com/IsItDanOrAi/ComfyUI-Stereopsis": { "stars": 9, "last_update": "2024-09-21 21:39:11", - "author_account_age_days": 468 + "author_account_age_days": 476 }, "https://github.com/Isi-dev/ComfyUI-Animation_Nodes_and_Workflows": { - "stars": 27, + "stars": 28, "last_update": "2025-06-11 15:26:03", - "author_account_age_days": 1449 + "author_account_age_days": 1456 }, "https://github.com/Isi-dev/ComfyUI-Img2DrawingAssistants": { "stars": 18, "last_update": "2024-12-15 10:03:55", - "author_account_age_days": 1449 + "author_account_age_days": 1456 }, "https://github.com/Isi-dev/ComfyUI-Img2PaintingAssistant": { "stars": 10, "last_update": "2024-12-15 11:00:51", - "author_account_age_days": 1449 + "author_account_age_days": 1456 }, "https://github.com/Isi-dev/ComfyUI-UniAnimate-W": { - "stars": 174, + "stars": 175, "last_update": "2025-03-11 10:32:39", - "author_account_age_days": 1449 + "author_account_age_days": 1456 }, "https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows": { - "stars": 27, + "stars": 28, "last_update": "2025-06-11 15:26:03", - "author_account_age_days": 1449 + "author_account_age_days": 1456 }, "https://github.com/Isulion/ComfyUI_Isulion": { - "stars": 37, + "stars": 38, "last_update": "2025-05-03 12:21:05", - "author_account_age_days": 714 + "author_account_age_days": 722 }, "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": { - "stars": 182, + "stars": 183, "last_update": "2025-04-02 16:32:54", - "author_account_age_days": 768 + "author_account_age_days": 776 }, "https://github.com/IuvenisSapiens/ComfyUI_Qwen2-Audio-7B-Instruct-Int4": { "stars": 10, "last_update": "2025-04-02 16:35:52", - "author_account_age_days": 768 + "author_account_age_days": 776 }, "https://github.com/IuvenisSapiens/ComfyUI_Qwen2-VL-Instruct": { "stars": 98, "last_update": "2025-04-02 16:22:22", - "author_account_age_days": 768 + "author_account_age_days": 776 }, "https://github.com/JEONG-JIWOO/ComfyUI_Eugene_Nodes": { "stars": 2, "last_update": "2025-01-27 19:09:46", - "author_account_age_days": 2924 + "author_account_age_days": 2931 }, "https://github.com/JPS-GER/ComfyUI_JPS-Nodes": { - "stars": 73, + "stars": 74, "last_update": "2024-05-22 20:39:14", - "author_account_age_days": 672 + "author_account_age_days": 680 }, "https://github.com/JPrevots/ComfyUI-PhyCV": { "stars": 1, "last_update": "2025-02-21 11:36:11", - "author_account_age_days": 915 + "author_account_age_days": 923 }, "https://github.com/JTriggerFish/ComfyLatentTools": { "stars": 2, "last_update": "2025-05-06 21:07:17", - "author_account_age_days": 4356 + "author_account_age_days": 4363 }, "https://github.com/JackEllie/ComfyUI_AI_Assistant": { "stars": 24, "last_update": "2024-09-05 03:42:14", - "author_account_age_days": 928 + "author_account_age_days": 936 }, "https://github.com/Jacky-MYQ/comfyui-DataCleaning": { "stars": 5, "last_update": "2025-05-10 12:26:38", - "author_account_age_days": 700 + "author_account_age_days": 708 }, "https://github.com/Jacky-MYQ/comfyui-rgb2cmyk": { "stars": 2, "last_update": "2025-04-28 02:05:19", - "author_account_age_days": 700 + "author_account_age_days": 708 }, "https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node": { "stars": 0, "last_update": "2025-01-07 06:50:58", - "author_account_age_days": 1919 + "author_account_age_days": 1927 }, "https://github.com/Jannchie/ComfyUI-J": { "stars": 99, "last_update": "2025-04-07 09:03:24", - "author_account_age_days": 2910 + "author_account_age_days": 2918 }, "https://github.com/Jannled/owl-vit-comfyui": { "stars": 0, "last_update": "2025-05-20 00:41:53", - "author_account_age_days": 4035 + "author_account_age_days": 4043 }, "https://github.com/JaredTherriault/ComfyUI-JNodes": { - "stars": 68, + "stars": 69, "last_update": "2025-06-14 20:09:47", - "author_account_age_days": 3928 + "author_account_age_days": 3936 }, "https://github.com/Jash-Vora/ComfyUI-GarmentDiT": { "stars": 3, "last_update": "2025-01-04 08:22:14", - "author_account_age_days": 767 + "author_account_age_days": 775 }, "https://github.com/JcandZero/ComfyUI_GLM4Node": { "stars": 26, "last_update": "2024-05-22 23:12:46", - "author_account_age_days": 1047 + "author_account_age_days": 1055 }, "https://github.com/Jcd1230/rembg-comfyui-node": { - "stars": 167, + "stars": 168, "last_update": "2024-05-22 17:58:34", - "author_account_age_days": 5243 + "author_account_age_days": 5251 }, "https://github.com/JerryOrbachJr/ComfyUI-RandomSize": { "stars": 5, "last_update": "2024-08-25 18:35:55", - "author_account_age_days": 512 + "author_account_age_days": 520 }, "https://github.com/JettHu/ComfyUI-TCD": { "stars": 131, "last_update": "2024-07-31 13:50:21", - "author_account_age_days": 2715 + "author_account_age_days": 2722 }, "https://github.com/JettHu/ComfyUI_TGate": { "stars": 93, "last_update": "2024-09-24 02:15:59", - "author_account_age_days": 2715 + "author_account_age_days": 2722 }, "https://github.com/JiSenHua/ComfyUI-TD": { - "stars": 59, + "stars": 62, "last_update": "2025-04-20 16:24:26", - "author_account_age_days": 1101 + "author_account_age_days": 1108 }, "https://github.com/Jint8888/Comfyui_JTnodes": { "stars": 1, "last_update": "2025-04-22 16:23:53", - "author_account_age_days": 407 + "author_account_age_days": 415 }, "https://github.com/JoeNavark/comfyui_custom_sigma_editor": { "stars": 7, "last_update": "2025-05-11 18:00:22", - "author_account_age_days": 1205 + "author_account_age_days": 1213 }, "https://github.com/JohanK66/ComfyUI-WebhookImage": { "stars": 1, "last_update": "2025-03-10 19:38:53", - "author_account_age_days": 107 + "author_account_age_days": 115 }, "https://github.com/JohnDoeSmithee/ComfyUI-SoX-Mixdown": { "stars": 1, "last_update": "2025-01-26 22:42:52", - "author_account_age_days": 141 + "author_account_age_days": 149 }, "https://github.com/Jokimbe/ComfyUI-DrawThings-gRPC": { "stars": 9, - "last_update": "2025-06-14 02:40:55", - "author_account_age_days": 4738 + "last_update": "2025-06-24 00:47:34", + "author_account_age_days": 4745 }, "https://github.com/Jonseed/ComfyUI-Detail-Daemon": { - "stars": 735, + "stars": 743, "last_update": "2025-03-14 16:47:41", - "author_account_age_days": 2536 + "author_account_age_days": 2544 }, "https://github.com/Jordach/comfy-plasma": { "stars": 75, "last_update": "2024-05-22 18:08:28", - "author_account_age_days": 4869 + "author_account_age_days": 4877 }, "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling": { "stars": 12, "last_update": "2024-08-02 15:16:12", - "author_account_age_days": 3711 + "author_account_age_days": 3719 }, "https://github.com/JosephThomasParker/ComfyUI-DrawThingsWrapper": { "stars": 30, "last_update": "2025-02-04 21:14:38", - "author_account_age_days": 3527 + "author_account_age_days": 3534 }, "https://github.com/Julian-adv/WildDivide": { "stars": 17, "last_update": "2025-05-27 13:24:07", - "author_account_age_days": 695 + "author_account_age_days": 703 }, "https://github.com/JustLateNightAI/KeywordImageBlocker": { "stars": 0, "last_update": "2025-05-07 17:25:44", - "author_account_age_days": 237 + "author_account_age_days": 245 }, "https://github.com/JustinMatters/comfyUI-JMNodes": { "stars": 0, "last_update": "2025-01-04 14:57:58", - "author_account_age_days": 3128 + "author_account_age_days": 3135 }, "https://github.com/KAVVATARE/ComfyUI-Light-N-Color": { "stars": 1, "last_update": "2025-03-02 16:56:41", - "author_account_age_days": 4487 + "author_account_age_days": 4495 }, "https://github.com/KAVVATARE/ComfyUI_RightEyeDisparity": { "stars": 2, "last_update": "2025-05-23 19:32:04", - "author_account_age_days": 4487 + "author_account_age_days": 4495 }, "https://github.com/KERRY-YUAN/ComfyUI_Float_Animator": { - "stars": 2, + "stars": 3, "last_update": "2025-06-16 06:49:23", - "author_account_age_days": 1611 + "author_account_age_days": 1619 }, "https://github.com/KERRY-YUAN/ComfyUI_Simple_Executor": { "stars": 2, "last_update": "2025-04-09 03:25:32", - "author_account_age_days": 1611 + "author_account_age_days": 1619 }, "https://github.com/KERRY-YUAN/ComfyUI_Spark_TTS": { "stars": 2, "last_update": "2025-06-10 06:16:34", - "author_account_age_days": 1611 + "author_account_age_days": 1619 }, "https://github.com/KLL535/ComfyUI_PNGInfo_Sidebar": { "stars": 17, "last_update": "2025-02-16 13:11:48", - "author_account_age_days": 206 + "author_account_age_days": 214 }, "https://github.com/KLL535/ComfyUI_SimpleButcher": { - "stars": 5, + "stars": 6, "last_update": "2025-03-09 21:53:41", - "author_account_age_days": 206 + "author_account_age_days": 214 }, "https://github.com/Kangkang625/ComfyUI-paint-by-example": { "stars": 16, "last_update": "2024-05-22 22:20:27", - "author_account_age_days": 1271 + "author_account_age_days": 1278 + }, + "https://github.com/Kartel-ai/ComfyUI-8iPlayer": { + "stars": 48, + "last_update": "2025-06-20 07:54:00", + "author_account_age_days": 55 }, "https://github.com/Kayarte/AudioDriven-Latent-Space-Tools-for-ComfyUI": { "stars": 3, "last_update": "2025-06-15 22:39:14", - "author_account_age_days": 410 + "author_account_age_days": 418 }, "https://github.com/Kesin11/ComfyUI-list-filter": { "stars": 0, "last_update": "2025-03-28 04:00:03", - "author_account_age_days": 4903 + "author_account_age_days": 4911 }, "https://github.com/KewkLW/ComfyUI-kewky_tools": { "stars": 8, "last_update": "2025-05-11 21:55:10", - "author_account_age_days": 2044 + "author_account_age_days": 2052 }, "https://github.com/Kidev/ComfyUI-Fisheye-effects": { "stars": 16, "last_update": "2025-04-03 19:00:30", - "author_account_age_days": 4958 + "author_account_age_days": 4966 }, "https://github.com/Kinglord/ComfyUI_LoRA_Sidebar": { - "stars": 81, + "stars": 82, "last_update": "2025-04-27 08:48:53", - "author_account_age_days": 5247 + "author_account_age_days": 5255 }, "https://github.com/Kinglord/ComfyUI_Prompt_Gallery": { - "stars": 54, + "stars": 55, "last_update": "2024-09-24 21:58:55", - "author_account_age_days": 5247 + "author_account_age_days": 5255 }, "https://github.com/Kinglord/ComfyUI_Slider_Sidebar": { "stars": 40, "last_update": "2024-09-26 02:40:30", - "author_account_age_days": 5247 + "author_account_age_days": 5255 }, "https://github.com/KohakuBlueleaf/z-tipo-extension": { - "stars": 478, + "stars": 480, "last_update": "2025-06-10 16:57:54", - "author_account_age_days": 1985 + "author_account_age_days": 1993 }, "https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler": { - "stars": 208, + "stars": 209, "last_update": "2024-09-01 03:57:22", - "author_account_age_days": 1842 + "author_account_age_days": 1850 }, "https://github.com/Koishi-Star/Pyramid_Noise_For_Inference": { "stars": 6, "last_update": "2024-09-27 17:58:43", - "author_account_age_days": 1842 + "author_account_age_days": 1850 }, "https://github.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack": { "stars": 10, "last_update": "2024-11-24 15:55:30", - "author_account_age_days": 3547 + "author_account_age_days": 3555 }, "https://github.com/KoreTeknology/ComfyUI-Universal-Styler": { "stars": 62, "last_update": "2025-03-01 05:37:40", - "author_account_age_days": 3547 + "author_account_age_days": 3555 }, "https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet": { - "stars": 810, + "stars": 816, "last_update": "2025-03-05 03:01:28", - "author_account_age_days": 4073 + "author_account_age_days": 4081 }, "https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved": { - "stars": 3177, + "stars": 3181, "last_update": "2025-04-09 21:22:11", - "author_account_age_days": 4073 + "author_account_age_days": 4081 }, "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite": { - "stars": 1049, + "stars": 1059, "last_update": "2025-04-26 20:27:20", - "author_account_age_days": 4073 + "author_account_age_days": 4081 }, "https://github.com/Koushakur/ComfyUI-DenoiseChooser": { "stars": 4, "last_update": "2025-03-14 09:52:02", - "author_account_age_days": 1477 + "author_account_age_days": 1485 }, "https://github.com/KunmyonChoi/ComfyUI_S3_direct": { "stars": 0, "last_update": "2025-01-07 01:22:23", - "author_account_age_days": 5925 + "author_account_age_days": 5933 }, "https://github.com/Kurdknight/Kurdknight_comfycheck": { "stars": 4, "last_update": "2025-01-15 16:47:23", - "author_account_age_days": 868 + "author_account_age_days": 876 }, "https://github.com/KwaiVGI/ComfyUI-KLingAI-API": { "stars": 130, "last_update": "2025-05-06 06:25:51", - "author_account_age_days": 415 + "author_account_age_days": 423 }, "https://github.com/Ky11le/draw_tools": { "stars": 0, "last_update": "2025-05-14 05:35:47", - "author_account_age_days": 836 + "author_account_age_days": 844 }, "https://github.com/Ky11le/ygo_tools": { "stars": 0, "last_update": "2025-05-14 05:35:47", - "author_account_age_days": 836 + "author_account_age_days": 844 }, "https://github.com/KytraScript/ComfyUI_KytraWebhookHTTP": { "stars": 5, "last_update": "2024-05-23 00:21:43", - "author_account_age_days": 2136 + "author_account_age_days": 2144 }, "https://github.com/KytraScript/ComfyUI_MatAnyone_Kytra": { - "stars": 119, + "stars": 123, "last_update": "2025-03-16 18:58:58", - "author_account_age_days": 2136 + "author_account_age_days": 2144 }, "https://github.com/LAOGOU-666/ComfyUI-LG_HotReload": { - "stars": 197, - "last_update": "2025-05-27 15:25:26", - "author_account_age_days": 452 + "stars": 199, + "last_update": "2025-06-21 16:06:56", + "author_account_age_days": 459 }, "https://github.com/LAOGOU-666/ComfyUI_LG_FFT": { "stars": 8, "last_update": "2024-10-10 04:45:57", - "author_account_age_days": 452 + "author_account_age_days": 459 }, "https://github.com/LAOGOU-666/Comfyui-LG_GroupExecutor": { - "stars": 141, + "stars": 143, "last_update": "2025-05-31 17:36:04", - "author_account_age_days": 452 + "author_account_age_days": 459 }, "https://github.com/LAOGOU-666/Comfyui-LG_Relight": { - "stars": 181, - "last_update": "2025-05-25 13:30:13", - "author_account_age_days": 452 + "stars": 184, + "last_update": "2025-06-16 13:28:22", + "author_account_age_days": 459 }, "https://github.com/LAOGOU-666/Comfyui-Memory_Cleanup": { - "stars": 121, + "stars": 135, "last_update": "2025-04-09 16:45:10", - "author_account_age_days": 452 + "author_account_age_days": 459 }, "https://github.com/LAOGOU-666/Comfyui_LG_Tools": { - "stars": 132, + "stars": 140, "last_update": "2025-06-12 09:20:36", - "author_account_age_days": 452 + "author_account_age_days": 459 }, "https://github.com/LEv145/images-grid-comfy-plugin": { "stars": 182, "last_update": "2024-05-30 17:54:32", - "author_account_age_days": 2564 + "author_account_age_days": 2572 }, "https://github.com/LKbaba/ComfyUI-TuZi-Flux-Kontext": { - "stars": 12, - "last_update": "2025-06-11 15:02:33", - "author_account_age_days": 2845 + "stars": 14, + "last_update": "2025-06-19 03:37:53", + "author_account_age_days": 2853 }, "https://github.com/LaVie024/comfyui-lopi999-nodes": { - "stars": 2, - "last_update": "2025-06-13 18:03:25", - "author_account_age_days": 1914 + "stars": 3, + "last_update": "2025-06-21 19:21:07", + "author_account_age_days": 1922 }, "https://github.com/LamEmil/ComfyUI_ASCIIArtNode": { "stars": 1, "last_update": "2025-05-18 09:22:38", - "author_account_age_days": 258 + "author_account_age_days": 266 }, "https://github.com/LargeModGames/comfyui-smart-lora-downloader": { "stars": 1, "last_update": "2025-06-12 08:40:31", - "author_account_age_days": 1489 + "author_account_age_days": 1497 }, "https://github.com/LarryJane491/Image-Captioning-in-ComfyUI": { - "stars": 64, + "stars": 65, "last_update": "2024-06-06 20:45:43", - "author_account_age_days": 521 + "author_account_age_days": 528 }, "https://github.com/LarryJane491/Lora-Training-in-Comfy": { - "stars": 475, + "stars": 477, "last_update": "2024-08-05 11:32:30", - "author_account_age_days": 521 + "author_account_age_days": 528 }, "https://github.com/LatentRat/comfy_remote_run": { "stars": 6, "last_update": "2024-09-08 04:06:09", - "author_account_age_days": 1101 + "author_account_age_days": 1109 }, "https://github.com/LatentSpaceDirective/ComfyUI-Texturaizer": { "stars": 14, "last_update": "2025-01-19 14:21:04", - "author_account_age_days": 216 + "author_account_age_days": 224 }, "https://github.com/Laurent2916/comfyui-piq": { "stars": 0, "last_update": "2025-03-17 13:50:16", - "author_account_age_days": 3224 + "author_account_age_days": 3232 }, "https://github.com/Layer-norm/comfyui-lama-remover": { - "stars": 127, + "stars": 128, "last_update": "2024-08-03 04:18:39", - "author_account_age_days": 689 + "author_account_age_days": 697 }, "https://github.com/Legorobotdude/ComfyUI-VariationLab": { "stars": 1, "last_update": "2025-03-02 04:59:28", - "author_account_age_days": 3726 + "author_account_age_days": 3734 }, "https://github.com/Lerc/canvas_tab": { "stars": 188, "last_update": "2024-05-22 20:48:45", - "author_account_age_days": 5724 + "author_account_age_days": 5732 }, "https://github.com/LevelPixel/ComfyUI-LevelPixel": { "stars": 10, - "last_update": "2025-06-07 23:05:36", - "author_account_age_days": 339 + "last_update": "2025-06-22 02:10:16", + "author_account_age_days": 347 }, "https://github.com/LevelPixel/ComfyUI-LevelPixel-Advanced": { "stars": 4, "last_update": "2025-06-09 13:45:18", - "author_account_age_days": 339 + "author_account_age_days": 347 }, "https://github.com/Lhyejin/ComfyUI-Fill-Image-for-Outpainting": { "stars": 9, "last_update": "2024-08-26 00:40:09", - "author_account_age_days": 2959 + "author_account_age_days": 2967 }, "https://github.com/LiJT/ComfyUI-Gemini-Prompt-Generator-JT": { "stars": 4, "last_update": "2025-04-06 12:33:08", - "author_account_age_days": 3759 + "author_account_age_days": 3766 }, "https://github.com/Light-x02/ComfyUI-FluxSettingsNode": { "stars": 6, "last_update": "2025-04-28 21:45:01", - "author_account_age_days": 1134 + "author_account_age_days": 1142 }, "https://github.com/Light-x02/ComfyUI-Image-Metadata-Nodes": { "stars": 6, "last_update": "2025-05-01 18:14:59", - "author_account_age_days": 1134 + "author_account_age_days": 1142 }, "https://github.com/LightSketch-ai/ComfyUI-LivePortraitNode": { "stars": 2, "last_update": "2024-07-17 01:24:53", - "author_account_age_days": 341 + "author_account_age_days": 348 }, "https://github.com/Lightricks/ComfyUI-LTXVideo": { - "stars": 2064, - "last_update": "2025-05-14 17:12:03", - "author_account_age_days": 4547 + "stars": 2086, + "last_update": "2025-06-20 14:01:36", + "author_account_age_days": 4555 }, "https://github.com/Limbicnation/ComfyUI-TransparencyBackgroundRemover": { "stars": 5, "last_update": "2025-06-04 00:28:38", - "author_account_age_days": 4186 + "author_account_age_days": 4194 }, "https://github.com/Limbicnation/ComfyUIDepthEstimation": { - "stars": 12, + "stars": 13, "last_update": "2025-05-14 22:31:24", - "author_account_age_days": 4186 + "author_account_age_days": 4194 + }, + "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode": { + "stars": 1, + "last_update": "2025-06-23 01:32:50", + "author_account_age_days": 4194 }, "https://github.com/Limitex/ComfyUI-Calculation": { "stars": 0, "last_update": "2024-05-22 22:18:40", - "author_account_age_days": 1632 + "author_account_age_days": 1639 }, "https://github.com/Limitex/ComfyUI-Diffusers": { "stars": 170, "last_update": "2025-03-10 19:04:32", - "author_account_age_days": 1632 + "author_account_age_days": 1639 }, "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator": { "stars": 8, "last_update": "2025-06-02 02:45:04", - "author_account_age_days": 744 + "author_account_age_days": 751 }, "https://github.com/LingSss9/comfyui-merge": { "stars": 6, "last_update": "2025-06-01 17:27:49", - "author_account_age_days": 618 + "author_account_age_days": 626 }, "https://github.com/Loewen-Hob/rembg-comfyui-node-better": { "stars": 64, "last_update": "2025-04-07 09:09:34", - "author_account_age_days": 827 + "author_account_age_days": 835 }, "https://github.com/LonicaMewinsky/ComfyUI-MakeFrame": { "stars": 29, "last_update": "2024-05-22 21:29:02", - "author_account_age_days": 1332 + "author_account_age_days": 1340 }, "https://github.com/LonicaMewinsky/ComfyUI-RawSaver": { "stars": 3, "last_update": "2024-05-22 21:31:28", - "author_account_age_days": 1332 + "author_account_age_days": 1340 }, "https://github.com/LoveEatCandy/COMFYUI-ReplacePartOfImage": { "stars": 0, - "last_update": "2025-03-30 13:42:17", - "author_account_age_days": 2798 + "last_update": "2025-06-17 05:53:17", + "author_account_age_days": 2806 }, "https://github.com/LucipherDev/ComfyUI-AniDoc": { - "stars": 52, + "stars": 53, "last_update": "2025-03-28 18:39:10", - "author_account_age_days": 1854 + "author_account_age_days": 1861 }, "https://github.com/LucipherDev/ComfyUI-Golden-Noise": { "stars": 23, "last_update": "2025-03-28 18:38:24", - "author_account_age_days": 1854 + "author_account_age_days": 1861 }, "https://github.com/LucipherDev/ComfyUI-TangoFlux": { - "stars": 92, + "stars": 93, "last_update": "2025-03-28 18:39:16", - "author_account_age_days": 1854 + "author_account_age_days": 1861 }, "https://github.com/Ludobico/ComfyUI-ScenarioPrompt": { "stars": 17, "last_update": "2025-03-12 09:07:07", - "author_account_age_days": 1389 + "author_account_age_days": 1397 }, "https://github.com/LyazS/comfyui-anime-seg": { "stars": 10, "last_update": "2024-05-22 23:21:49", - "author_account_age_days": 3214 + "author_account_age_days": 3222 }, "https://github.com/LyazS/comfyui-nettools": { "stars": 5, "last_update": "2024-09-23 12:52:44", - "author_account_age_days": 3214 + "author_account_age_days": 3222 }, "https://github.com/M1kep/ComfyLiterals": { - "stars": 50, + "stars": 53, "last_update": "2024-05-22 20:31:38", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/ComfyUI-KepOpenAI": { "stars": 30, "last_update": "2024-08-20 16:33:57", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/ComfyUI-OtherVAEs": { "stars": 2, "last_update": "2024-05-22 20:33:41", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/Comfy_KepKitchenSink": { "stars": 0, "last_update": "2024-05-22 20:33:29", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/Comfy_KepListStuff": { "stars": 45, "last_update": "2024-06-22 00:51:28", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/Comfy_KepMatteAnything": { "stars": 11, "last_update": "2024-05-22 20:33:16", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/M1kep/KepPromptLang": { "stars": 6, "last_update": "2024-05-22 20:32:56", - "author_account_age_days": 4615 + "author_account_age_days": 4623 }, "https://github.com/MDMAchine/ComfyUI_MD_Nodes": { - "stars": 2, - "last_update": "2025-06-16 01:54:32", - "author_account_age_days": 2007 + "stars": 3, + "last_update": "2025-06-18 03:28:39", + "author_account_age_days": 2015 }, "https://github.com/MNeMoNiCuZ/ComfyUI-mnemic-nodes": { "stars": 62, "last_update": "2025-06-07 15:59:38", - "author_account_age_days": 1962 + "author_account_age_days": 1969 }, "https://github.com/Makeezi/ComfyUI-promptLAB": { "stars": 0, "last_update": "2024-05-23 01:24:51", - "author_account_age_days": 2139 + "author_account_age_days": 2146 }, "https://github.com/MakkiShizu/ComfyUI-Prompt-Wildcards": { "stars": 7, "last_update": "2025-06-14 10:33:54", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/MakkiShizu/ComfyUI-Qwen2_5-VL": { "stars": 3, "last_update": "2025-05-30 16:50:42", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/MakkiShizu/comfyui_reimgsize": { "stars": 5, "last_update": "2025-04-27 15:34:57", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/Mamaaaamooooo/batchImg-rembg-ComfyUI-nodes": { "stars": 28, "last_update": "2024-06-14 10:24:17", - "author_account_age_days": 739 + "author_account_age_days": 747 }, "https://github.com/ManglerFTW/ComfyI2I": { "stars": 173, "last_update": "2024-06-14 11:01:01", - "author_account_age_days": 1012 + "author_account_age_days": 1020 }, "https://github.com/MaraScott/ComfyUI_MaraScott_Nodes": { "stars": 151, "last_update": "2025-04-26 23:44:45", - "author_account_age_days": 5327 + "author_account_age_days": 5334 }, "https://github.com/MarcusNyne/m9-prompts-comfyui": { "stars": 1, "last_update": "2024-08-24 16:56:53", - "author_account_age_days": 1779 + "author_account_age_days": 1787 }, "https://github.com/MariusKM/ComfyUI-BadmanNodes": { "stars": 2, "last_update": "2024-12-30 15:36:09", - "author_account_age_days": 2587 + "author_account_age_days": 2595 }, "https://github.com/MarkoCa1/ComfyUI-Text": { "stars": 7, "last_update": "2024-12-16 09:48:49", - "author_account_age_days": 1990 + "author_account_age_days": 1998 }, "https://github.com/MarkoCa1/ComfyUI_Segment_Mask": { "stars": 22, "last_update": "2024-05-23 00:15:51", - "author_account_age_days": 1990 + "author_account_age_days": 1998 }, "https://github.com/Marksusu/ComfyUI_MTCLIPEncode": { "stars": 7, "last_update": "2025-05-07 13:56:23", - "author_account_age_days": 1065 + "author_account_age_days": 1073 }, "https://github.com/MaruPelkar/comfyui-conditioning-resizer": { - "stars": 0, + "stars": 1, "last_update": "2025-04-21 20:57:33", - "author_account_age_days": 3937 + "author_account_age_days": 3945 }, "https://github.com/Mason-McGough/ComfyUI-Mosaica": { "stars": 6, "last_update": "2024-08-26 20:42:35", - "author_account_age_days": 3562 + "author_account_age_days": 3570 }, "https://github.com/Mattabyte/ComfyUI-SecureApiCall": { "stars": 0, "last_update": "2025-03-07 23:55:55", - "author_account_age_days": 1964 + "author_account_age_days": 1972 + }, + "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": { + "stars": 1, + "last_update": "2025-06-20 17:31:54", + "author_account_age_days": 45 }, "https://github.com/McKlinton2/comfyui-mcklinton-pack": { "stars": 1, "last_update": "2025-05-31 18:41:13", - "author_account_age_days": 1136 + "author_account_age_days": 1144 }, "https://github.com/Mcmillian/ComfyUI-SimpleToolsNodes": { "stars": 0, "last_update": "2024-09-29 14:18:23", - "author_account_age_days": 3253 + "author_account_age_days": 3261 }, "https://github.com/MeeeyoAI/ComfyUI_StringOps": { - "stars": 75, + "stars": 76, "last_update": "2025-06-04 17:47:55", - "author_account_age_days": 114 + "author_account_age_days": 122 }, "https://github.com/Meettya/ComfyUI-OneForOne": { "stars": 2, "last_update": "2025-01-07 22:49:30", - "author_account_age_days": 5689 + "author_account_age_days": 5696 }, "https://github.com/MetaGLM/ComfyUI-ZhipuAI-Platform": { "stars": 5, "last_update": "2024-09-16 16:11:59", - "author_account_age_days": 636 + "author_account_age_days": 644 }, "https://github.com/MicheleGuidi/ComfyUI-Contextual-SAM2": { "stars": 5, "last_update": "2025-05-01 16:09:43", - "author_account_age_days": 1606 + "author_account_age_days": 1614 }, "https://github.com/MiddleKD/ComfyUI-denoise-mask-scheduler": { - "stars": 5, + "stars": 6, "last_update": "2024-11-07 12:35:00", - "author_account_age_days": 887 + "author_account_age_days": 895 }, "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper": { - "stars": 3, + "stars": 4, "last_update": "2024-08-01 06:47:24", - "author_account_age_days": 887 + "author_account_age_days": 895 }, "https://github.com/MiddleKD/ComfyUI-productfix": { - "stars": 9, + "stars": 10, "last_update": "2025-05-12 05:00:24", - "author_account_age_days": 887 + "author_account_age_days": 895 }, "https://github.com/MieMieeeee/ComfyUI-CaptionThis": { "stars": 57, "last_update": "2025-04-22 05:54:42", - "author_account_age_days": 1914 + "author_account_age_days": 1921 }, "https://github.com/MieMieeeee/ComfyUI-MieNodes": { - "stars": 47, + "stars": 49, "last_update": "2025-04-17 07:37:04", - "author_account_age_days": 1914 + "author_account_age_days": 1921 }, "https://github.com/MieMieeeee/ComfyUI-MinioConnector": { "stars": 3, "last_update": "2025-03-21 09:09:09", - "author_account_age_days": 1914 + "author_account_age_days": 1921 }, "https://github.com/MijnSpam/ComfyUI_SwapAndScale": { "stars": 0, "last_update": "2025-05-31 09:27:10", - "author_account_age_days": 905 + "author_account_age_days": 913 }, "https://github.com/MijnSpam/UploadToPushOver": { "stars": 1, "last_update": "2025-05-31 09:32:38", - "author_account_age_days": 905 + "author_account_age_days": 913 }, "https://github.com/MilitantHitchhiker/MilitantHitchhiker-SwitchbladePack": { "stars": 3, "last_update": "2024-10-06 07:46:05", - "author_account_age_days": 417 + "author_account_age_days": 425 }, "https://github.com/Mintbeer96/ComfyUI-KerasOCR": { "stars": 3, "last_update": "2024-07-24 16:39:41", - "author_account_age_days": 3534 + "author_account_age_days": 3542 }, "https://github.com/MinusZoneAI/ComfyUI-CogVideoX-MZ": { "stars": 105, "last_update": "2024-10-30 10:52:42", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ": { "stars": 11, "last_update": "2024-08-14 04:01:10", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ": { - "stars": 282, + "stars": 286, "last_update": "2024-08-16 18:57:07", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ": { - "stars": 583, + "stars": 588, "last_update": "2025-03-31 02:51:00", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-Prompt-MZ": { "stars": 115, "last_update": "2025-03-14 06:36:29", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-StylizePhoto-MZ": { "stars": 18, "last_update": "2024-05-23 01:13:32", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/MinusZoneAI/ComfyUI-TrainTools-MZ": { "stars": 58, "last_update": "2025-02-24 06:08:49", - "author_account_age_days": 422 + "author_account_age_days": 430 }, "https://github.com/Miosp/ComfyUI-FBCNN": { - "stars": 23, + "stars": 25, "last_update": "2025-02-24 20:53:32", - "author_account_age_days": 2873 + "author_account_age_days": 2880 }, "https://github.com/MitoshiroPJ/comfyui_slothful_attention": { "stars": 7, "last_update": "2024-05-22 22:09:15", - "author_account_age_days": 4325 + "author_account_age_days": 4332 }, "https://github.com/Miyuutsu/comfyui-save-vpred": { "stars": 4, "last_update": "2024-12-15 22:29:47", - "author_account_age_days": 3281 + "author_account_age_days": 3289 }, "https://github.com/MohammadAboulEla/ComfyUI-iTools": { - "stars": 155, + "stars": 157, "last_update": "2025-05-08 14:47:04", - "author_account_age_days": 1383 + "author_account_age_days": 1391 }, "https://github.com/MokkaBoss1/ComfyUI_Mokkaboss1": { "stars": 16, "last_update": "2025-06-08 11:06:37", - "author_account_age_days": 736 + "author_account_age_days": 744 }, "https://github.com/MontagenAI/ComfyUI-Montagen": { - "stars": 20, + "stars": 21, "last_update": "2025-05-29 10:43:37", - "author_account_age_days": 187 + "author_account_age_days": 194 }, "https://github.com/MoonGoblinDev/Civicomfy": { - "stars": 30, + "stars": 33, "last_update": "2025-06-10 15:38:45", - "author_account_age_days": 3160 + "author_account_age_days": 3168 }, "https://github.com/MoonHugo/ComfyUI-BAGEL-Hugo": { - "stars": 2, + "stars": 3, "last_update": "2025-06-04 08:48:11", - "author_account_age_days": 286 + "author_account_age_days": 293 }, "https://github.com/MoonHugo/ComfyUI-BiRefNet-Hugo": { - "stars": 295, + "stars": 301, "last_update": "2025-05-25 15:37:49", - "author_account_age_days": 286 + "author_account_age_days": 293 }, "https://github.com/MoonHugo/ComfyUI-FFmpeg": { - "stars": 77, + "stars": 81, "last_update": "2025-06-04 07:30:29", - "author_account_age_days": 286 + "author_account_age_days": 293 }, "https://github.com/MoonHugo/ComfyUI-StableAudioOpen": { - "stars": 26, + "stars": 27, "last_update": "2024-10-18 04:12:04", - "author_account_age_days": 286 + "author_account_age_days": 293 }, "https://github.com/Moooonet/ComfyUI-Align": { - "stars": 130, + "stars": 137, "last_update": "2025-05-12 09:40:03", - "author_account_age_days": 344 + "author_account_age_days": 351 }, "https://github.com/MrForExample/ComfyUI-3D-Pack": { - "stars": 3171, - "last_update": "2025-06-15 14:13:42", - "author_account_age_days": 1918 + "stars": 3193, + "last_update": "2025-06-19 11:10:43", + "author_account_age_days": 1926 }, "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved": { "stars": 547, "last_update": "2024-06-14 12:02:47", - "author_account_age_days": 1918 + "author_account_age_days": 1926 }, "https://github.com/MrSamSeen/ComfyUI_SSBeforeAfterNode": { "stars": 1, "last_update": "2025-05-25 01:55:29", - "author_account_age_days": 3948 + "author_account_age_days": 3956 }, "https://github.com/MrSamSeen/ComfyUI_SSStereoscope": { - "stars": 23, + "stars": 24, "last_update": "2025-04-27 11:44:51", - "author_account_age_days": 3948 + "author_account_age_days": 3956 }, "https://github.com/Munkyfoot/ComfyUI-TextOverlay": { - "stars": 33, + "stars": 34, "last_update": "2025-06-07 04:46:39", - "author_account_age_days": 3402 - }, - "https://github.com/MushroomFleet/DJZ-KokoroTTS": { - "stars": 4, - "last_update": "2025-03-18 21:01:40", - "author_account_age_days": 4078 - }, - "https://github.com/MushroomFleet/DJZ-Nodes": { - "stars": 47, - "last_update": "2025-06-10 23:20:24", - "author_account_age_days": 4078 - }, - "https://github.com/MushroomFleet/DJZ-Pedalboard": { - "stars": 1, - "last_update": "2025-02-15 12:48:45", - "author_account_age_days": 4078 - }, - "https://github.com/MushroomFleet/svg-suite": { - "stars": 5, - "last_update": "2025-05-28 14:59:56", - "author_account_age_days": 4078 + "author_account_age_days": 3410 }, "https://github.com/MuziekMagie/ComfyUI-Matchering": { "stars": 48, "last_update": "2024-07-23 14:39:52", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/MzMaXaM/ComfyUi-MzMaXaM": { "stars": 10, "last_update": "2025-06-01 16:34:55", - "author_account_age_days": 2095 + "author_account_age_days": 2103 }, "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes": { - "stars": 67, + "stars": 70, "last_update": "2024-08-19 12:52:20", - "author_account_age_days": 434 + "author_account_age_days": 441 }, "https://github.com/NMWave/ComfyUI-Nader-Tagging": { "stars": 2, "last_update": "2025-04-09 01:07:33", - "author_account_age_days": 935 + "author_account_age_days": 943 }, "https://github.com/NVIDIAGameWorks/ComfyUI-RTX-Remix": { "stars": 41, "last_update": "2025-06-04 21:48:12", - "author_account_age_days": 4037 + "author_account_age_days": 4045 }, "https://github.com/NakamuraShippo/ComfyUI-NS-ManySliders": { "stars": 4, "last_update": "2024-11-03 02:48:52", - "author_account_age_days": 719 + "author_account_age_days": 727 }, "https://github.com/NakamuraShippo/ComfyUI-NS-PromptList": { - "stars": 7, - "last_update": "2025-06-01 08:44:28", - "author_account_age_days": 719 + "stars": 8, + "last_update": "2025-06-21 08:50:06", + "author_account_age_days": 727 }, "https://github.com/NeoDroleDeGueule/comfyui-image-mixer": { "stars": 0, "last_update": "2025-06-11 16:54:15", - "author_account_age_days": 480 + "author_account_age_days": 488 }, "https://github.com/NeoGriever/ComfyUI-NeoGriever": { "stars": 2, "last_update": "2024-12-12 02:55:40", - "author_account_age_days": 4645 + "author_account_age_days": 4653 }, "https://github.com/NeonLightning/neonllama": { "stars": 1, - "last_update": "2025-06-14 12:02:32", - "author_account_age_days": 4573 + "last_update": "2025-06-20 22:49:39", + "author_account_age_days": 4581 }, "https://github.com/Nestorchik/NStor-ComfyUI-Translation": { "stars": 2, "last_update": "2024-06-14 10:25:32", - "author_account_age_days": 1681 + "author_account_age_days": 1689 }, "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin": { "stars": 34, "last_update": "2024-08-06 19:59:25", - "author_account_age_days": 450 + "author_account_age_days": 458 }, "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt": { "stars": 7, "last_update": "2024-08-14 02:16:43", - "author_account_age_days": 450 + "author_account_age_days": 458 }, "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON": { "stars": 2, "last_update": "2024-08-11 18:10:36", - "author_account_age_days": 450 + "author_account_age_days": 458 }, "https://github.com/NeuralSamurAI/Comfyui-Superprompt-Unofficial": { "stars": 68, "last_update": "2024-05-23 00:22:08", - "author_account_age_days": 450 + "author_account_age_days": 458 }, "https://github.com/Nevysha/ComfyUI-nevysha-top-menu": { "stars": 5, "last_update": "2024-05-23 00:17:31", - "author_account_age_days": 883 + "author_account_age_days": 891 }, "https://github.com/NguynHungNguyen/Segment-Bedroom-Interior": { "stars": 7, "last_update": "2024-10-17 13:22:19", - "author_account_age_days": 1014 + "author_account_age_days": 1022 }, "https://github.com/NicholasMcCarthy/ComfyUI_TravelSuite": { "stars": 15, "last_update": "2024-05-22 20:34:46", - "author_account_age_days": 5506 + "author_account_age_days": 5514 }, "https://github.com/Nikosis/ComfyUI-Nikosis-Nodes": { "stars": 1, "last_update": "2025-04-10 00:32:13", - "author_account_age_days": 2633 + "author_account_age_days": 2641 }, "https://github.com/Nikosis/ComfyUI-Nikosis-Preprocessors": { "stars": 2, "last_update": "2025-04-08 12:28:17", - "author_account_age_days": 2633 + "author_account_age_days": 2641 }, "https://github.com/NimaNzrii/comfyui-photoshop": { - "stars": 1112, + "stars": 1123, "last_update": "2025-05-17 18:02:00", - "author_account_age_days": 601 + "author_account_age_days": 609 }, "https://github.com/NimaNzrii/comfyui-popup_preview": { "stars": 35, "last_update": "2024-05-22 22:12:04", - "author_account_age_days": 601 + "author_account_age_days": 609 }, "https://github.com/Niutonian/ComfyUi-NoodleWebcam": { "stars": 32, "last_update": "2024-05-22 21:30:40", - "author_account_age_days": 1399 + "author_account_age_days": 1407 }, "https://github.com/Njbx/ComfyUI-LTX13B-Blockswap": { "stars": 6, "last_update": "2025-05-07 18:47:45", - "author_account_age_days": 1560 + "author_account_age_days": 1568 }, "https://github.com/Nlar/ComfyUI_CartoonSegmentation": { "stars": 16, "last_update": "2024-05-22 23:15:37", - "author_account_age_days": 4188 + "author_account_age_days": 4196 }, "https://github.com/Nojahhh/ComfyUI_GLM4_Wrapper": { "stars": 18, "last_update": "2025-05-08 10:35:48", - "author_account_age_days": 3177 + "author_account_age_days": 3184 }, "https://github.com/NotHarroweD/Harronode": { "stars": 5, "last_update": "2024-05-22 22:18:29", - "author_account_age_days": 2340 + "author_account_age_days": 2348 }, "https://github.com/Nourepide/ComfyUI-Allor": { - "stars": 259, + "stars": 260, "last_update": "2024-05-22 18:11:17", - "author_account_age_days": 3203 + "author_account_age_days": 3210 }, "https://github.com/Nuked88/ComfyUI-N-Nodes": { "stars": 221, "last_update": "2024-08-15 21:07:32", - "author_account_age_days": 4836 + "author_account_age_days": 4844 }, "https://github.com/Nuked88/ComfyUI-N-Sidebar": { "stars": 553, "last_update": "2025-06-04 18:29:26", - "author_account_age_days": 4836 + "author_account_age_days": 4844 }, "https://github.com/NyaamZ/ComfyUI-ImageGallery-ED": { "stars": 6, "last_update": "2025-05-28 15:22:04", - "author_account_age_days": 2474 + "author_account_age_days": 2481 }, "https://github.com/NyaamZ/efficiency-nodes-ED": { - "stars": 24, + "stars": 25, "last_update": "2025-05-28 16:54:38", - "author_account_age_days": 2474 + "author_account_age_days": 2481 }, "https://github.com/Off-Live/ComfyUI-off-suite": { "stars": 0, "last_update": "2024-06-14 12:02:25", - "author_account_age_days": 1529 + "author_account_age_days": 1537 }, "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery": { "stars": 34, "last_update": "2025-06-07 02:47:12", - "author_account_age_days": 310 + "author_account_age_days": 318 }, "https://github.com/OliverCrosby/Comfyui-Minimap": { - "stars": 96, + "stars": 97, "last_update": "2024-08-24 14:10:43", - "author_account_age_days": 2482 + "author_account_age_days": 2490 }, "https://github.com/OpalSky-AI/OpalSky_Nodes": { "stars": 2, "last_update": "2024-10-27 20:13:40", - "author_account_age_days": 2092 + "author_account_age_days": 2100 }, "https://github.com/OpenArt-AI/ComfyUI-Assistant": { "stars": 20, "last_update": "2024-05-22 22:16:57", - "author_account_age_days": 1132 + "author_account_age_days": 1140 }, "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex": { "stars": 0, "last_update": "2024-08-14 04:00:49", - "author_account_age_days": 2890 + "author_account_age_days": 2898 }, "https://github.com/PCMonsterx/ComfyUI-CSV-Loader": { "stars": 16, "last_update": "2025-03-14 12:21:40", - "author_account_age_days": 2022 + "author_account_age_days": 2030 }, "https://github.com/Pablerdo/ComfyUI-MultiCutAndDrag": { "stars": 3, "last_update": "2025-03-22 01:25:55", - "author_account_age_days": 3157 + "author_account_age_days": 3165 }, "https://github.com/Pablerdo/ComfyUI-ResizeZeptaPayload": { "stars": 1, "last_update": "2025-03-29 00:39:01", - "author_account_age_days": 3157 + "author_account_age_days": 3165 }, "https://github.com/Pablerdo/ComfyUI-StableVirtualCameraWrapper": { "stars": 1, "last_update": "2025-04-19 09:40:38", - "author_account_age_days": 3157 + "author_account_age_days": 3165 }, "https://github.com/Pablerdo/ComfyUI-ZeptaframePromptMerger": { "stars": 1, "last_update": "2025-03-21 17:42:55", - "author_account_age_days": 3157 + "author_account_age_days": 3165 }, "https://github.com/PanicTitan/ComfyUI-Fooocus-V2-Expansion": { - "stars": 7, + "stars": 8, "last_update": "2025-05-09 22:51:17", - "author_account_age_days": 1842 + "author_account_age_days": 1850 }, "https://github.com/PanicTitan/ComfyUI-Gallery": { - "stars": 29, - "last_update": "2025-06-15 01:44:11", - "author_account_age_days": 1842 + "stars": 30, + "last_update": "2025-06-24 02:36:08", + "author_account_age_days": 1850 }, "https://github.com/Parameshvadivel/ComfyUI-SVGview": { "stars": 1, "last_update": "2024-07-31 13:40:33", - "author_account_age_days": 3185 + "author_account_age_days": 3192 }, "https://github.com/ParisNeo/lollms_nodes_suite": { "stars": 11, "last_update": "2025-03-12 07:36:41", - "author_account_age_days": 5126 + "author_account_age_days": 5134 }, "https://github.com/ParmanBabra/ComfyUI-Malefish-Custom-Scripts": { "stars": 0, "last_update": "2024-05-22 21:26:35", - "author_account_age_days": 4000 + "author_account_age_days": 4007 }, "https://github.com/PauldeLavallaz/comfyui_claude_prompt_generator": { "stars": 0, "last_update": "2025-03-18 17:38:28", - "author_account_age_days": 2200 + "author_account_age_days": 2208 }, "https://github.com/PenguinTeo/Comfyui-TextEditor-Penguin": { "stars": 1, "last_update": "2025-06-04 14:38:13", - "author_account_age_days": 331 + "author_account_age_days": 339 }, "https://github.com/Pfaeff/pfaeff-comfyui": { - "stars": 21, + "stars": 22, "last_update": "2024-05-22 18:21:10", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/Phando/ComfyUI-PhandoNodes": { "stars": 0, "last_update": "2024-09-05 16:12:24", - "author_account_age_days": 5582 + "author_account_age_days": 5590 }, "https://github.com/Pheat-AI/Remade_nodes": { "stars": 3, "last_update": "2024-10-18 00:04:58", - "author_account_age_days": 390 + "author_account_age_days": 398 }, "https://github.com/PiggyDance/ComfyUI_OpenCV": { "stars": 0, "last_update": "2025-03-24 10:02:49", - "author_account_age_days": 2744 + "author_account_age_days": 2751 }, "https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-SaveMP3": { "stars": 0, "last_update": "2025-06-01 16:35:20", - "author_account_age_days": 246 + "author_account_age_days": 254 }, "https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-UI": { "stars": 0, "last_update": "2025-06-05 19:20:04", - "author_account_age_days": 246 + "author_account_age_days": 254 }, "https://github.com/PixelFunAI/ComfyUI_PixelFun": { "stars": 3, "last_update": "2025-01-20 05:44:54", - "author_account_age_days": 147 + "author_account_age_days": 155 }, "https://github.com/PixelML/ComfyUI-PixelML-CustomNodes": { "stars": 0, "last_update": "2025-01-20 06:40:21", - "author_account_age_days": 467 + "author_account_age_days": 475 }, "https://github.com/PnthrLeo/comfyUI-PL-data-tools": { "stars": 1, "last_update": "2024-12-03 13:39:28", - "author_account_age_days": 2908 + "author_account_age_days": 2916 }, "https://github.com/Poseidon-fan/ComfyUI-RabbitMQ-Publisher": { "stars": 2, "last_update": "2024-11-07 08:59:23", - "author_account_age_days": 939 + "author_account_age_days": 947 }, "https://github.com/Positliver/comfyui-zegr": { "stars": 1, "last_update": "2025-01-26 11:51:59", - "author_account_age_days": 3749 + "author_account_age_days": 3756 }, "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait": { - "stars": 2400, + "stars": 2416, "last_update": "2024-08-21 06:14:24", - "author_account_age_days": 320 + "author_account_age_days": 328 }, "https://github.com/PressWagon/ComfyUI-StringsAndThings": { "stars": 2, "last_update": "2025-05-18 12:01:37", - "author_account_age_days": 182 + "author_account_age_days": 190 }, "https://github.com/ProGamerGov/ComfyUI_preview360panorama": { - "stars": 54, + "stars": 55, "last_update": "2025-05-25 19:26:43", - "author_account_age_days": 3799 + "author_account_age_days": 3807 }, "https://github.com/ProGamerGov/ComfyUI_pytorch360convert": { "stars": 12, "last_update": "2025-02-27 20:23:27", - "author_account_age_days": 3799 + "author_account_age_days": 3807 }, "https://github.com/PrunaAI/ComfyUI_pruna": { - "stars": 60, + "stars": 61, "last_update": "2025-06-06 09:08:03", - "author_account_age_days": 1005 + "author_account_age_days": 1013 }, "https://github.com/Pseudotools/Pseudocomfy": { "stars": 1, "last_update": "2025-06-09 04:22:06", - "author_account_age_days": 627 + "author_account_age_days": 635 }, "https://github.com/Q-Bug4/Comfyui-Qb-DateNodes": { "stars": 1, "last_update": "2024-11-03 01:52:39", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/Q-Bug4/Comfyui-Simple-Json-Node": { "stars": 5, "last_update": "2025-03-27 12:51:03", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/Q-Bug4/comfyui-qbug-batch": { "stars": 2, "last_update": "2025-04-13 03:05:36", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/QaisMalkawi/ComfyUI-QaisHelper": { "stars": 2, "last_update": "2024-05-23 20:29:30", - "author_account_age_days": 1607 + "author_account_age_days": 1615 }, "https://github.com/QijiTec/ComfyUI-RED-UNO": { "stars": 25, "last_update": "2025-04-21 01:07:24", - "author_account_age_days": 820 + "author_account_age_days": 828 }, "https://github.com/R5-Revo/llm-node-comfyui": { "stars": 6, "last_update": "2025-05-24 03:55:35", - "author_account_age_days": 155 + "author_account_age_days": 163 }, "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive": { "stars": 4, "last_update": "2024-08-12 15:55:42", - "author_account_age_days": 4289 + "author_account_age_days": 4296 }, "https://github.com/Ravenmelt/ComfyUI-Rodin": { "stars": 23, "last_update": "2025-05-07 13:29:25", - "author_account_age_days": 2432 + "author_account_age_days": 2439 }, "https://github.com/Raykosan/ComfyUI_RS-SaturationNode": { "stars": 8, "last_update": "2025-04-12 10:38:46", - "author_account_age_days": 1737 + "author_account_age_days": 1745 }, "https://github.com/Raykosan/ComfyUI_RaykoStudio": { "stars": 7, "last_update": "2025-04-12 10:21:00", - "author_account_age_days": 1737 + "author_account_age_days": 1745 }, "https://github.com/RaymondProduction/comfyui-zerna-pack": { "stars": 0, "last_update": "2025-03-26 16:10:15", - "author_account_age_days": 3283 + "author_account_age_days": 3290 }, "https://github.com/ReBeating/ComfyUI-Artist-Selector": { "stars": 1, "last_update": "2025-02-10 15:39:41", - "author_account_age_days": 1735 + "author_account_age_days": 1743 }, "https://github.com/Reithan/negative_rejection_steering": { - "stars": 6, + "stars": 7, "last_update": "2025-04-14 05:14:35", - "author_account_age_days": 4061 + "author_account_age_days": 4069 }, "https://github.com/RenderRift/ComfyUI-RenderRiftNodes": { "stars": 7, "last_update": "2024-05-22 22:16:41", - "author_account_age_days": 543 + "author_account_age_days": 551 }, "https://github.com/RhizoNymph/ComfyUI-CLIPSlider": { "stars": 9, "last_update": "2024-09-07 19:47:02", - "author_account_age_days": 1524 + "author_account_age_days": 1532 }, "https://github.com/RhizoNymph/ComfyUI-ColorWheel": { "stars": 1, "last_update": "2024-10-13 06:26:51", - "author_account_age_days": 1524 + "author_account_age_days": 1532 }, "https://github.com/RhizoNymph/ComfyUI-Latte": { "stars": 3, "last_update": "2024-08-11 07:25:04", - "author_account_age_days": 1524 + "author_account_age_days": 1532 }, "https://github.com/RiceRound/ComfyUI_CryptoCat": { - "stars": 88, - "last_update": "2025-04-28 01:17:09", - "author_account_age_days": 261 + "stars": 89, + "last_update": "2025-06-19 04:14:31", + "author_account_age_days": 269 }, "https://github.com/RiceRound/ComfyUI_RiceRound": { "stars": 17, "last_update": "2025-03-18 07:31:16", - "author_account_age_days": 261 + "author_account_age_days": 269 }, "https://github.com/Rinsanga1/comfyui-florence2xy": { "stars": 0, "last_update": "2025-06-14 09:29:44", - "author_account_age_days": 508 + "author_account_age_days": 516 }, "https://github.com/RodrigoSKohl/ComfyUI-Panoramic-ImgStitcher": { "stars": 6, "last_update": "2025-06-09 23:34:07", - "author_account_age_days": 1105 + "author_account_age_days": 1113 }, "https://github.com/RodrigoSKohl/InteriorDesign-for-ComfyUI": { "stars": 8, "last_update": "2025-05-14 04:26:55", - "author_account_age_days": 1105 + "author_account_age_days": 1113 }, "https://github.com/RodrigoSKohl/comfyui-tryoff-anyone": { "stars": 21, "last_update": "2025-04-14 03:36:22", - "author_account_age_days": 1105 + "author_account_age_days": 1113 }, "https://github.com/RomanKuschanow/ComfyUI-Advanced-Latent-Control": { "stars": 21, "last_update": "2025-03-27 17:57:44", - "author_account_age_days": 1738 + "author_account_age_days": 1746 }, "https://github.com/Ron-Digital/ComfyUI-SceneGenerator": { "stars": 3, "last_update": "2024-06-28 19:36:30", - "author_account_age_days": 1286 + "author_account_age_days": 1294 }, "https://github.com/Runware/ComfyUI-Runware": { - "stars": 90, - "last_update": "2025-06-16 12:12:16", - "author_account_age_days": 557 + "stars": 91, + "last_update": "2025-06-18 12:05:09", + "author_account_age_days": 564 }, "https://github.com/Ryuukeisyou/ComfyUI-SyncTalk": { "stars": 39, "last_update": "2024-09-12 11:54:59", - "author_account_age_days": 2769 + "author_account_age_days": 2777 }, "https://github.com/Ryuukeisyou/comfyui_face_parsing": { - "stars": 165, + "stars": 166, "last_update": "2025-02-18 09:22:52", - "author_account_age_days": 2769 + "author_account_age_days": 2777 }, "https://github.com/Ryuukeisyou/comfyui_io_helpers": { "stars": 1, "last_update": "2024-07-13 13:10:10", - "author_account_age_days": 2769 + "author_account_age_days": 2777 }, "https://github.com/S4MUEL-404/ComfyUI-Image-Position-Blend": { "stars": 0, "last_update": "2025-03-06 14:05:23", - "author_account_age_days": 3444 + "author_account_age_days": 3451 }, "https://github.com/S4MUEL-404/ComfyUI-Prompts-Selector": { "stars": 0, "last_update": "2025-03-07 03:24:19", - "author_account_age_days": 3444 + "author_account_age_days": 3451 }, "https://github.com/S4MUEL-404/ComfyUI-S4Tool-Image-Overlay": { "stars": 0, "last_update": "2025-03-10 14:16:35", - "author_account_age_days": 3444 + "author_account_age_days": 3451 }, "https://github.com/S4MUEL-404/ComfyUI-Text-On-Image": { "stars": 7, "last_update": "2025-03-10 11:48:19", - "author_account_age_days": 3444 + "author_account_age_days": 3451 }, "https://github.com/SEkINVR/ComfyUI-SaveAs": { "stars": 6, "last_update": "2024-08-19 01:06:16", - "author_account_age_days": 1014 + "author_account_age_days": 1022 }, "https://github.com/SKBv0/ComfyUI_SKBundle": { "stars": 37, "last_update": "2025-04-20 11:56:08", - "author_account_age_days": 1912 + "author_account_age_days": 1920 }, "https://github.com/SLAPaper/ComfyUI-Image-Selector": { - "stars": 94, + "stars": 96, "last_update": "2025-03-16 12:13:46", - "author_account_age_days": 4054 + "author_account_age_days": 4062 }, "https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler": { "stars": 12, "last_update": "2025-03-16 12:13:59", - "author_account_age_days": 4054 + "author_account_age_days": 4062 }, "https://github.com/SOELexicon/ComfyUI-LexMSDBNodes": { "stars": 4, "last_update": "2025-03-12 00:17:50", - "author_account_age_days": 4440 + "author_account_age_days": 4448 }, "https://github.com/SOELexicon/ComfyUI-LexTools": { "stars": 30, "last_update": "2025-03-28 10:50:35", - "author_account_age_days": 4440 + "author_account_age_days": 4448 }, "https://github.com/SS-snap/ComfyUI-Ad_scheduler": { "stars": 6, "last_update": "2025-04-25 04:53:31", - "author_account_age_days": 657 + "author_account_age_days": 664 }, "https://github.com/SS-snap/ComfyUI-LBW_flux": { "stars": 3, "last_update": "2025-04-25 04:47:47", - "author_account_age_days": 657 + "author_account_age_days": 664 }, "https://github.com/SS-snap/ComfyUI-Snap_Processing": { "stars": 61, "last_update": "2025-04-25 04:54:44", - "author_account_age_days": 657 + "author_account_age_days": 664 }, "https://github.com/SS-snap/Comfyui_SSsnap_pose-Remapping": { "stars": 21, - "last_update": "2025-05-09 08:13:38", - "author_account_age_days": 657 + "last_update": "2025-06-18 07:25:25", + "author_account_age_days": 664 }, "https://github.com/SXQBW/ComfyUI-Qwen": { "stars": 6, "last_update": "2025-05-26 05:01:41", - "author_account_age_days": 3149 + "author_account_age_days": 3157 }, "https://github.com/SXQBW/ComfyUI-Qwen-Omni": { - "stars": 19, + "stars": 20, "last_update": "2025-06-08 07:53:11", - "author_account_age_days": 3149 + "author_account_age_days": 3157 }, "https://github.com/SXQBW/ComfyUI-Qwen-VL": { "stars": 7, "last_update": "2025-05-26 06:11:20", - "author_account_age_days": 3149 + "author_account_age_days": 3157 }, "https://github.com/SamKhoze/ComfyUI-DeepFuze": { - "stars": 406, + "stars": 407, "last_update": "2024-11-22 19:28:20", - "author_account_age_days": 1800 + "author_account_age_days": 1808 }, "https://github.com/SamTyurenkov/comfyui_chatgpt": { "stars": 0, "last_update": "2025-06-16 12:18:20", - "author_account_age_days": 3318 + "author_account_age_days": 3327 }, "https://github.com/San4itos/ComfyUI-Save-Images-as-Video": { "stars": 1, "last_update": "2025-05-18 12:37:15", - "author_account_age_days": 1938 + "author_account_age_days": 1946 }, "https://github.com/SanDiegoDude/ComfyUI-DeepStereo": { "stars": 2, "last_update": "2025-05-26 22:46:39", - "author_account_age_days": 988 + "author_account_age_days": 996 }, "https://github.com/SanDiegoDude/ComfyUI-Kontext-API": { "stars": 7, - "last_update": "2025-06-15 18:47:50", - "author_account_age_days": 988 + "last_update": "2025-06-18 16:41:48", + "author_account_age_days": 996 }, "https://github.com/SanDiegoDude/ComfyUI-SaveAudioMP3": { "stars": 3, "last_update": "2025-05-07 23:48:49", - "author_account_age_days": 988 + "author_account_age_days": 996 }, "https://github.com/Santodan/santodan-custom-nodes-comfyui": { "stars": 0, "last_update": "2025-06-11 11:43:21", - "author_account_age_days": 3052 + "author_account_age_days": 3060 }, "https://github.com/SayanoAI/Comfy-RVC": { "stars": 22, "last_update": "2024-10-09 04:08:31", - "author_account_age_days": 2960 + "author_account_age_days": 2968 }, "https://github.com/Sayene/comfyui-base64-to-image-size": { "stars": 0, "last_update": "2025-05-15 12:33:33", - "author_account_age_days": 4037 + "author_account_age_days": 4045 }, "https://github.com/Scholar01/ComfyUI-Keyframe": { "stars": 16, "last_update": "2025-01-22 04:09:29", - "author_account_age_days": 3553 + "author_account_age_days": 3561 }, "https://github.com/Scorpinaus/ComfyUI-DiffusersLoader": { "stars": 16, "last_update": "2024-08-26 14:51:47", - "author_account_age_days": 1467 + "author_account_age_days": 1475 }, "https://github.com/ScreamingHawk/comfyui-ollama-prompt-encode": { "stars": 11, "last_update": "2024-11-29 21:51:05", - "author_account_age_days": 4863 + "author_account_age_days": 4870 }, "https://github.com/SeaArtLab/ComfyUI-Long-CLIP": { - "stars": 150, + "stars": 151, "last_update": "2025-03-08 04:16:32", - "author_account_age_days": 434 + "author_account_age_days": 441 }, "https://github.com/SeanScripts/ComfyUI-PixtralLlamaMolmoVision": { "stars": 75, "last_update": "2025-01-31 09:01:23", - "author_account_age_days": 1877 + "author_account_age_days": 1885 }, "https://github.com/SeanScripts/ComfyUI-Unload-Model": { - "stars": 48, + "stars": 50, "last_update": "2025-06-13 04:22:23", - "author_account_age_days": 1877 + "author_account_age_days": 1885 }, "https://github.com/SeargeDP/ComfyUI_Searge_LLM": { - "stars": 103, + "stars": 104, "last_update": "2024-09-04 09:04:18", - "author_account_age_days": 4528 + "author_account_age_days": 4536 }, "https://github.com/SeargeDP/SeargeSDXL": { - "stars": 846, + "stars": 847, "last_update": "2024-05-22 00:28:26", - "author_account_age_days": 4528 + "author_account_age_days": 4536 }, "https://github.com/Seedsa/Fooocus_Nodes": { - "stars": 95, + "stars": 96, "last_update": "2025-01-08 07:57:28", - "author_account_age_days": 2965 + "author_account_age_days": 2973 }, "https://github.com/Sekiun/ComfyUI-WebpToPNGSequence": { "stars": 3, "last_update": "2025-04-15 12:40:47", - "author_account_age_days": 1828 + "author_account_age_days": 1836 }, "https://github.com/Semper-Sursum/HF-Flux-ComfyUI": { "stars": 1, "last_update": "2025-03-29 17:35:11", - "author_account_age_days": 146 + "author_account_age_days": 154 }, "https://github.com/ServiceStack/comfy-asset-downloader": { "stars": 7, "last_update": "2025-05-08 16:21:02", - "author_account_age_days": 5242 + "author_account_age_days": 5250 }, "https://github.com/Shadetail/ComfyUI_Eagleshadow": { "stars": 4, "last_update": "2025-03-08 20:09:28", - "author_account_age_days": 3754 + "author_account_age_days": 3762 }, "https://github.com/Shakker-Labs/ComfyUI-IPAdapter-Flux": { - "stars": 398, - "last_update": "2025-05-16 08:00:58", - "author_account_age_days": 206 + "stars": 402, + "last_update": "2025-06-22 08:50:25", + "author_account_age_days": 214 }, "https://github.com/Shannooty/ComfyUI-Timer-Nodes": { "stars": 3, "last_update": "2024-12-17 09:20:49", - "author_account_age_days": 1654 + "author_account_age_days": 1661 }, "https://github.com/SherryXieYuchen/ComfyUI-Image-Inpainting": { "stars": 4, "last_update": "2024-07-03 03:39:49", - "author_account_age_days": 472 + "author_account_age_days": 480 + }, + "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL": { + "stars": 0, + "last_update": "2025-06-24 03:54:19", + "author_account_age_days": 751 }, "https://github.com/Shiba-2-shiba/ComfyUI_DiffusionModel_fp8_converter": { - "stars": 22, + "stars": 23, "last_update": "2025-02-18 07:36:09", - "author_account_age_days": 743 + "author_account_age_days": 751 }, "https://github.com/Shiba-2-shiba/ComfyUI_FreeU_V2_timestepadd": { "stars": 0, "last_update": "2025-03-02 00:15:45", - "author_account_age_days": 743 + "author_account_age_days": 751 }, "https://github.com/Shiba-2-shiba/comfyui-color-ascii-art-node": { "stars": 3, "last_update": "2025-06-13 08:51:55", - "author_account_age_days": 743 + "author_account_age_days": 751 }, "https://github.com/Shibiko-AI/ShibikoAI-ComfyUI-Tools": { "stars": 10, "last_update": "2025-04-23 04:49:00", - "author_account_age_days": 759 + "author_account_age_days": 767 }, "https://github.com/ShinChven/sc-comfy-nodes": { "stars": 1, "last_update": "2025-05-21 03:07:18", - "author_account_age_days": 4527 + "author_account_age_days": 4534 }, "https://github.com/ShmuelRonen/ComfyUI-Apply_Style_Model_Adjust": { "stars": 9, "last_update": "2024-11-23 03:57:20", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-AstralAnimator": { "stars": 18, "last_update": "2024-07-18 12:41:22", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Audio_Quality_Enhancer": { "stars": 10, "last_update": "2025-05-11 20:53:31", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-CohernetVideoSampler": { "stars": 17, "last_update": "2024-12-23 10:54:08", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-DeepSeek_R1-Chat": { "stars": 18, "last_update": "2025-01-27 17:14:24", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-EmptyHunyuanLatent": { "stars": 8, "last_update": "2024-12-29 05:30:57", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-FramePackWrapper_Plus": { - "stars": 88, + "stars": 92, "last_update": "2025-05-19 21:10:06", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-FreeMemory": { - "stars": 106, + "stars": 108, "last_update": "2025-03-20 11:25:12", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-FreeVC_wrapper": { "stars": 63, "last_update": "2025-04-03 13:49:04", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Gemini_Flash_2.0_Exp": { - "stars": 300, + "stars": 302, "last_update": "2025-04-22 17:30:51", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Gemini_TTS": { "stars": 14, "last_update": "2025-05-23 14:21:58", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave": { "stars": 19, "last_update": "2025-02-05 19:26:18", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoStyler": { "stars": 43, "last_update": "2024-12-31 19:19:42", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-ImageMotionGuider": { "stars": 42, "last_update": "2024-12-27 11:19:59", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Janus_pro_vision": { "stars": 26, "last_update": "2025-03-20 11:20:56", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-JoyHallo_wrapper": { "stars": 7, "last_update": "2025-03-20 11:24:21", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-LatentSyncWrapper": { - "stars": 815, + "stars": 828, "last_update": "2025-06-14 12:30:27", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Orpheus-TTS": { "stars": 4, "last_update": "2025-05-03 22:06:22", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-PS_Flatten_Image": { "stars": 6, "last_update": "2025-04-02 10:58:27", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-PixArt_XL": { "stars": 2, "last_update": "2025-03-20 11:23:20", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-SVDResizer": { "stars": 3, "last_update": "2025-03-09 04:33:26", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-Veo2-Experimental": { "stars": 26, "last_update": "2025-04-12 04:25:55", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-VideoUpscale_WithModel": { - "stars": 44, + "stars": 54, "last_update": "2025-05-02 20:13:08", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI-WanVideoKsampler": { - "stars": 32, + "stars": 33, "last_update": "2025-02-27 13:48:05", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_ChatterBox_Voice": { - "stars": 13, + "stars": 14, "last_update": "2025-06-04 18:50:40", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_Flux_1.1_RAW_API": { "stars": 58, "last_update": "2025-03-20 11:21:27", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_Gemini_Flash": { "stars": 31, "last_update": "2025-03-20 04:42:59", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_Hedra": { "stars": 2, "last_update": "2025-05-04 16:41:02", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_pixtral_large": { "stars": 15, "last_update": "2025-01-08 10:59:35", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_pixtral_vision": { "stars": 16, "last_update": "2024-11-20 12:58:30", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/ComfyUI_wav2lip": { "stars": 135, "last_update": "2024-09-18 13:17:42", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/DJ_VideoAudioMixer": { "stars": 1, "last_update": "2025-04-04 16:06:49", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/FluxKontextCreator": { - "stars": 10, + "stars": 12, "last_update": "2025-06-10 17:07:05", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/comfyui-openai_fm": { "stars": 2, "last_update": "2025-04-03 14:25:24", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/ShmuelRonen/google_moogle": { "stars": 5, "last_update": "2025-03-27 19:59:35", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/Shraknard/ComfyUI-Remover": { "stars": 5, "last_update": "2024-07-24 08:42:48", - "author_account_age_days": 2673 + "author_account_age_days": 2681 }, "https://github.com/ShunL12324/comfy-portal-endpoint": { "stars": 0, "last_update": "2025-05-17 05:43:21", - "author_account_age_days": 2895 + "author_account_age_days": 2903 }, "https://github.com/Siberpone/lazy-pony-prompter": { "stars": 40, "last_update": "2025-03-28 05:54:45", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/Siempreflaco/ComfyUI-NCNodes": { "stars": 0, "last_update": "2025-05-02 20:04:43", - "author_account_age_days": 1013 + "author_account_age_days": 1020 }, "https://github.com/Sieyalixnet/ComfyUI_Textarea_Loaders": { "stars": 3, "last_update": "2024-08-30 01:19:54", - "author_account_age_days": 2040 + "author_account_age_days": 2048 }, "https://github.com/SignalCha1n/comfyui-ComfySnap": { - "stars": 0, + "stars": 1, "last_update": "2025-04-27 15:24:25", - "author_account_age_days": 66 + "author_account_age_days": 74 }, "https://github.com/SijieMei/ComfyUI-promptHistory": { "stars": 0, "last_update": "2025-03-24 03:32:05", - "author_account_age_days": 2268 + "author_account_age_days": 2276 }, "https://github.com/Sinphaltimus/comfyui_fedcoms_node_pack": { "stars": 0, "last_update": "2025-05-10 15:54:59", - "author_account_age_days": 2635 + "author_account_age_days": 2643 }, "https://github.com/SipherAGI/comfyui-animatediff": { "stars": 735, "last_update": "2024-05-22 18:16:43", - "author_account_age_days": 762 + "author_account_age_days": 770 }, "https://github.com/SirWillance/FoW_Suite_LIGHT": { "stars": 2, "last_update": "2025-04-15 08:48:46", - "author_account_age_days": 135 + "author_account_age_days": 142 }, "https://github.com/SlackinJack/asyncdiff_comfyui": { "stars": 0, "last_update": "2025-04-03 03:17:56", - "author_account_age_days": 2532 + "author_account_age_days": 2540 }, "https://github.com/SlackinJack/distrifuser_comfyui": { "stars": 0, "last_update": "2025-04-03 03:18:17", - "author_account_age_days": 2532 + "author_account_age_days": 2540 }, "https://github.com/SleeeepyZhou/ComfyUI-CNtranslator": { - "stars": 3, + "stars": 5, "last_update": "2025-03-29 04:35:17", - "author_account_age_days": 1554 + "author_account_age_days": 1562 }, "https://github.com/Slickytail/ComfyUI-InstantX-IPAdapter-SD3": { "stars": 60, "last_update": "2025-03-27 12:47:27", - "author_account_age_days": 3918 + "author_account_age_days": 3926 }, "https://github.com/Slickytail/ComfyUI-RegionalAdaptiveSampling": { "stars": 19, "last_update": "2025-04-07 09:20:23", - "author_account_age_days": 3918 + "author_account_age_days": 3926 }, "https://github.com/Smirnov75/ComfyUI-mxToolkit": { - "stars": 226, + "stars": 229, "last_update": "2025-05-07 11:44:27", - "author_account_age_days": 1868 + "author_account_age_days": 1876 }, "https://github.com/Smuzzies/comfyui_meme_maker": { "stars": 1, "last_update": "2024-07-05 22:01:41", - "author_account_age_days": 1048 + "author_account_age_days": 1056 }, "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix": { "stars": 13, "last_update": "2024-07-25 13:09:00", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/SoftMeng/ComfyUI-PIL": { "stars": 6, "last_update": "2024-10-13 10:02:17", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/SoftMeng/ComfyUI_ImageToText": { "stars": 14, "last_update": "2024-06-14 08:08:36", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/SoftMeng/ComfyUI_Mexx_Poster": { "stars": 25, "last_update": "2024-06-14 07:06:27", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/SoftMeng/ComfyUI_Mexx_Styler": { "stars": 23, "last_update": "2024-06-14 07:09:03", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/SongGuo11/ComfyUI-SaveAnything-SG11": { "stars": 0, "last_update": "2025-03-18 08:59:39", - "author_account_age_days": 194 + "author_account_age_days": 201 }, "https://github.com/Sorcerio/MBM-Music-Visualizer": { "stars": 23, "last_update": "2024-05-23 01:09:18", - "author_account_age_days": 4604 + "author_account_age_days": 4612 }, "https://github.com/SozeInc/ComfyUI-Mobile": { "stars": 0, "last_update": "2024-08-22 03:12:11", - "author_account_age_days": 436 + "author_account_age_days": 444 }, "https://github.com/SozeInc/ComfyUI_Soze": { - "stars": 4, + "stars": 5, "last_update": "2025-06-14 17:26:59", - "author_account_age_days": 436 - }, - "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid": { - "stars": 7, - "last_update": "2024-05-22 22:11:52", - "author_account_age_days": 565 + "author_account_age_days": 444 }, "https://github.com/SparknightLLC/ComfyUI-ConditionalInterrupt": { "stars": 3, "last_update": "2025-04-15 20:36:37", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-GPENO": { - "stars": 64, + "stars": 65, "last_update": "2025-04-15 20:29:05", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-ImageAutosize": { "stars": 0, "last_update": "2025-05-23 19:44:54", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-ImageAutotone": { - "stars": 12, + "stars": 13, "last_update": "2025-04-15 20:35:55", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-LatentClamp": { "stars": 2, "last_update": "2025-04-15 20:36:15", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-MaskArbiter": { "stars": 4, "last_update": "2025-04-15 20:35:34", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SparknightLLC/ComfyUI-WeightedRandomChoice": { "stars": 0, "last_update": "2025-04-22 00:31:50", - "author_account_age_days": 309 + "author_account_age_days": 317 }, "https://github.com/SpenserCai/ComfyUI-FunAudioLLM": { "stars": 82, "last_update": "2024-11-27 09:22:05", - "author_account_age_days": 3072 + "author_account_age_days": 3080 }, "https://github.com/SshunWang/ComfyUI_CosyVoice": { "stars": 12, "last_update": "2025-02-05 23:48:10", - "author_account_age_days": 2299 + "author_account_age_days": 2307 }, "https://github.com/Stability-AI/ComfyUI-SAI_API": { "stars": 61, "last_update": "2025-03-04 12:11:12", - "author_account_age_days": 1199 + "author_account_age_days": 1207 }, "https://github.com/Stability-AI/stability-ComfyUI-nodes": { - "stars": 228, + "stars": 229, "last_update": "2024-05-22 15:30:47", - "author_account_age_days": 1199 + "author_account_age_days": 1207 }, "https://github.com/StableLlama/ComfyUI-basic_data_handling": { "stars": 6, "last_update": "2025-06-15 19:50:31", - "author_account_age_days": 535 + "author_account_age_days": 543 }, "https://github.com/StarAsh042/ComfyUI_RollingArtist": { "stars": 0, "last_update": "2025-05-05 21:26:43", - "author_account_age_days": 3365 + "author_account_age_days": 3373 }, "https://github.com/StarMagicAI/comfyui_tagger": { "stars": 5, "last_update": "2024-09-03 02:01:59", - "author_account_age_days": 3903 + "author_account_age_days": 3911 }, "https://github.com/Starnodes2024/ComfyUI_StarNodes": { - "stars": 39, + "stars": 40, "last_update": "2025-06-14 07:54:01", - "author_account_age_days": 359 + "author_account_age_days": 367 }, "https://github.com/StartHua/ComfyUI_OOTDiffusion_CXH": { "stars": 121, "last_update": "2024-06-14 08:12:12", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/ComfyUI_PCDMs": { "stars": 7, "last_update": "2024-05-22 23:21:14", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/ComfyUI_Seg_VITON": { - "stars": 214, + "stars": 215, "last_update": "2024-05-22 23:20:17", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_CXH_DeepLX": { "stars": 8, "last_update": "2024-09-21 02:38:08", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_CXH_FluxLoraMerge": { "stars": 24, "last_update": "2024-12-26 06:56:07", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_CXH_Phi_3.5": { "stars": 16, "last_update": "2024-08-22 04:45:39", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_Gemini2": { "stars": 16, "last_update": "2024-12-12 09:42:42", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_joytag": { - "stars": 54, + "stars": 55, "last_update": "2024-05-22 23:20:28", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_segformer_b2_clothes": { "stars": 89, "last_update": "2024-07-24 14:45:58", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/Steudio/ComfyUI_Steudio": { - "stars": 54, + "stars": 59, "last_update": "2025-05-22 23:05:15", - "author_account_age_days": 493 + "author_account_age_days": 501 }, "https://github.com/Style-Mosaic/dino-x-comfyui-node": { "stars": 1, "last_update": "2025-01-28 21:40:18", - "author_account_age_days": 224 + "author_account_age_days": 232 }, "https://github.com/SuperBeastsAI/ComfyUI-SuperBeasts": { "stars": 165, "last_update": "2024-07-31 02:48:34", - "author_account_age_days": 446 + "author_account_age_days": 454 }, "https://github.com/SuperMasterBlasterLaser/ComfyUI_YOLO_Classifiers": { "stars": 1, "last_update": "2025-03-29 13:16:05", - "author_account_age_days": 3935 + "author_account_age_days": 3943 }, "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes": { - "stars": 907, + "stars": 913, "last_update": "2024-07-24 11:16:13", - "author_account_age_days": 2506 + "author_account_age_days": 2514 }, "https://github.com/Sxela/ComfyWarp": { "stars": 47, "last_update": "2025-04-01 22:18:02", - "author_account_age_days": 3729 + "author_account_age_days": 3736 }, "https://github.com/SykkoAtHome/ComfyUI_FaceProcessor": { "stars": 8, "last_update": "2025-06-15 16:24:45", - "author_account_age_days": 753 + "author_account_age_days": 760 }, "https://github.com/T-Ph525/ComfyUI-Underage-Filter": { "stars": 0, "last_update": "2025-05-30 12:10:57", - "author_account_age_days": 1293 + "author_account_age_days": 1301 }, "https://github.com/TFL-TFL/ComfyUI_Text_Translation": { - "stars": 56, + "stars": 59, "last_update": "2025-05-25 02:27:01", - "author_account_age_days": 1898 + "author_account_age_days": 1907 }, "https://github.com/THtianhao/ComfyUI-FaceChain": { "stars": 135, "last_update": "2025-04-28 07:00:45", - "author_account_age_days": 4048 + "author_account_age_days": 4056 }, "https://github.com/THtianhao/ComfyUI-Portrait-Maker": { "stars": 194, "last_update": "2024-05-22 21:18:05", - "author_account_age_days": 4048 + "author_account_age_days": 4056 }, "https://github.com/TJ16th/comfyUI_TJ_NormalLighting": { "stars": 149, "last_update": "2024-05-23 00:25:37", - "author_account_age_days": 2892 + "author_account_age_days": 2899 }, "https://github.com/TKRLAB/ComfyUI_Prompt_List_JSON": { "stars": 1, "last_update": "2024-12-23 05:26:14", - "author_account_age_days": 476 + "author_account_age_days": 484 }, "https://github.com/TMElyralab/Comfyui-MusePose": { "stars": 408, "last_update": "2024-07-31 06:21:52", - "author_account_age_days": 454 + "author_account_age_days": 462 }, "https://github.com/TRI3D-LC/ComfyUI-MiroBoard": { "stars": 4, "last_update": "2024-11-21 07:15:20", - "author_account_age_days": 796 + "author_account_age_days": 803 }, "https://github.com/TRI3D-LC/tri3d-comfyui-nodes": { "stars": 27, - "last_update": "2025-05-28 05:27:59", - "author_account_age_days": 796 + "last_update": "2025-06-19 08:44:57", + "author_account_age_days": 803 }, "https://github.com/TTPlanetPig/Comfyui_Hunyuan3D": { "stars": 28, "last_update": "2024-11-10 16:59:42", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/Comfyui_JC2": { - "stars": 197, + "stars": 199, "last_update": "2025-05-21 16:25:36", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/Comfyui_Object_Detect_QWen_VL": { - "stars": 46, - "last_update": "2025-06-16 00:41:35", - "author_account_age_days": 560 + "stars": 87, + "last_update": "2025-06-17 07:57:45", + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/Comfyui_Object_Migration": { - "stars": 740, + "stars": 743, "last_update": "2024-11-20 16:51:57", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor": { "stars": 29, "last_update": "2024-08-21 17:52:56", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/Comfyui_TTP_Toolset": { - "stars": 680, + "stars": 690, "last_update": "2025-06-15 11:21:35", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TTPlanetPig/TTP_Comfyui_FramePack_SE": { "stars": 43, "last_update": "2025-04-25 11:36:15", - "author_account_age_days": 560 + "author_account_age_days": 568 }, "https://github.com/TW-CUI/TW-CUI-Util": { "stars": 1, "last_update": "2024-08-14 01:49:13", - "author_account_age_days": 388 + "author_account_age_days": 396 }, "https://github.com/TZOOTZ/ComfyUI-TZOOTZ_VHS": { "stars": 2, "last_update": "2025-06-04 10:19:49", - "author_account_age_days": 3406 + "author_account_age_days": 3414 }, "https://github.com/TaiTair/comfyui-simswap": { "stars": 14, "last_update": "2024-07-31 18:28:38", - "author_account_age_days": 3923 + "author_account_age_days": 3931 }, "https://github.com/Taithrah/ComfyUI_Fens_Simple_Nodes": { "stars": 0, - "last_update": "2025-06-08 20:10:26", - "author_account_age_days": 4863 + "last_update": "2025-06-20 22:03:36", + "author_account_age_days": 4871 }, "https://github.com/Taremin/comfyui-keep-multiple-tabs": { "stars": 5, "last_update": "2025-02-25 15:53:35", - "author_account_age_days": 2572 + "author_account_age_days": 2580 }, "https://github.com/Taremin/comfyui-prompt-config": { "stars": 0, "last_update": "2025-02-28 03:53:16", - "author_account_age_days": 2572 + "author_account_age_days": 2580 }, "https://github.com/Taremin/comfyui-prompt-extranetworks": { "stars": 7, "last_update": "2025-03-04 07:49:21", - "author_account_age_days": 2572 + "author_account_age_days": 2580 }, "https://github.com/Taremin/comfyui-string-tools": { "stars": 1, "last_update": "2025-02-26 13:22:39", - "author_account_age_days": 2572 + "author_account_age_days": 2580 }, "https://github.com/Taremin/webui-monaco-prompt": { "stars": 27, "last_update": "2025-03-06 08:57:58", - "author_account_age_days": 2572 + "author_account_age_days": 2580 + }, + "https://github.com/TashaSkyUp/EternalKernelPytorchNodes": { + "stars": 0, + "last_update": "2025-06-22 19:16:21", + "author_account_age_days": 3529 }, "https://github.com/TeaCrab/ComfyUI-TeaNodes": { "stars": 5, "last_update": "2024-05-22 20:44:05", - "author_account_age_days": 3574 + "author_account_age_days": 3582 }, "https://github.com/TechnoByteJS/ComfyUI-TechNodes": { "stars": 14, "last_update": "2024-09-20 23:26:02", - "author_account_age_days": 2032 + "author_account_age_days": 2040 }, "https://github.com/TemryL/ComfyS3": { "stars": 47, "last_update": "2024-11-05 14:56:04", - "author_account_age_days": 1225 + "author_account_age_days": 1233 }, "https://github.com/TemryL/ComfyUI-IDM-VTON": { - "stars": 521, + "stars": 525, "last_update": "2024-08-20 02:44:02", - "author_account_age_days": 1225 + "author_account_age_days": 1233 }, "https://github.com/Temult/TWanSigmaGraph": { "stars": 8, "last_update": "2025-04-17 09:39:00", - "author_account_age_days": 623 + "author_account_age_days": 631 }, "https://github.com/TencentQQGYLab/ComfyUI-ELLA": { "stars": 380, "last_update": "2024-08-16 11:21:10", - "author_account_age_days": 455 + "author_account_age_days": 462 }, "https://github.com/Tenney95/ComfyUI-NodeAligner": { - "stars": 127, + "stars": 128, "last_update": "2025-05-09 07:48:08", - "author_account_age_days": 283 + "author_account_age_days": 291 }, "https://github.com/Tensor-Art/ComfyUI_TENSOR_ART": { "stars": 9, "last_update": "2025-04-02 08:31:41", - "author_account_age_days": 756 + "author_account_age_days": 764 }, "https://github.com/TensorKaze/ComfyUI-TkNodes": { "stars": 0, "last_update": "2025-05-26 01:36:34", - "author_account_age_days": 93 + "author_account_age_days": 101 }, "https://github.com/TheBarret/ZSuite": { "stars": 9, "last_update": "2024-08-10 13:31:03", - "author_account_age_days": 3069 + "author_account_age_days": 3077 }, "https://github.com/TheBill2001/ComfyUI-Save-Image-Caption": { - "stars": 7, + "stars": 8, "last_update": "2025-04-04 12:21:18", - "author_account_age_days": 1799 + "author_account_age_days": 1806 }, "https://github.com/TheBill2001/comfyui-upscale-by-model": { - "stars": 8, + "stars": 9, "last_update": "2024-06-18 17:57:06", - "author_account_age_days": 1799 + "author_account_age_days": 1806 + }, + "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tools": { + "stars": 0, + "last_update": "2025-06-21 15:09:46", + "author_account_age_days": 1444 }, "https://github.com/TheMistoAI/ComfyUI-Anyline": { - "stars": 465, + "stars": 467, "last_update": "2024-08-30 09:50:34", - "author_account_age_days": 522 + "author_account_age_days": 530 }, "https://github.com/TheWhykiki/Whykiki-ComfyUIToolset": { "stars": 0, "last_update": "2025-03-02 22:17:54", - "author_account_age_days": 3674 + "author_account_age_days": 3682 }, "https://github.com/ThepExcel/aiangelgallery-comfyui": { "stars": 2, "last_update": "2025-01-15 07:53:09", - "author_account_age_days": 1918 + "author_account_age_days": 1926 }, "https://github.com/ThereforeGames/ComfyUI-Unprompted": { "stars": 10, "last_update": "2024-11-13 20:46:08", - "author_account_age_days": 1292 + "author_account_age_days": 1300 }, "https://github.com/TiamaTiramisu/risutools": { "stars": 1, "last_update": "2025-04-20 22:51:50", - "author_account_age_days": 357 + "author_account_age_days": 365 }, "https://github.com/TinyTerra/ComfyUI_tinyterraNodes": { - "stars": 523, + "stars": 527, "last_update": "2025-03-14 08:21:19", - "author_account_age_days": 978 + "author_account_age_days": 986 }, "https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant": { "stars": 2, - "last_update": "2025-03-08 13:44:20", - "author_account_age_days": 3026 + "last_update": "2025-06-20 16:23:14", + "author_account_age_days": 3034 }, "https://github.com/ToTheBeginning/ComfyUI-DreamO": { - "stars": 133, + "stars": 137, "last_update": "2025-06-12 03:46:59", - "author_account_age_days": 3746 + "author_account_age_days": 3754 }, "https://github.com/Tr1dae/ComfyUI-Dequality": { "stars": 0, "last_update": "2025-02-13 16:41:59", - "author_account_age_days": 895 + "author_account_age_days": 903 }, "https://github.com/Trgtuan10/ComfyUI_YoloSegment_Mask": { "stars": 1, "last_update": "2024-09-26 01:46:02", - "author_account_age_days": 929 + "author_account_age_days": 937 }, "https://github.com/TripleHeadedMonkey/ComfyUI_MileHighStyler": { - "stars": 51, - "last_update": "2024-05-22 22:13:06", - "author_account_age_days": 1217 + "stars": 55, + "last_update": "2025-06-18 09:32:23", + "author_account_age_days": 1225 }, "https://github.com/Tropfchen/ComfyUI-Embedding_Picker": { "stars": 44, "last_update": "2024-08-26 16:33:49", - "author_account_age_days": 4210 + "author_account_age_days": 4218 }, "https://github.com/Tropfchen/ComfyUI-yaResolutionSelector": { "stars": 14, "last_update": "2024-11-10 20:44:23", - "author_account_age_days": 4210 + "author_account_age_days": 4218 }, "https://github.com/TrophiHunter/ComfyUI_Photography_Nodes": { "stars": 2, "last_update": "2025-05-22 07:41:32", - "author_account_age_days": 1075 + "author_account_age_days": 1083 }, "https://github.com/Trung0246/ComfyUI-0246": { "stars": 127, "last_update": "2025-03-15 03:39:33", - "author_account_age_days": 3737 + "author_account_age_days": 3745 }, "https://github.com/Ttl/ComfyUi_NNLatentUpscale": { "stars": 241, "last_update": "2024-12-01 16:34:24", - "author_account_age_days": 5278 + "author_account_age_days": 5286 }, "https://github.com/TylerZoro/SD3-Scaling": { "stars": 1, "last_update": "2024-06-15 16:59:22", - "author_account_age_days": 1642 + "author_account_age_days": 1650 }, "https://github.com/Umikaze-job/select_folder_path_easy": { "stars": 6, "last_update": "2024-05-22 21:30:13", - "author_account_age_days": 576 + "author_account_age_days": 583 }, "https://github.com/VAST-AI-Research/ComfyUI-Tripo": { - "stars": 280, - "last_update": "2025-05-20 10:47:58", - "author_account_age_days": 599 + "stars": 282, + "last_update": "2025-06-20 04:22:07", + "author_account_age_days": 607 }, "https://github.com/VK/vk-nodes": { "stars": 0, "last_update": "2025-05-07 19:59:57", - "author_account_age_days": 5702 + "author_account_age_days": 5710 }, "https://github.com/Vaibhavs10/ComfyUI-DDUF": { "stars": 5, "last_update": "2025-01-03 15:10:44", - "author_account_age_days": 3337 + "author_account_age_days": 3345 }, "https://github.com/VangengLab/ComfyUI-LivePortrait_v2": { "stars": 6, "last_update": "2024-11-09 08:00:22", - "author_account_age_days": 636 + "author_account_age_days": 643 }, "https://github.com/VangengLab/ComfyUI-LivePortrait_v3": { "stars": 22, "last_update": "2024-11-09 07:59:42", - "author_account_age_days": 636 + "author_account_age_days": 643 }, "https://github.com/Vaporbook/ComfyUI-SaveImage-PP": { "stars": 0, "last_update": "2025-05-08 15:04:17", - "author_account_age_days": 5195 + "author_account_age_days": 5203 }, "https://github.com/VertexAnomaly/ComfyUI_ImageSentinel": { "stars": 1, "last_update": "2025-04-04 13:50:16", - "author_account_age_days": 1013 + "author_account_age_days": 1020 }, "https://github.com/VertexStudio/roblox-comfyui-nodes": { "stars": 0, "last_update": "2024-10-08 16:35:54", - "author_account_age_days": 3335 + "author_account_age_days": 3343 }, "https://github.com/VikramxD/VEnhancer-ComfyUI-Wrapper": { "stars": 11, "last_update": "2025-01-14 07:35:00", - "author_account_age_days": 1713 + "author_account_age_days": 1720 }, "https://github.com/Visionatrix/ComfyUI-RemoteVAE": { "stars": 2, "last_update": "2025-03-12 05:57:35", - "author_account_age_days": 473 + "author_account_age_days": 481 }, "https://github.com/Visionatrix/ComfyUI-Visionatrix": { "stars": 1, - "last_update": "2025-04-20 08:36:27", - "author_account_age_days": 473 + "last_update": "2025-06-22 07:38:06", + "author_account_age_days": 481 }, "https://github.com/VrchStudio/comfyui-web-viewer": { - "stars": 216, - "last_update": "2025-06-12 19:56:08", - "author_account_age_days": 1277 + "stars": 218, + "last_update": "2025-06-18 01:35:41", + "author_account_age_days": 1284 }, "https://github.com/VykosX/ControlFlowUtils": { "stars": 118, "last_update": "2024-12-09 17:24:48", - "author_account_age_days": 2267 + "author_account_age_days": 2275 }, "https://github.com/WASasquatch/ComfyUI_Preset_Merger": { "stars": 32, "last_update": "2025-03-27 14:52:46", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WASasquatch/FreeU_Advanced": { "stars": 119, "last_update": "2024-10-27 01:49:14", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WASasquatch/PPF_Noise_ComfyUI": { "stars": 24, "last_update": "2024-06-14 10:27:23", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WASasquatch/PowerNoiseSuite": { - "stars": 75, + "stars": 76, "last_update": "2024-07-31 13:48:33", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WASasquatch/WAS_Extras": { "stars": 34, "last_update": "2024-06-17 04:08:37", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WUYUDING2583/ComfyUI-Save-Image-Callback": { "stars": 2, "last_update": "2025-01-21 08:19:52", - "author_account_age_days": 2569 + "author_account_age_days": 2577 }, "https://github.com/WX-NPS1598/ComfyUI-Auto_Crop_By_NPS": { "stars": 5, "last_update": "2024-07-30 04:43:14", - "author_account_age_days": 333 + "author_account_age_days": 341 }, "https://github.com/WaddingtonHoldings/ComfyUI-InstaSD": { "stars": 3, "last_update": "2025-05-30 04:07:24", - "author_account_age_days": 979 + "author_account_age_days": 987 }, "https://github.com/WainWong/ComfyUI-Loop-image": { "stars": 34, "last_update": "2025-03-28 03:09:27", - "author_account_age_days": 2980 + "author_account_age_days": 2987 }, "https://github.com/Wakfull33/ComfyUI-SaveImageCivitAI": { "stars": 1, "last_update": "2024-10-29 11:03:23", - "author_account_age_days": 3317 + "author_account_age_days": 3324 }, "https://github.com/WangPengxing/ComfyUI_WPX_Node": { "stars": 0, "last_update": "2025-01-20 08:31:55", - "author_account_age_days": 684 + "author_account_age_days": 691 }, "https://github.com/WarpedAnimation/ComfyUI-WarpedToolset": { "stars": 2, "last_update": "2025-06-01 05:35:02", - "author_account_age_days": 98 + "author_account_age_days": 106 }, "https://github.com/WaveSpeedAI/wavespeed-comfyui": { - "stars": 11, - "last_update": "2025-05-11 19:59:51", - "author_account_age_days": 146 + "stars": 13, + "last_update": "2025-06-20 02:08:21", + "author_account_age_days": 153 }, "https://github.com/WebDev9000/WebDev9000-Nodes": { "stars": 1, "last_update": "2024-06-14 10:28:22", - "author_account_age_days": 4109 + "author_account_age_days": 4117 }, "https://github.com/Wenaka2004/ComfyUI-TagClassifier": { "stars": 23, "last_update": "2025-01-31 04:28:34", - "author_account_age_days": 895 + "author_account_age_days": 903 }, "https://github.com/Wicloz/ComfyUI-Simply-Nodes": { "stars": 1, "last_update": "2025-01-05 01:44:38", - "author_account_age_days": 4001 + "author_account_age_days": 4008 }, "https://github.com/X-School-Academy/X-FluxAgent": { "stars": 26, "last_update": "2025-06-05 08:28:11", - "author_account_age_days": 75 + "author_account_age_days": 83 }, "https://github.com/X-T-E-R/ComfyUI-EasyCivitai-XTNodes": { - "stars": 43, + "stars": 44, "last_update": "2024-09-04 11:37:04", - "author_account_age_days": 1520 + "author_account_age_days": 1528 }, "https://github.com/XLabs-AI/x-flux-comfyui": { - "stars": 1565, + "stars": 1573, "last_update": "2024-10-30 12:51:21", - "author_account_age_days": 314 + "author_account_age_days": 322 }, "https://github.com/XWAVEart/comfyui-xwave-xlitch-nodes": { "stars": 1, "last_update": "2025-06-04 20:33:17", - "author_account_age_days": 593 + "author_account_age_days": 601 }, "https://github.com/XchanBik/ComfyUI_SimpleBridgeNode": { "stars": 0, "last_update": "2025-05-15 22:10:43", - "author_account_age_days": 38 + "author_account_age_days": 46 }, "https://github.com/Xclbr7/ComfyUI-Merlin": { "stars": 29, "last_update": "2024-09-02 19:36:05", - "author_account_age_days": 294 + "author_account_age_days": 301 }, "https://github.com/Xiangyu-CAS/HandFixer": { - "stars": 179, + "stars": 183, "last_update": "2025-02-10 02:02:01", - "author_account_age_days": 3745 + "author_account_age_days": 3753 }, "https://github.com/XieJunchen/comfyUI_LLM": { "stars": 2, "last_update": "2025-06-07 08:34:02", - "author_account_age_days": 2131 + "author_account_age_days": 2139 }, "https://github.com/Xkipper/ComfyUI_SkipperNodes": { "stars": 0, "last_update": "2025-04-26 20:13:45", - "author_account_age_days": 3836 + "author_account_age_days": 3844 }, "https://github.com/XmYx/deforum-comfy-nodes": { - "stars": 191, + "stars": 190, "last_update": "2025-05-26 19:50:55", - "author_account_age_days": 2963 + "author_account_age_days": 2970 }, "https://github.com/Xyem/Xycuno-Oobabooga": { "stars": 4, "last_update": "2024-05-23 00:14:14", - "author_account_age_days": 4681 + "author_account_age_days": 4689 }, "https://github.com/YMC-GitHub/comfyui_node_ymc_effect_shatter": { "stars": 0, "last_update": "2025-04-12 15:00:21", - "author_account_age_days": 3052 + "author_account_age_days": 3060 }, "https://github.com/YMC-GitHub/ymc-node-as-x-type": { "stars": 0, "last_update": "2025-06-06 12:23:11", - "author_account_age_days": 3052 + "author_account_age_days": 3060 }, "https://github.com/YMC-GitHub/ymc-node-suite-comfyui": { "stars": 20, "last_update": "2025-06-09 08:07:23", - "author_account_age_days": 3052 + "author_account_age_days": 3060 }, "https://github.com/YMC-GitHub/ymc_node_joy": { "stars": 0, - "last_update": "2025-06-16 00:38:47", - "author_account_age_days": 3052 + "last_update": "2025-06-19 07:24:28", + "author_account_age_days": 3060 }, "https://github.com/YOUR-WORST-TACO/ComfyUI-TacoNodes": { "stars": 15, "last_update": "2024-05-22 20:48:23", - "author_account_age_days": 4112 + "author_account_age_days": 4120 }, "https://github.com/YRIKKA/ComfyUI-InferenceTimeScaling": { "stars": 20, "last_update": "2025-02-27 21:13:18", - "author_account_age_days": 356 + "author_account_age_days": 364 }, "https://github.com/Yahweasel/ComfyUI-MinDalle": { "stars": 0, "last_update": "2025-05-26 20:42:34", - "author_account_age_days": 3007 + "author_account_age_days": 3015 }, "https://github.com/Yanick112/ComfyUI-ToSVG": { - "stars": 196, - "last_update": "2025-04-08 07:01:58", - "author_account_age_days": 1171 + "stars": 198, + "last_update": "2025-06-20 14:10:06", + "author_account_age_days": 1178 }, "https://github.com/YaroslavIv/comfyui_swd": { "stars": 2, - "last_update": "2025-03-25 09:08:51", - "author_account_age_days": 1934 + "last_update": "2025-06-23 04:10:43", + "author_account_age_days": 1941 }, "https://github.com/YarvixPA/ComfyUI-NeuralMedia": { "stars": 4, "last_update": "2025-06-09 13:25:01", - "author_account_age_days": 563 + "author_account_age_days": 571 }, "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI": { "stars": 16, "last_update": "2025-01-03 03:58:20", - "author_account_age_days": 1143 + "author_account_age_days": 1151 }, "https://github.com/Yuan-ManX/ComfyUI-AniSora": { "stars": 22, "last_update": "2025-05-27 04:11:59", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-AudioX": { "stars": 10, "last_update": "2025-05-27 04:14:59", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Bagel": { "stars": 29, "last_update": "2025-05-28 03:00:53", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-ChatterboxTTS": { - "stars": 7, + "stars": 8, "last_update": "2025-05-30 08:13:06", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Cobra": { "stars": 5, "last_update": "2025-04-18 02:06:26", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Dia": { "stars": 3, "last_update": "2025-04-24 06:58:05", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2": { "stars": 4, "last_update": "2025-06-10 03:24:25", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-HiDream-I1": { "stars": 8, "last_update": "2025-04-14 02:56:22", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Hunyuan3D-2.1": { - "stars": 3, + "stars": 10, "last_update": "2025-06-16 07:03:54", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-HunyuanPortrait": { - "stars": 5, + "stars": 6, "last_update": "2025-05-28 09:47:34", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-HunyuanVideo-Avatar": { - "stars": 17, + "stars": 24, "last_update": "2025-05-29 07:49:15", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Kimi-VL": { "stars": 1, "last_update": "2025-04-17 06:55:14", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-LLaMA-Mesh": { "stars": 5, "last_update": "2024-11-29 09:52:04", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-LayerAnimate": { "stars": 4, "last_update": "2025-04-01 03:16:53", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-LiveCC": { "stars": 4, "last_update": "2025-05-27 04:14:30", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Matrix-Game": { "stars": 3, "last_update": "2025-05-13 08:05:00", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-MoviiGen": { "stars": 8, "last_update": "2025-05-27 04:12:30", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Multiverse": { "stars": 1, "last_update": "2025-05-09 06:51:35", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Muyan-TTS": { "stars": 2, "last_update": "2025-05-08 08:21:24", - "author_account_age_days": 1797 + "author_account_age_days": 1805 + }, + "https://github.com/Yuan-ManX/ComfyUI-OmniGen2": { + "stars": 62, + "last_update": "2025-06-24 09:32:38", + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-OrpheusTTS": { "stars": 6, "last_update": "2025-03-24 02:47:23", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-PhotoDoodle": { "stars": 3, "last_update": "2025-02-28 03:47:54", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-SkyReels-A2": { "stars": 26, "last_update": "2025-05-27 04:14:03", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-SoundHub": { "stars": 1, "last_update": "2024-11-27 08:00:48", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Step1X-3D": { "stars": 12, "last_update": "2025-05-16 02:36:06", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Step1X-Edit": { "stars": 11, "last_update": "2025-04-29 07:36:52", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-StyleStudio": { "stars": 4, "last_update": "2025-03-10 09:38:08", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-UNO": { "stars": 10, "last_update": "2025-04-11 07:37:33", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/Yuan-ManX/ComfyUI-Vui": { "stars": 3, "last_update": "2025-06-12 03:55:32", - "author_account_age_days": 1797 + "author_account_age_days": 1805 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-APISR": { "stars": 376, "last_update": "2024-05-22 14:14:46", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Animated-optical-illusions": { "stars": 21, "last_update": "2024-06-14 07:06:15", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-ArtGallery": { - "stars": 507, + "stars": 510, "last_update": "2024-06-12 04:40:50", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-BRIA_AI-RMBG": { "stars": 806, "last_update": "2024-05-22 14:14:18", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-DeepSeek-JanusPro": { "stars": 103, "last_update": "2025-02-21 09:45:54", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-DepthFM": { "stars": 74, "last_update": "2024-05-22 14:14:03", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Gemini": { - "stars": 760, + "stars": 761, "last_update": "2024-05-22 14:15:11", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-InstantID": { - "stars": 1416, + "stars": 1419, "last_update": "2024-05-22 13:57:55", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Phi-3-mini": { "stars": 204, "last_update": "2024-06-30 08:41:40", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PhotoMaker-ZHO": { - "stars": 815, + "stars": 816, "last_update": "2024-05-22 14:13:49", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PixArt-alpha-Diffusers": { "stars": 50, "last_update": "2024-05-22 13:40:58", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Q-Align": { "stars": 5, "last_update": "2024-05-22 14:15:52", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen-VL-API": { - "stars": 204, + "stars": 207, "last_update": "2024-05-22 14:14:57", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-SVD-ZHO": { "stars": 107, "last_update": "2024-05-22 13:40:44", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-SegMoE": { "stars": 79, "last_update": "2024-05-22 13:41:14", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Text_Image-Composite": { "stars": 110, "last_update": "2024-05-31 12:03:55", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-UltraEdit-ZHO": { "stars": 147, "last_update": "2024-07-11 14:59:07", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-YoloWorld-EfficientSAM": { - "stars": 742, + "stars": 743, "last_update": "2024-05-22 13:01:07", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZHO-ZHO-ZHO/comfyui-portrait-master-zh-cn": { - "stars": 1740, + "stars": 1745, "last_update": "2024-06-14 09:00:04", - "author_account_age_days": 696 + "author_account_age_days": 704 }, "https://github.com/ZZXYWQ/ComfyUI-ZZXYWQ": { "stars": 23, "last_update": "2024-07-19 06:38:39", - "author_account_age_days": 1630 + "author_account_age_days": 1638 }, "https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx": { "stars": 1, "last_update": "2025-06-10 07:10:28", - "author_account_age_days": 1718 + "author_account_age_days": 1726 }, "https://github.com/ZaneA/ComfyUI-ImageReward": { "stars": 31, "last_update": "2025-02-24 19:55:45", - "author_account_age_days": 5897 + "author_account_age_days": 5904 }, "https://github.com/Zar4X/ComfyUI-Batch-Process": { "stars": 2, "last_update": "2025-05-27 02:19:57", - "author_account_age_days": 788 + "author_account_age_days": 796 }, "https://github.com/Zar4X/ComfyUI-Image-Resizing": { - "stars": 1, + "stars": 0, "last_update": "2025-04-07 06:41:21", - "author_account_age_days": 788 + "author_account_age_days": 796 }, "https://github.com/Zch6111/AI_Text_Comfyui": { "stars": 1, "last_update": "2025-06-05 03:22:47", - "author_account_age_days": 430 + "author_account_age_days": 438 }, "https://github.com/ZeDarkAdam/ComfyUI-Embeddings-Tools": { "stars": 2, "last_update": "2024-06-23 19:19:40", - "author_account_age_days": 1551 + "author_account_age_days": 1558 }, "https://github.com/Zehong-Ma/ComfyUI-MagCache": { - "stars": 90, - "last_update": "2025-06-16 11:12:50", - "author_account_age_days": 1559 + "stars": 136, + "last_update": "2025-06-21 03:29:12", + "author_account_age_days": 1567 }, "https://github.com/Zeks/comfyui-rapidfire": { "stars": 0, "last_update": "2025-01-14 18:28:43", - "author_account_age_days": 4977 + "author_account_age_days": 4985 }, "https://github.com/Zuellni/ComfyUI-Custom-Nodes": { "stars": 44, "last_update": "2023-09-19 12:11:26", - "author_account_age_days": 879 + "author_account_age_days": 887 }, "https://github.com/Zuellni/ComfyUI-ExLlama-Nodes": { "stars": 118, "last_update": "2024-12-06 14:22:11", - "author_account_age_days": 879 + "author_account_age_days": 887 }, "https://github.com/Zuellni/ComfyUI-PickScore-Nodes": { "stars": 37, "last_update": "2024-09-08 09:17:04", - "author_account_age_days": 879 + "author_account_age_days": 887 }, "https://github.com/a-und-b/ComfyUI_Delay": { "stars": 4, "last_update": "2025-01-10 11:20:35", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/a-und-b/ComfyUI_IC-Light-v2_fal": { "stars": 36, "last_update": "2025-05-05 08:34:47", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/a-und-b/ComfyUI_JSON_Helper": { "stars": 3, "last_update": "2025-01-09 15:54:55", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/a-und-b/ComfyUI_LoRA_from_URL": { "stars": 3, "last_update": "2025-01-16 13:40:26", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/a-und-b/ComfyUI_MaskAreaCondition": { "stars": 2, "last_update": "2025-04-28 08:23:36", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/a1lazydog/ComfyUI-AudioScheduler": { "stars": 103, "last_update": "2024-08-08 03:04:19", - "author_account_age_days": 5159 + "author_account_age_days": 5167 }, "https://github.com/abdozmantar/ComfyUI-DeepExtract": { "stars": 37, "last_update": "2025-04-26 15:13:57", - "author_account_age_days": 509 + "author_account_age_days": 517 }, "https://github.com/aburahamu/ComfyUI-IsNiceParts": { "stars": 3, "last_update": "2024-06-14 12:01:40", - "author_account_age_days": 430 + "author_account_age_days": 437 }, "https://github.com/aburahamu/ComfyUI-RequestsPoster": { "stars": 2, "last_update": "2024-06-14 13:59:24", - "author_account_age_days": 430 + "author_account_age_days": 437 }, "https://github.com/abyz22/image_control": { "stars": 16, "last_update": "2024-08-31 08:39:44", - "author_account_age_days": 519 + "author_account_age_days": 527 }, "https://github.com/acorderob/sd-webui-prompt-postprocessor": { "stars": 36, "last_update": "2025-05-31 10:32:11", - "author_account_age_days": 4184 + "author_account_age_days": 4192 }, "https://github.com/adbrasi/ComfyUI-TrashNodes-DownloadHuggingface": { "stars": 6, "last_update": "2024-05-22 23:24:45", - "author_account_age_days": 1060 + "author_account_age_days": 1068 }, "https://github.com/adieyal/comfyui-dynamicprompts": { - "stars": 314, + "stars": 319, "last_update": "2024-07-09 14:21:09", - "author_account_age_days": 5373 + "author_account_age_days": 5381 }, "https://github.com/adigayung/ComfyUI-Translator": { "stars": 10, "last_update": "2024-09-09 03:36:52", - "author_account_age_days": 570 + "author_account_age_days": 578 }, "https://github.com/adriflex/ComfyUI_Blender_Texdiff": { "stars": 2, "last_update": "2024-05-22 23:14:18", - "author_account_age_days": 2579 + "author_account_age_days": 2587 }, "https://github.com/aegis72/aegisflow_utility_nodes": { "stars": 31, "last_update": "2024-10-03 11:11:39", - "author_account_age_days": 940 + "author_account_age_days": 948 }, "https://github.com/aegis72/comfyui-styles-all": { "stars": 51, "last_update": "2024-05-22 22:10:41", - "author_account_age_days": 940 + "author_account_age_days": 948 }, "https://github.com/agilly1989/ComfyUI_agilly1989_motorway": { "stars": 7, "last_update": "2025-05-02 22:23:32", - "author_account_age_days": 2241 + "author_account_age_days": 2249 }, "https://github.com/ahernandezmiro/ComfyUI-GCP_Storage_tools": { "stars": 2, "last_update": "2025-01-03 18:48:03", - "author_account_age_days": 4353 + "author_account_age_days": 4360 }, "https://github.com/ai-liam/comfyui-liam": { "stars": 2, "last_update": "2024-06-22 03:27:52", - "author_account_age_days": 1878 + "author_account_age_days": 1885 }, "https://github.com/ai-liam/comfyui_liam_util": { "stars": 1, "last_update": "2024-05-22 22:21:23", - "author_account_age_days": 1878 + "author_account_age_days": 1885 }, "https://github.com/ai-shizuka/ComfyUI-tbox": { "stars": 15, "last_update": "2025-04-22 10:21:03", - "author_account_age_days": 369 + "author_account_age_days": 377 }, "https://github.com/aiaiaikkk/ComfyUI-Curve": { - "stars": 75, - "last_update": "2025-06-16 09:07:22", - "author_account_age_days": 261 + "stars": 94, + "last_update": "2025-06-23 23:22:01", + "author_account_age_days": 269 }, "https://github.com/aianimation55/ComfyUI-FatLabels": { "stars": 5, "last_update": "2024-05-22 21:26:01", - "author_account_age_days": 631 + "author_account_age_days": 638 }, "https://github.com/aiartvn/A2V_Multi_Image_Composite": { "stars": 1, "last_update": "2025-02-02 04:14:06", - "author_account_age_days": 141 + "author_account_age_days": 149 }, "https://github.com/aicoder-max/Pillar_For_ComfyUI": { "stars": 2, "last_update": "2025-06-05 09:40:09", - "author_account_age_days": 27 + "author_account_age_days": 35 }, "https://github.com/aicuai/aicu-comfyui-stability-ai-api": { "stars": 1, "last_update": "2025-02-21 13:31:14", - "author_account_age_days": 699 + "author_account_age_days": 707 }, "https://github.com/aidec/Comfyui_TextBatch_aidec": { - "stars": 7, + "stars": 8, "last_update": "2025-04-09 20:26:38", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/aidenli/ComfyUI_NYJY": { - "stars": 125, + "stars": 126, "last_update": "2025-06-16 06:06:12", - "author_account_age_days": 4905 + "author_account_age_days": 4913 }, "https://github.com/aigc-apps/EasyAnimate": { - "stars": 2171, + "stars": 2172, "last_update": "2025-03-06 11:41:28", - "author_account_age_days": 675 + "author_account_age_days": 683 }, "https://github.com/aigc-apps/VideoX-Fun": { - "stars": 1085, - "last_update": "2025-06-13 06:44:18", - "author_account_age_days": 675 + "stars": 1122, + "last_update": "2025-06-24 02:09:24", + "author_account_age_days": 683 }, "https://github.com/aimerib/ComfyUI_HigherBitDepthSaveImage": { "stars": 2, "last_update": "2024-09-14 03:03:01", - "author_account_age_days": 3027 + "author_account_age_days": 3035 }, "https://github.com/ainewsto/Comfyui-chatgpt-api": { "stars": 50, "last_update": "2025-04-30 04:08:25", - "author_account_age_days": 1011 + "author_account_age_days": 1019 }, "https://github.com/ainewsto/Comfyui-google-veo2-api": { - "stars": 4, + "stars": 5, "last_update": "2025-05-06 06:43:48", - "author_account_age_days": 1011 + "author_account_age_days": 1019 }, "https://github.com/ainewsto/Comfyui_Comfly_v2": { - "stars": 38, - "last_update": "2025-06-13 06:39:19", - "author_account_age_days": 1011 + "stars": 40, + "last_update": "2025-06-19 05:59:08", + "author_account_age_days": 1019 }, "https://github.com/ainewsto/comfyui-labs-google": { - "stars": 79, - "last_update": "2025-05-06 06:12:31", - "author_account_age_days": 1011 + "stars": 80, + "last_update": "2025-06-18 02:12:39", + "author_account_age_days": 1019 }, "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL": { "stars": 2, "last_update": "2024-07-31 13:39:36", - "author_account_age_days": 346 + "author_account_age_days": 354 }, "https://github.com/ajbergh/comfyui-ethnicity_hairstyle_clip_encoder": { "stars": 2, "last_update": "2025-02-28 22:07:11", - "author_account_age_days": 2139 + "author_account_age_days": 2147 }, "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes": { "stars": 25, "last_update": "2025-04-05 00:47:00", - "author_account_age_days": 392 + "author_account_age_days": 400 + }, + "https://github.com/akatz-ai/ComfyUI-Basic-Math": { + "stars": 0, + "last_update": "2025-06-18 01:49:05", + "author_account_age_days": 400 }, "https://github.com/akatz-ai/ComfyUI-DepthCrafter-Nodes": { "stars": 225, "last_update": "2025-05-05 04:23:55", - "author_account_age_days": 392 + "author_account_age_days": 400 }, "https://github.com/akatz-ai/ComfyUI-Depthflow-Nodes": { - "stars": 282, + "stars": 284, "last_update": "2025-04-05 05:22:25", - "author_account_age_days": 392 + "author_account_age_days": 400 }, "https://github.com/akatz-ai/ComfyUI-X-Portrait-Nodes": { "stars": 85, "last_update": "2025-04-20 05:29:13", - "author_account_age_days": 392 + "author_account_age_days": 400 }, "https://github.com/akierson/ComfyUI-textnodes": { "stars": 0, "last_update": "2024-10-20 20:12:15", - "author_account_age_days": 2691 + "author_account_age_days": 2699 }, "https://github.com/akierson/comfyui-colornodes": { "stars": 1, "last_update": "2024-10-20 20:14:09", - "author_account_age_days": 2691 + "author_account_age_days": 2699 }, "https://github.com/akspa0/ComfyUI-FapMixPlus": { "stars": 1, "last_update": "2024-11-11 02:59:10", - "author_account_age_days": 487 + "author_account_age_days": 495 }, "https://github.com/al-swaiti/All-IN-ONE-style": { "stars": 5, "last_update": "2024-07-30 05:59:49", - "author_account_age_days": 1286 + "author_account_age_days": 1294 }, "https://github.com/al-swaiti/ComfyUI-CascadeResolutions": { "stars": 5, "last_update": "2024-07-31 13:48:47", - "author_account_age_days": 1286 + "author_account_age_days": 1294 }, "https://github.com/al-swaiti/ComfyUI-OllamaGemini": { - "stars": 101, + "stars": 102, "last_update": "2025-05-17 14:07:02", - "author_account_age_days": 1286 + "author_account_age_days": 1294 }, "https://github.com/alanhuang67/ComfyUI-FAI-Node": { "stars": 14, "last_update": "2024-08-02 03:35:41", - "author_account_age_days": 3847 + "author_account_age_days": 3855 }, "https://github.com/alastor-666-1933/caching_to_not_waste": { "stars": 4, "last_update": "2025-05-29 19:57:12", - "author_account_age_days": 4406 + "author_account_age_days": 4414 + }, + "https://github.com/aleolidev/comfy_kaizen_package": { + "stars": 0, + "last_update": "2025-06-21 11:10:52", + "author_account_age_days": 2943 }, "https://github.com/alessandroperilli/apw_nodes": { "stars": 4, - "last_update": "2025-05-20 08:51:05", - "author_account_age_days": 3865 + "last_update": "2025-06-19 14:34:41", + "author_account_age_days": 3873 }, "https://github.com/alessandrozonta/ComfyUI-CenterNode": { "stars": 7, "last_update": "2024-11-14 12:20:40", - "author_account_age_days": 1553 + "author_account_age_days": 1561 }, "https://github.com/alessandrozonta/ComfyUI-Layers": { - "stars": 50, + "stars": 51, "last_update": "2024-07-31 13:46:32", - "author_account_age_days": 1553 + "author_account_age_days": 1561 }, "https://github.com/alessandrozonta/ComfyUI-OpenPose": { "stars": 26, "last_update": "2024-07-31 13:51:14", - "author_account_age_days": 1553 + "author_account_age_days": 1561 }, "https://github.com/alessandrozonta/ComfyUI-PoseDirection": { "stars": 1, "last_update": "2025-06-03 10:12:26", - "author_account_age_days": 1553 + "author_account_age_days": 1561 }, "https://github.com/alessandrozonta/Comfyui-LoopLoader": { "stars": 2, "last_update": "2025-02-21 13:28:39", - "author_account_age_days": 1553 + "author_account_age_days": 1561 }, "https://github.com/alexcong/ComfyUI_QwenVL": { - "stars": 69, + "stars": 70, "last_update": "2025-06-07 21:58:57", - "author_account_age_days": 3943 + "author_account_age_days": 3951 + }, + "https://github.com/alexgenovese/ComfyUI-UNO-Flux": { + "stars": 0, + "last_update": "2025-06-16 17:27:27", + "author_account_age_days": 5379 }, "https://github.com/alexgenovese/ComfyUI_HF_Servelress_Inference": { "stars": 11, "last_update": "2024-09-01 13:04:48", - "author_account_age_days": 5371 + "author_account_age_days": 5379 }, "https://github.com/alexisrolland/ComfyUI-Phi": { "stars": 9, "last_update": "2025-06-02 16:03:13", - "author_account_age_days": 3643 + "author_account_age_days": 3650 }, "https://github.com/alexopus/ComfyUI-Image-Saver": { - "stars": 96, + "stars": 102, "last_update": "2025-06-15 13:48:54", - "author_account_age_days": 3036 + "author_account_age_days": 3044 }, "https://github.com/ali-vilab/ACE_plus": { - "stars": 1172, + "stars": 1188, "last_update": "2025-04-21 06:36:02", - "author_account_age_days": 845 + "author_account_age_days": 853 }, "https://github.com/ali1234/comfyui-job-iterator": { "stars": 116, "last_update": "2024-11-16 07:51:07", - "author_account_age_days": 5217 + "author_account_age_days": 5225 }, "https://github.com/alisson-anjos/ComfyUI-Ollama-Describer": { "stars": 72, "last_update": "2025-06-09 05:43:18", - "author_account_age_days": 957 + "author_account_age_days": 965 }, "https://github.com/alpertunga-bile/image-caption-comfyui": { "stars": 9, "last_update": "2025-05-21 20:09:00", - "author_account_age_days": 1630 + "author_account_age_days": 1637 }, "https://github.com/alpertunga-bile/prompt-generator-comfyui": { - "stars": 101, + "stars": 102, "last_update": "2025-05-21 20:05:48", - "author_account_age_days": 1630 + "author_account_age_days": 1637 }, "https://github.com/alsritter/asymmetric-tiling-comfyui": { "stars": 17, "last_update": "2024-05-22 20:43:07", - "author_account_age_days": 2351 + "author_account_age_days": 2359 }, "https://github.com/alt-key-project/comfyui-dream-project": { "stars": 100, "last_update": "2025-02-16 14:45:43", - "author_account_age_days": 1017 + "author_account_age_days": 1025 }, "https://github.com/alt-key-project/comfyui-dream-video-batches": { - "stars": 71, + "stars": 72, "last_update": "2025-02-23 10:28:40", - "author_account_age_days": 1017 + "author_account_age_days": 1025 }, "https://github.com/an90ray/ComfyUI_RErouter_CustomNodes": { "stars": 0, "last_update": "2024-05-22 22:21:00", - "author_account_age_days": 545 + "author_account_age_days": 553 }, "https://github.com/andersxa/comfyui-PromptAttention": { "stars": 22, "last_update": "2024-06-20 11:09:25", - "author_account_age_days": 3310 + "author_account_age_days": 3318 }, "https://github.com/andygill/comfyui-sunflower-nodes": { "stars": 1, "last_update": "2025-01-02 04:23:22", - "author_account_age_days": 6149 + "author_account_age_days": 6157 }, "https://github.com/angeloshredder/StableCascadeResizer": { "stars": 2, "last_update": "2024-05-23 00:12:55", - "author_account_age_days": 2185 + "author_account_age_days": 2193 }, "https://github.com/angree/ComfyUI-Q_GLB_Material_Modifier": { "stars": 1, "last_update": "2025-05-30 22:51:59", - "author_account_age_days": 3078 + "author_account_age_days": 3086 }, "https://github.com/angree/ComfyUI-Q_find-mask-size": { "stars": 0, "last_update": "2025-05-30 22:53:04", - "author_account_age_days": 3078 + "author_account_age_days": 3086 }, "https://github.com/anhkhoatranle30/Handy-Nodes-ComfyUI": { "stars": 1, "last_update": "2025-03-27 14:09:26", - "author_account_age_days": 2107 + "author_account_age_days": 2115 }, "https://github.com/antrobot1234/antrobots-comfyUI-nodepack": { "stars": 22, "last_update": "2025-04-02 21:40:49", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/arcum42/ComfyUI_SageUtils": { "stars": 5, - "last_update": "2025-06-13 01:02:17", - "author_account_age_days": 6105 + "last_update": "2025-06-23 00:30:41", + "author_account_age_days": 6112 }, "https://github.com/aria1th/ComfyUI-LogicUtils": { - "stars": 51, + "stars": 53, "last_update": "2025-05-22 16:16:37", - "author_account_age_days": 2702 + "author_account_age_days": 2710 }, "https://github.com/asaddi/ComfyUI-YALLM-node": { "stars": 4, "last_update": "2025-03-27 14:39:38", - "author_account_age_days": 3891 + "author_account_age_days": 3899 }, "https://github.com/asaddi/YALLM-LlamaVision": { "stars": 5, "last_update": "2025-03-27 14:42:04", - "author_account_age_days": 3891 + "author_account_age_days": 3899 }, "https://github.com/asagi4/ComfyUI-Adaptive-Guidance": { - "stars": 57, + "stars": 58, "last_update": "2025-05-03 18:12:38", - "author_account_age_days": 798 + "author_account_age_days": 805 }, "https://github.com/asagi4/ComfyUI-CADS": { "stars": 41, - "last_update": "2025-05-03 18:07:50", - "author_account_age_days": 798 + "last_update": "2025-06-23 17:58:56", + "author_account_age_days": 805 }, "https://github.com/asagi4/ComfyUI-NPNet": { "stars": 17, "last_update": "2024-12-10 17:20:10", - "author_account_age_days": 798 + "author_account_age_days": 805 }, "https://github.com/asagi4/comfyui-prompt-control": { - "stars": 293, - "last_update": "2025-06-13 18:56:22", - "author_account_age_days": 798 + "stars": 299, + "last_update": "2025-06-21 10:17:42", + "author_account_age_days": 805 }, "https://github.com/asagi4/comfyui-utility-nodes": { "stars": 8, "last_update": "2025-01-30 23:01:52", - "author_account_age_days": 798 + "author_account_age_days": 805 }, "https://github.com/asdrabael/Hunyuan-Multi-Lora-Loader": { "stars": 4, "last_update": "2025-02-09 02:50:51", - "author_account_age_days": 371 + "author_account_age_days": 379 }, "https://github.com/asutermo/ComfyUI-Flux-TryOff": { - "stars": 41, + "stars": 42, "last_update": "2025-03-10 21:05:14", - "author_account_age_days": 5268 + "author_account_age_days": 5276 }, "https://github.com/aszc-dev/ComfyUI-CoreMLSuite": { - "stars": 158, + "stars": 160, "last_update": "2025-04-01 21:45:31", - "author_account_age_days": 3084 + "author_account_age_days": 3092 }, "https://github.com/atluslin/comfyui_arcane_style_trans": { "stars": 0, "last_update": "2025-03-14 01:25:41", - "author_account_age_days": 3383 + "author_account_age_days": 3391 }, "https://github.com/atmaranto/ComfyUI-SaveAsScript": { - "stars": 140, + "stars": 143, "last_update": "2024-10-09 08:44:54", - "author_account_age_days": 2705 + "author_account_age_days": 2713 }, "https://github.com/attashe/ComfyUI-FluxRegionAttention": { "stars": 131, "last_update": "2025-03-02 16:37:39", - "author_account_age_days": 3981 + "author_account_age_days": 3989 }, "https://github.com/audioscavenger/ComfyUI-Thumbnails": { "stars": 30, "last_update": "2025-01-06 23:41:08", - "author_account_age_days": 4477 + "author_account_age_days": 4485 }, "https://github.com/audioscavenger/save-image-extended-comfyui": { "stars": 98, "last_update": "2025-06-02 02:01:15", - "author_account_age_days": 4477 + "author_account_age_days": 4485 }, "https://github.com/austinbrown34/ComfyUI-IO-Helpers": { "stars": 1, "last_update": "2025-02-13 14:29:22", - "author_account_age_days": 4455 + "author_account_age_days": 4463 }, "https://github.com/avatechai/avatar-graph-comfyui": { "stars": 262, "last_update": "2024-05-22 21:14:14", - "author_account_age_days": 1211 + "author_account_age_days": 1219 }, "https://github.com/avenstack/ComfyUI-AV-FunASR": { - "stars": 6, + "stars": 8, "last_update": "2025-06-13 05:53:11", - "author_account_age_days": 60 + "author_account_age_days": 68 }, "https://github.com/avenstack/ComfyUI-AV-LatentSync": { "stars": 2, "last_update": "2025-05-28 14:27:42", - "author_account_age_days": 60 + "author_account_age_days": 68 }, "https://github.com/avenstack/ComfyUI-AV-MegaTTS3": { "stars": 0, "last_update": "2025-05-25 13:35:03", - "author_account_age_days": 60 + "author_account_age_days": 68 }, "https://github.com/avocadori/ComfyUI-load-image-prompt-lora": { "stars": 0, "last_update": "2025-06-02 20:35:37", - "author_account_age_days": 430 + "author_account_age_days": 438 }, "https://github.com/aws-samples/comfyui-llm-node-for-amazon-bedrock": { - "stars": 25, + "stars": 26, "last_update": "2025-03-07 08:09:46", - "author_account_age_days": 3915 + "author_account_age_days": 3923 + }, + "https://github.com/azazeal04/Azazeal_Anime_Characters_ComfyUI": { + "stars": 1, + "last_update": "2025-06-21 18:26:40", + "author_account_age_days": 783 }, "https://github.com/azure-dragon-ai/ComfyUI-ClipScore-Nodes": { "stars": 4, "last_update": "2024-05-22 23:16:28", - "author_account_age_days": 658 + "author_account_age_days": 666 }, "https://github.com/azure-dragon-ai/ComfyUI-HPSv2-Nodes": { "stars": 6, "last_update": "2025-05-11 05:18:07", - "author_account_age_days": 658 + "author_account_age_days": 666 }, "https://github.com/babe-and-spencer-enterprises/base-comfyui-node": { - "stars": 2, - "last_update": "2025-06-15 04:58:41", - "author_account_age_days": 34 + "stars": 3, + "last_update": "2025-06-23 16:12:19", + "author_account_age_days": 42 }, "https://github.com/bablueza/ComfyUI-Vaja-Ai4thai": { "stars": 0, "last_update": "2025-04-23 04:14:55", - "author_account_age_days": 2101 + "author_account_age_days": 2109 }, "https://github.com/babydjac/comfyui-grok-prompts": { "stars": 1, "last_update": "2025-06-06 09:47:19", - "author_account_age_days": 762 + "author_account_age_days": 770 }, "https://github.com/babydjac/comfyui-smart-scaler": { "stars": 0, "last_update": "2025-05-16 07:28:19", - "author_account_age_days": 762 + "author_account_age_days": 770 }, "https://github.com/badayvedat/ComfyUI-fal-Connector": { "stars": 42, - "last_update": "2025-03-27 17:08:12", - "author_account_age_days": 2127 + "last_update": "2025-06-20 15:50:56", + "author_account_age_days": 2135 }, "https://github.com/badjeff/comfyui_lora_tag_loader": { "stars": 83, "last_update": "2024-05-22 20:40:03", - "author_account_age_days": 5719 + "author_account_age_days": 5727 }, "https://github.com/badxprogramm/ComfyUI-GradientBlur": { "stars": 1, "last_update": "2025-04-10 03:47:51", - "author_account_age_days": 629 + "author_account_age_days": 637 }, "https://github.com/baicai99/ComfyUI-FrameSkipping": { - "stars": 9, - "last_update": "2024-12-03 09:26:50", - "author_account_age_days": 1188 + "stars": 10, + "last_update": "2025-06-23 02:50:12", + "author_account_age_days": 1195 }, "https://github.com/bananasss00/ComfyUI-SP-Nodes": { "stars": 14, "last_update": "2025-02-22 18:17:31", - "author_account_age_days": 2891 + "author_account_age_days": 2899 }, "https://github.com/bananasss00/ComfyUI-flux_fill_patcher": { "stars": 7, "last_update": "2024-11-25 20:04:20", - "author_account_age_days": 2891 + "author_account_age_days": 2899 }, "https://github.com/banodoco/steerable-motion": { - "stars": 895, - "last_update": "2024-06-15 23:01:54", - "author_account_age_days": 759 + "stars": 897, + "last_update": "2025-06-23 14:13:04", + "author_account_age_days": 766 }, "https://github.com/banqingyuan/ComfyUI-text-replace": { "stars": 0, "last_update": "2024-09-22 16:14:22", - "author_account_age_days": 2656 + "author_account_age_days": 2663 }, "https://github.com/bartly/Comfyui_babel_removebg_api": { "stars": 6, "last_update": "2024-10-14 00:48:34", - "author_account_age_days": 4483 + "author_account_age_days": 4491 }, "https://github.com/bash-j/mikey_nodes": { - "stars": 153, + "stars": 154, "last_update": "2025-03-22 01:52:20", - "author_account_age_days": 4544 + "author_account_age_days": 4552 }, "https://github.com/bbtaivi/ComfyUI-Aiv-Param": { "stars": 1, "last_update": "2025-02-16 03:01:20", - "author_account_age_days": 811 + "author_account_age_days": 819 }, "https://github.com/bear2b/comfyui-argo-nodes": { "stars": 0, "last_update": "2025-01-16 11:11:38", - "author_account_age_days": 3322 + "author_account_age_days": 3329 }, "https://github.com/bedovyy/ComfyUI_NAIDGenerator": { - "stars": 65, + "stars": 67, "last_update": "2025-05-30 14:03:50", - "author_account_age_days": 719 + "author_account_age_days": 727 }, "https://github.com/bemoregt/ComfyUI_CustomNode_Image2Spectrum": { "stars": 1, "last_update": "2025-03-28 12:13:20", - "author_account_age_days": 3317 + "author_account_age_days": 3324 }, "https://github.com/benda1989/CosyVoice2_ComfyUI": { "stars": 19, "last_update": "2025-04-16 08:39:57", - "author_account_age_days": 2470 + "author_account_age_days": 2478 }, "https://github.com/benda1989/Sonic_ComfyUI": { "stars": 3, "last_update": "2025-02-24 10:04:56", - "author_account_age_days": 2470 + "author_account_age_days": 2478 }, "https://github.com/benjamin-bertram/Comfyui_OIDN_Denoiser": { "stars": 0, "last_update": "2025-06-12 22:37:05", - "author_account_age_days": 2123 + "author_account_age_days": 2131 }, "https://github.com/benjiyaya/ComfyUI-HunyuanVideoImagesGuider": { "stars": 29, "last_update": "2025-01-14 10:42:44", - "author_account_age_days": 469 + "author_account_age_days": 477 }, "https://github.com/benjiyaya/ComfyUI-KokoroTTS": { "stars": 56, "last_update": "2025-03-18 20:13:52", - "author_account_age_days": 469 + "author_account_age_days": 477 }, "https://github.com/bentoml/comfy-pack": { - "stars": 157, - "last_update": "2025-06-13 03:16:45", - "author_account_age_days": 2267 + "stars": 159, + "last_update": "2025-06-23 08:13:37", + "author_account_age_days": 2275 }, "https://github.com/big-mon/ComfyUI-ResolutionPresets": { "stars": 1, "last_update": "2025-04-12 17:05:21", - "author_account_age_days": 3033 + "author_account_age_days": 3041 }, "https://github.com/bikiam/ComfyUI_WhisperSRT": { "stars": 0, "last_update": "2025-06-01 13:56:23", - "author_account_age_days": 507 + "author_account_age_days": 515 }, "https://github.com/bilal-arikan/ComfyUI_TextAssets": { "stars": 2, "last_update": "2024-05-22 23:23:50", - "author_account_age_days": 3864 + "author_account_age_days": 3872 }, "https://github.com/billwuhao/ComfyUI_ACE-Step": { - "stars": 140, + "stars": 144, "last_update": "2025-05-28 08:39:13", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_AudioTools": { - "stars": 49, + "stars": 50, "last_update": "2025-06-03 17:11:26", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_CSM": { "stars": 5, "last_update": "2025-06-02 14:00:17", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_DiffRhythm": { - "stars": 106, + "stars": 107, "last_update": "2025-05-30 12:12:57", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_EraX-WoW-Turbo": { - "stars": 13, + "stars": 14, "last_update": "2025-05-23 09:41:43", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_IndexTTS": { - "stars": 53, + "stars": 72, "last_update": "2025-06-02 13:54:19", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_KokoroTTS_MW": { - "stars": 23, + "stars": 24, "last_update": "2025-06-02 14:03:36", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_MegaTTS3": { - "stars": 100, + "stars": 101, "last_update": "2025-06-11 01:01:40", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_NotaGen": { - "stars": 45, + "stars": 47, "last_update": "2025-06-06 02:58:28", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_OneButtonPrompt": { "stars": 20, "last_update": "2025-05-06 01:07:39", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_OuteTTS": { "stars": 9, "last_update": "2025-06-11 06:14:07", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_PortraitTools": { - "stars": 14, + "stars": 15, "last_update": "2025-06-15 13:31:45", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_SOME": { "stars": 5, "last_update": "2025-06-10 08:08:17", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_SparkTTS": { "stars": 44, "last_update": "2025-05-23 09:45:08", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_StepAudioTTS": { - "stars": 126, + "stars": 127, "last_update": "2025-05-23 09:45:26", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_gemmax": { - "stars": 20, + "stars": 21, "last_update": "2025-05-30 12:17:42", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/ComfyUI_parakeet-tdt": { "stars": 3, "last_update": "2025-06-15 13:24:58", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/billwuhao/Comfyui_HeyGem": { - "stars": 70, + "stars": 72, "last_update": "2025-06-02 14:14:35", - "author_account_age_days": 2293 + "author_account_age_days": 2301 }, "https://github.com/bitaffinity/ComfyUI_HF_Inference": { "stars": 3, "last_update": "2024-06-14 10:23:29", - "author_account_age_days": 414 + "author_account_age_days": 421 }, "https://github.com/black-forest-labs/bfl-comfy-nodes": { - "stars": 76, + "stars": 77, "last_update": "2025-02-07 22:13:26", - "author_account_age_days": 453 + "author_account_age_days": 461 }, "https://github.com/blackcodetavern/ComfyUI-Benripack": { "stars": 2, "last_update": "2024-09-07 09:06:00", - "author_account_age_days": 3230 + "author_account_age_days": 3238 }, "https://github.com/blepping/ComfyUI-ApplyResAdapterUnet": { "stars": 31, "last_update": "2025-02-27 16:14:46", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blepping/ComfyUI-bleh": { - "stars": 102, + "stars": 104, "last_update": "2025-05-23 13:02:29", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blepping/ComfyUI-sonar": { "stars": 42, "last_update": "2025-06-12 15:38:19", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blepping/comfyui_jankdiffusehigh": { "stars": 34, "last_update": "2025-05-06 10:28:37", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blepping/comfyui_jankhidiffusion": { "stars": 124, "last_update": "2025-05-06 10:34:03", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blepping/comfyui_overly_complicated_sampling": { "stars": 26, "last_update": "2025-05-25 16:30:41", - "author_account_age_days": 511 + "author_account_age_days": 518 }, "https://github.com/blib-la/blibla-comfyui-extensions": { "stars": 173, "last_update": "2025-04-29 06:49:03", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/blob8/ComfyUI_sloppy-comic": { - "stars": 7, + "stars": 8, "last_update": "2024-09-20 18:53:34", - "author_account_age_days": 425 + "author_account_age_days": 433 }, "https://github.com/blovett80/ComfyUI-PixelDojo": { "stars": 0, "last_update": "2025-03-27 10:30:18", - "author_account_age_days": 559 + "author_account_age_days": 567 }, "https://github.com/blueraincoatli/comfyUI_SillyNodes": { "stars": 3, "last_update": "2025-01-17 09:17:48", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/bluevisor/ComfyUI_PS_Blend_Node": { "stars": 2, "last_update": "2025-03-31 08:48:48", - "author_account_age_days": 4924 + "author_account_age_days": 4932 }, "https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo": { "stars": 47, "last_update": "2024-05-22 18:11:51", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/bmad4ever/comfyui_ab_samplercustom": { "stars": 9, "last_update": "2024-09-17 20:18:46", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/bmad4ever/comfyui_lists_cartesian_product": { "stars": 4, "last_update": "2025-03-17 14:49:40", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/bmad4ever/comfyui_quilting": { "stars": 10, "last_update": "2025-03-17 14:50:15", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/bmad4ever/comfyui_wfc_like": { "stars": 5, "last_update": "2025-03-17 14:51:47", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/bobmagicii/comfykit-custom-nodes": { "stars": 1, "last_update": "2024-08-22 22:28:30", - "author_account_age_days": 5101 + "author_account_age_days": 5109 }, "https://github.com/bollerdominik/ComfyUI-load-lora-from-url": { "stars": 0, "last_update": "2025-06-05 16:21:55", - "author_account_age_days": 3771 + "author_account_age_days": 3778 }, "https://github.com/bombax-xiaoice/ComfyUI-Allegro": { "stars": 4, "last_update": "2025-05-13 04:00:11", - "author_account_age_days": 265 + "author_account_age_days": 273 }, "https://github.com/bombax-xiaoice/ComfyUI-DisPose": { "stars": 0, "last_update": "2025-03-03 06:49:40", - "author_account_age_days": 265 + "author_account_age_days": 273 }, "https://github.com/bombax-xiaoice/ComfyUI-MagicDance": { "stars": 2, "last_update": "2024-12-26 04:43:40", - "author_account_age_days": 265 + "author_account_age_days": 273 }, "https://github.com/bombax-xiaoice/ComfyUI-Open-Sora-I2V": { "stars": 1, "last_update": "2025-01-21 07:58:50", - "author_account_age_days": 265 + "author_account_age_days": 273 }, "https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan": { "stars": 1, "last_update": "2025-01-22 05:38:11", - "author_account_age_days": 265 + "author_account_age_days": 273 }, "https://github.com/bombless/comfyUI-RememberingUtils": { "stars": 0, "last_update": "2024-12-25 01:31:05", - "author_account_age_days": 4916 + "author_account_age_days": 4923 }, "https://github.com/bongsang/ComfyUI-Bongsang": { "stars": 0, "last_update": "2025-01-05 05:42:30", - "author_account_age_days": 3960 + "author_account_age_days": 3968 }, "https://github.com/boredofnames/ComfyUI-ntfy": { "stars": 0, "last_update": "2025-03-28 00:54:54", - "author_account_age_days": 4455 + "author_account_age_days": 4463 }, "https://github.com/boricuapab/ComfyUI-Bori-JsonSetGetConverter": { "stars": 0, "last_update": "2025-06-02 06:52:21", - "author_account_age_days": 1926 + "author_account_age_days": 1934 }, "https://github.com/bradsec/ComfyUI_ResolutionSelector": { "stars": 12, "last_update": "2024-07-07 12:15:49", - "author_account_age_days": 4013 + "author_account_age_days": 4021 }, "https://github.com/bradsec/ComfyUI_StringEssentials": { - "stars": 13, + "stars": 14, "last_update": "2025-06-09 06:17:09", - "author_account_age_days": 4013 + "author_account_age_days": 4021 }, "https://github.com/braintacles/braintacles-comfyui-nodes": { "stars": 1, "last_update": "2024-07-31 15:01:52", - "author_account_age_days": 788 + "author_account_age_days": 795 }, "https://github.com/brantje/ComfyUI-api-tools": { "stars": 3, "last_update": "2025-05-28 11:37:29", - "author_account_age_days": 4602 + "author_account_age_days": 4609 }, "https://github.com/brantje/ComfyUI_MagicQuill": { "stars": 3, "last_update": "2025-05-20 19:32:21", - "author_account_age_days": 4602 + "author_account_age_days": 4609 }, "https://github.com/brayevalerien/ComfyUI-resynthesizer": { - "stars": 19, + "stars": 20, "last_update": "2025-02-19 10:33:17", - "author_account_age_days": 1950 + "author_account_age_days": 1958 }, "https://github.com/brianfitzgerald/style_aligned_comfy": { "stars": 300, "last_update": "2025-03-24 20:04:44", - "author_account_age_days": 4596 + "author_account_age_days": 4604 }, "https://github.com/bronkula/comfyui-fitsize": { "stars": 49, "last_update": "2024-05-22 21:32:34", - "author_account_age_days": 5512 + "author_account_age_days": 5520 }, "https://github.com/bruefire/ComfyUI-SeqImageLoader": { - "stars": 40, - "last_update": "2025-06-09 17:54:50", - "author_account_age_days": 2723 + "stars": 41, + "last_update": "2025-06-22 19:09:54", + "author_account_age_days": 2730 }, "https://github.com/budihartono/comfyui-aspect-ratio-presets": { "stars": 1, "last_update": "2025-06-12 10:55:46", - "author_account_age_days": 5043 + "author_account_age_days": 5051 }, "https://github.com/budihartono/comfyui_otonx_nodes": { "stars": 1, "last_update": "2024-07-31 16:01:47", - "author_account_age_days": 5043 + "author_account_age_days": 5051 }, "https://github.com/bugltd/ComfyLab-Pack": { "stars": 5, "last_update": "2025-05-13 17:35:50", - "author_account_age_days": 156 + "author_account_age_days": 164 }, "https://github.com/burnsbert/ComfyUI-EBU-LMStudio": { - "stars": 12, + "stars": 13, "last_update": "2025-06-08 01:10:11", - "author_account_age_days": 5002 + "author_account_age_days": 5010 }, "https://github.com/burnsbert/ComfyUI-EBU-PromptHelper": { "stars": 1, "last_update": "2025-06-08 01:11:52", - "author_account_age_days": 5002 + "author_account_age_days": 5010 }, "https://github.com/burnsbert/ComfyUI-EBU-Workflow": { "stars": 0, "last_update": "2025-06-08 02:44:44", - "author_account_age_days": 5002 + "author_account_age_days": 5010 }, "https://github.com/bvhari/ComfyUI_CFGStar": { "stars": 1, "last_update": "2025-04-10 17:53:08", - "author_account_age_days": 1532 + "author_account_age_days": 1539 }, "https://github.com/bvhari/ComfyUI_ImageProcessing": { - "stars": 21, + "stars": 22, "last_update": "2025-03-30 18:55:42", - "author_account_age_days": 1532 + "author_account_age_days": 1539 }, "https://github.com/bvhari/ComfyUI_PerpCFG": { "stars": 1, "last_update": "2025-03-30 18:53:54", - "author_account_age_days": 1532 + "author_account_age_days": 1539 }, "https://github.com/bvhari/ComfyUI_PerpWeight": { "stars": 12, "last_update": "2025-03-30 18:55:52", - "author_account_age_days": 1532 + "author_account_age_days": 1539 }, "https://github.com/bvhari/ComfyUI_SUNoise": { "stars": 13, "last_update": "2025-03-30 18:55:16", - "author_account_age_days": 1532 + "author_account_age_days": 1539 }, "https://github.com/bytedance/ComfyUI-HyperLoRA": { - "stars": 336, + "stars": 347, "last_update": "2025-05-19 05:09:39", - "author_account_age_days": 4445 + "author_account_age_days": 4453 }, "https://github.com/bytedance/ComfyUI_InfiniteYou": { - "stars": 159, + "stars": 172, "last_update": "2025-05-23 23:21:52", - "author_account_age_days": 4445 + "author_account_age_days": 4453 }, "https://github.com/bytedance/comfyui-lumi-batcher": { - "stars": 32, - "last_update": "2025-06-16 07:05:17", - "author_account_age_days": 4445 + "stars": 152, + "last_update": "2025-06-24 08:52:51", + "author_account_age_days": 4453 }, "https://github.com/c0ffymachyne/ComfyUI_BeatByte": { "stars": 5, "last_update": "2025-04-03 03:08:15", - "author_account_age_days": 4872 + "author_account_age_days": 4879 }, "https://github.com/c0ffymachyne/ComfyUI_SignalProcessing": { "stars": 11, "last_update": "2025-05-14 01:41:00", - "author_account_age_days": 4872 + "author_account_age_days": 4879 }, "https://github.com/cake-ml/tiny-sana-preview": { "stars": 2, "last_update": "2025-02-08 00:36:49", - "author_account_age_days": 238 + "author_account_age_days": 246 }, "https://github.com/calcuis/gguf": { - "stars": 62, - "last_update": "2025-06-09 01:01:06", - "author_account_age_days": 1004 + "stars": 66, + "last_update": "2025-06-20 00:59:37", + "author_account_age_days": 1012 }, "https://github.com/caleboleary/ComfyUI-Arc2Face": { "stars": 44, "last_update": "2024-09-02 23:00:00", - "author_account_age_days": 3659 + "author_account_age_days": 3667 }, "https://github.com/caleboleary/Comfyui-calbenodes": { "stars": 1, "last_update": "2024-09-16 19:27:58", - "author_account_age_days": 3659 + "author_account_age_days": 3667 }, "https://github.com/camenduru/ComfyUI-TostAI": { "stars": 1, "last_update": "2024-08-22 04:04:06", - "author_account_age_days": 2125 + "author_account_age_days": 2133 }, "https://github.com/cardenluo/ComfyUI-Apt_Preset": { - "stars": 20, - "last_update": "2025-06-12 15:24:19", - "author_account_age_days": 761 + "stars": 21, + "last_update": "2025-06-21 03:25:27", + "author_account_age_days": 768 + }, + "https://github.com/casterpollux/MiniMax-bmo": { + "stars": 30, + "last_update": "2025-06-21 07:37:32", + "author_account_age_days": 38 }, "https://github.com/catboxanon/comfyui_stealth_pnginfo": { "stars": 3, "last_update": "2025-04-09 03:39:29", - "author_account_age_days": 888 + "author_account_age_days": 896 }, "https://github.com/cathodeDreams/comfyui-azul-scripts": { "stars": 0, "last_update": "2025-04-30 17:03:38", - "author_account_age_days": 825 + "author_account_age_days": 833 }, "https://github.com/cdb-boop/ComfyUI-Bringing-Old-Photos-Back-to-Life": { "stars": 459, "last_update": "2024-09-12 06:55:50", - "author_account_age_days": 1561 + "author_account_age_days": 1569 }, "https://github.com/cdb-boop/comfyui-image-round": { "stars": 10, "last_update": "2025-05-10 13:32:13", - "author_account_age_days": 1561 + "author_account_age_days": 1569 }, "https://github.com/cdxOo/comfyui-text-node-with-comments": { "stars": 2, "last_update": "2024-08-03 00:54:38", - "author_account_age_days": 3652 + "author_account_age_days": 3660 }, "https://github.com/celoron/ComfyUI-VisualQueryTemplate": { "stars": 12, "last_update": "2025-04-01 20:35:56", - "author_account_age_days": 5369 + "author_account_age_days": 5376 }, "https://github.com/celsojr2013/comfyui_jamworks_client": { "stars": 0, "last_update": "2024-06-23 12:35:44", - "author_account_age_days": 3756 + "author_account_age_days": 3763 }, "https://github.com/celsojr2013/comfyui_simpletools": { "stars": 2, "last_update": "2024-06-22 11:35:40", - "author_account_age_days": 3756 + "author_account_age_days": 3763 }, "https://github.com/cenzijing/ComfyUI-Markmap": { "stars": 1, "last_update": "2025-01-04 21:00:08", - "author_account_age_days": 1822 + "author_account_age_days": 1830 }, "https://github.com/cerspense/ComfyUI_cspnodes": { "stars": 33, "last_update": "2024-12-17 04:07:09", - "author_account_age_days": 3039 + "author_account_age_days": 3046 }, "https://github.com/ceruleandeep/ComfyUI-LLaVA-Captioner": { "stars": 133, "last_update": "2024-08-03 16:22:31", - "author_account_age_days": 1510 + "author_account_age_days": 1518 }, "https://github.com/cganimitta/ComfyUI_CGAnimittaTools": { "stars": 41, "last_update": "2025-04-11 05:29:55", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/chakib-belgaid/ComfyUI-autosize": { "stars": 0, "last_update": "2024-06-14 07:13:20", - "author_account_age_days": 4193 + "author_account_age_days": 4201 }, "https://github.com/chakib-belgaid/Comfyui_Prompt_styler": { "stars": 0, "last_update": "2024-07-01 12:40:52", - "author_account_age_days": 4193 + "author_account_age_days": 4201 }, "https://github.com/chandlergis/ComfyUI-IMG_Query": { "stars": 1, "last_update": "2024-05-23 01:25:57", - "author_account_age_days": 713 + "author_account_age_days": 721 }, "https://github.com/chandlergis/ComfyUI_EmojiOverlay": { "stars": 0, "last_update": "2024-06-14 09:05:03", - "author_account_age_days": 713 + "author_account_age_days": 721 }, "https://github.com/changwook987/ComfyUI-Small-Utility": { "stars": 0, "last_update": "2025-01-25 17:18:32", - "author_account_age_days": 1550 + "author_account_age_days": 1558 }, "https://github.com/chaojie/ComfyUI-AniPortrait": { "stars": 252, "last_update": "2024-05-22 22:26:03", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-CameraCtrl-Wrapper": { "stars": 21, "last_update": "2024-06-14 09:07:23", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Champ": { "stars": 24, "last_update": "2024-05-22 22:26:47", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-DragAnything": { "stars": 70, "last_update": "2024-06-14 10:23:53", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-DragNUWA": { - "stars": 404, + "stars": 406, "last_update": "2024-06-14 10:25:01", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-DynamiCrafter": { "stars": 129, "last_update": "2024-06-14 10:23:59", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-EasyAnimate": { "stars": 54, "last_update": "2024-05-22 22:24:00", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Gemma": { "stars": 6, "last_update": "2024-05-22 22:27:47", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-I2VGEN-XL": { "stars": 28, "last_update": "2024-06-14 09:06:10", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Img2Img-Turbo": { "stars": 36, "last_update": "2024-05-22 22:26:30", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-LaVIT": { "stars": 12, "last_update": "2024-06-14 10:27:44", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-LightGlue": { "stars": 48, "last_update": "2024-01-20 16:53:51", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Moore-AnimateAnyone": { "stars": 213, "last_update": "2024-06-10 20:16:06", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Motion-Vector-Extractor": { "stars": 1, "last_update": "2024-06-14 10:26:15", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-MotionCtrl": { "stars": 138, "last_update": "2024-06-14 10:26:02", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-MotionCtrl-SVD": { "stars": 86, "last_update": "2024-06-14 10:26:30", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-MuseTalk": { - "stars": 261, + "stars": 262, "last_update": "2024-05-22 22:25:07", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-MuseV": { - "stars": 158, + "stars": 159, "last_update": "2024-05-22 22:25:31", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Open-Sora": { "stars": 103, "last_update": "2024-07-19 05:13:25", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Open-Sora-Plan": { "stars": 50, "last_update": "2024-05-29 16:15:10", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Panda3d": { "stars": 16, "last_update": "2024-06-14 10:28:47", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Pymunk": { "stars": 16, "last_update": "2024-06-14 12:02:32", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-RAFT": { "stars": 26, "last_update": "2024-06-14 11:02:00", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-SimDA": { "stars": 13, "last_update": "2024-06-14 12:02:39", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Trajectory": { "stars": 6, "last_update": "2024-05-22 22:27:12", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-Video-Editing-X-Attention": { "stars": 17, "last_update": "2024-06-14 10:28:16", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-dust3r": { "stars": 22, "last_update": "2024-05-22 22:27:33", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI_StreamingT2V": { "stars": 36, "last_update": "2024-06-14 10:26:21", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaosaiart/Chaosaiart-Nodes": { "stars": 103, "last_update": "2025-05-06 07:15:41", - "author_account_age_days": 691 + "author_account_age_days": 698 }, "https://github.com/charlyad142/ComfyUI_bfl_api_pro_nodes": { "stars": 0, "last_update": "2025-05-07 19:34:13", - "author_account_age_days": 2972 + "author_account_age_days": 2980 }, "https://github.com/chaunceyyann/comfyui-image-processing-nodes": { "stars": 0, - "last_update": "2025-06-05 05:23:44", - "author_account_age_days": 4224 + "last_update": "2025-06-20 02:01:53", + "author_account_age_days": 4232 }, "https://github.com/checkbins/checkbin-comfy": { "stars": 0, "last_update": "2025-01-31 18:05:33", - "author_account_age_days": 240 + "author_account_age_days": 248 }, "https://github.com/chenbaiyujason/ComfyUI_StepFun": { "stars": 6, "last_update": "2024-12-05 14:45:27", - "author_account_age_days": 2091 + "author_account_age_days": 2099 }, "https://github.com/chenlongming/ComfyUI_Spectral": { "stars": 1, "last_update": "2025-02-22 17:20:35", - "author_account_age_days": 3535 + "author_account_age_days": 3542 }, "https://github.com/chenpipi0807/ComfyUI-Index-TTS": { - "stars": 151, + "stars": 167, "last_update": "2025-06-09 09:57:33", - "author_account_age_days": 644 + "author_account_age_days": 651 }, "https://github.com/chenpipi0807/ComfyUI_NSFW_Godie": { "stars": 2, "last_update": "2025-03-20 11:48:28", - "author_account_age_days": 644 + "author_account_age_days": 651 }, "https://github.com/chenpipi0807/PIP_ArtisticWords": { "stars": 26, "last_update": "2025-03-21 07:29:20", - "author_account_age_days": 644 + "author_account_age_days": 651 }, "https://github.com/chenpx976/ComfyUI-RunRunRun": { "stars": 0, "last_update": "2024-05-23 01:19:37", - "author_account_age_days": 3772 + "author_account_age_days": 3780 }, "https://github.com/cherninlab/logo-generator-comfyui": { "stars": 1, "last_update": "2024-12-22 15:45:31", - "author_account_age_days": 453 + "author_account_age_days": 461 }, "https://github.com/chesnokovivan/ComfyUI-Novakid": { "stars": 0, "last_update": "2024-06-10 20:15:56", - "author_account_age_days": 1887 + "author_account_age_days": 1894 }, "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper": { - "stars": 336, + "stars": 338, "last_update": "2025-01-01 12:55:16", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_CogView4_Wrapper": { - "stars": 50, + "stars": 51, "last_update": "2025-03-06 09:27:25", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_FaceSimilarity": { "stars": 33, "last_update": "2025-03-31 13:12:01", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_Janus_Wrapper": { "stars": 17, "last_update": "2025-03-12 02:00:43", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_LayerStyle": { - "stars": 2328, - "last_update": "2025-05-17 12:58:06", - "author_account_age_days": 801 + "stars": 2354, + "last_update": "2025-06-20 00:45:04", + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_LayerStyle_Advance": { - "stars": 347, + "stars": 357, "last_update": "2025-05-17 12:57:26", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_MSSpeech_TTS": { "stars": 29, "last_update": "2025-03-31 13:11:24", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_OmniGen_Wrapper": { "stars": 141, "last_update": "2025-03-12 01:58:47", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chflame163/ComfyUI_WordCloud": { "stars": 108, "last_update": "2025-03-31 13:11:39", - "author_account_age_days": 801 + "author_account_age_days": 809 }, "https://github.com/chibiace/ComfyUI-Chibi-Nodes": { "stars": 74, "last_update": "2025-03-18 11:13:16", - "author_account_age_days": 3206 + "author_account_age_days": 3214 }, "https://github.com/choey/Comfy-Topaz": { - "stars": 189, + "stars": 191, "last_update": "2024-09-28 08:02:47", - "author_account_age_days": 5880 + "author_account_age_days": 5888 }, "https://github.com/chou18194766xx/comfyui-EncryptSave": { "stars": 4, "last_update": "2025-05-18 07:55:45", - "author_account_age_days": 583 + "author_account_age_days": 591 }, "https://github.com/chou18194766xx/comfyui_EncryptPreview": { "stars": 2, "last_update": "2025-04-26 12:29:43", - "author_account_age_days": 583 + "author_account_age_days": 591 }, "https://github.com/chri002/ComfyUI_depthMapOperation": { "stars": 10, "last_update": "2025-05-27 06:19:56", - "author_account_age_days": 2077 + "author_account_age_days": 2085 }, "https://github.com/chris-arsenault/ComfyUI-AharaNodes": { "stars": 0, "last_update": "2024-12-25 16:45:58", - "author_account_age_days": 4329 + "author_account_age_days": 4337 }, "https://github.com/chris-the-wiz/EmbeddingsCurveEditor_ComfyUI": { "stars": 7, "last_update": "2024-07-31 13:51:59", - "author_account_age_days": 2153 + "author_account_age_days": 2161 }, "https://github.com/chrisfreilich/virtuoso-nodes": { "stars": 87, "last_update": "2025-04-19 22:57:17", - "author_account_age_days": 1089 + "author_account_age_days": 1097 }, "https://github.com/chrisgoringe/cg-controller": { - "stars": 69, + "stars": 71, "last_update": "2025-04-25 00:43:21", - "author_account_age_days": 4422 + "author_account_age_days": 4430 }, "https://github.com/chrisgoringe/cg-image-filter": { - "stars": 59, - "last_update": "2025-05-27 05:44:53", - "author_account_age_days": 4422 + "stars": 62, + "last_update": "2025-06-23 06:11:13", + "author_account_age_days": 4430 }, "https://github.com/chrisgoringe/cg-noisetools": { - "stars": 16, + "stars": 17, "last_update": "2024-12-17 04:09:18", - "author_account_age_days": 4422 + "author_account_age_days": 4430 }, "https://github.com/chrisgoringe/cg-prompt-info": { "stars": 30, "last_update": "2024-05-22 21:07:33", - "author_account_age_days": 4422 + "author_account_age_days": 4430 }, "https://github.com/chrisgoringe/cg-use-everywhere": { - "stars": 719, - "last_update": "2025-05-24 04:17:08", - "author_account_age_days": 4422 + "stars": 722, + "last_update": "2025-06-24 04:54:36", + "author_account_age_days": 4430 }, "https://github.com/chrish-slingshot/CrasHUtils": { "stars": 13, "last_update": "2024-10-29 22:55:39", - "author_account_age_days": 957 + "author_account_age_days": 965 }, "https://github.com/chrissy0/chris-comfyui-nodes": { "stars": 1, "last_update": "2024-09-17 16:09:35", - "author_account_age_days": 2412 + "author_account_age_days": 2419 }, "https://github.com/christian-byrne/audio-separation-nodes-comfyui": { - "stars": 228, + "stars": 236, "last_update": "2025-06-16 04:01:47", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/claude-code-comfyui-nodes": { - "stars": 0, - "last_update": "2025-06-16 01:50:17", - "author_account_age_days": 1705 + "stars": 1, + "last_update": "2025-06-17 04:43:43", + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/comfyui-default-values-manager": { "stars": 11, "last_update": "2024-07-28 20:52:51", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/comfyui-search-navigation": { "stars": 7, "last_update": "2024-06-26 04:41:12", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/img2colors-comfyui-node": { - "stars": 12, + "stars": 13, "last_update": "2025-01-05 18:48:59", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/img2txt-comfyui-nodes": { "stars": 89, "last_update": "2025-03-14 10:38:33", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/size-match-compositing-nodes": { "stars": 5, "last_update": "2025-01-05 17:45:02", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/youtube-dl-comfyui": { "stars": 4, "last_update": "2024-10-01 16:32:14", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/ciga2011/ComfyUI-MarkItDown": { "stars": 7, "last_update": "2025-02-27 20:16:01", - "author_account_age_days": 4556 + "author_account_age_days": 4563 }, "https://github.com/ciga2011/ComfyUI-Pollinations": { "stars": 3, "last_update": "2025-01-14 15:23:14", - "author_account_age_days": 4556 + "author_account_age_days": 4563 }, "https://github.com/ciga2011/ComfyUI-PromptOptimizer": { "stars": 6, "last_update": "2025-01-16 02:24:50", - "author_account_age_days": 4556 + "author_account_age_days": 4563 }, "https://github.com/ciri/comfyui-model-downloader": { "stars": 73, "last_update": "2025-03-24 14:53:09", - "author_account_age_days": 5727 + "author_account_age_days": 5735 }, "https://github.com/city96/ComfyUI-GGUF": { - "stars": 2067, + "stars": 2089, "last_update": "2025-06-14 23:07:45", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/ComfyUI_ColorMod": { "stars": 94, "last_update": "2024-08-06 22:38:54", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/ComfyUI_DiT": { "stars": 5, "last_update": "2024-08-06 22:44:33", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/ComfyUI_ExtraModels": { "stars": 509, "last_update": "2024-12-17 06:44:05", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/ComfyUI_NetDist": { - "stars": 452, + "stars": 455, "last_update": "2024-05-22 18:05:10", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/SD-Latent-Interposer": { - "stars": 293, + "stars": 295, "last_update": "2024-08-06 22:01:47", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/city96/SD-Latent-Upscaler": { "stars": 159, "last_update": "2024-05-22 18:05:50", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/civen-cn/ComfyUI-PaddleOcr": { "stars": 7, "last_update": "2024-12-31 19:11:04", - "author_account_age_days": 2862 + "author_account_age_days": 2870 }, "https://github.com/civen-cn/ComfyUI-Whisper-Translator": { "stars": 5, "last_update": "2025-01-04 03:37:06", - "author_account_age_days": 2862 + "author_account_age_days": 2870 }, "https://github.com/civitai/civitai_comfy_nodes": { "stars": 146, "last_update": "2024-08-25 03:32:49", - "author_account_age_days": 955 + "author_account_age_days": 963 }, "https://github.com/claussteinmassl/ComfyUI-CS-CustomNodes": { "stars": 1, "last_update": "2024-06-14 09:03:10", - "author_account_age_days": 3057 + "author_account_age_days": 3065 }, "https://github.com/cleanlii/comfyui-dalle-integration": { "stars": 1, "last_update": "2025-04-02 08:29:56", - "author_account_age_days": 2460 + "author_account_age_days": 2468 }, "https://github.com/clhui/ComfyUi-clh-Tool": { "stars": 6, "last_update": "2024-12-28 10:22:00", - "author_account_age_days": 3186 + "author_account_age_days": 3193 }, "https://github.com/clouddreamfly/ComfyUI-PromptWrapper": { "stars": 2, "last_update": "2025-06-02 16:16:12", - "author_account_age_days": 1950 + "author_account_age_days": 1957 }, "https://github.com/cloudkoala/comfyui-koala": { "stars": 0, "last_update": "2025-06-06 00:17:19", - "author_account_age_days": 270 + "author_account_age_days": 278 }, "https://github.com/cluny85/ComfyUI-Scripting-Tools": { "stars": 0, "last_update": "2025-06-16 12:28:27", - "author_account_age_days": 4903 + "author_account_age_days": 4911 + }, + "https://github.com/cmdicely/simple_image_to_palette": { + "stars": 0, + "last_update": "2025-06-22 03:20:08", + "author_account_age_days": 5849 }, "https://github.com/cnbjjj/ComfyUI-Jtils": { "stars": 3, "last_update": "2025-05-10 23:25:19", - "author_account_age_days": 531 + "author_account_age_days": 539 }, "https://github.com/codecringebinge/ComfyUI-Arrow-Key-Canvas-Navigation": { "stars": 2, "last_update": "2024-09-29 22:35:01", - "author_account_age_days": 3155 + "author_account_age_days": 3163 }, "https://github.com/codeprimate/ComfyUI-MaskContourProcessor": { "stars": 2, "last_update": "2024-12-16 06:53:08", - "author_account_age_days": 6206 + "author_account_age_days": 6214 }, "https://github.com/comfy-deploy/comfyui-llm-toolkit": { "stars": 19, - "last_update": "2025-05-31 10:41:34", - "author_account_age_days": 524 + "last_update": "2025-06-18 01:48:53", + "author_account_age_days": 531 }, "https://github.com/comfyanonymous/ComfyUI": { - "stars": 79812, - "last_update": "2025-06-16 11:52:12", - "author_account_age_days": 906 + "stars": 80633, + "last_update": "2025-06-24 09:17:25", + "author_account_age_days": 914 }, "https://github.com/comfyanonymous/ComfyUI_TensorRT": { - "stars": 620, + "stars": 621, "last_update": "2024-10-10 00:23:55", - "author_account_age_days": 906 + "author_account_age_days": 914 }, "https://github.com/comfyanonymous/ComfyUI_experiments": { "stars": 181, "last_update": "2024-05-22 15:29:49", - "author_account_age_days": 906 + "author_account_age_days": 914 }, "https://github.com/concarne000/ConCarneNode": { "stars": 4, "last_update": "2024-05-22 22:10:18", - "author_account_age_days": 2258 + "author_account_age_days": 2266 }, "https://github.com/conquestace/ComfyUI-ImageUploader": { "stars": 2, "last_update": "2024-05-23 01:25:49", - "author_account_age_days": 4966 + "author_account_age_days": 4974 }, "https://github.com/coolzilj/ComfyUI-LJNodes": { "stars": 87, "last_update": "2024-06-15 01:57:32", - "author_account_age_days": 5020 + "author_account_age_days": 5028 }, "https://github.com/coolzilj/ComfyUI-Photopea": { "stars": 148, "last_update": "2024-06-14 08:10:57", - "author_account_age_days": 5020 + "author_account_age_days": 5028 }, "https://github.com/coreyryanhanson/ComfyQR": { "stars": 76, "last_update": "2025-01-26 16:25:19", - "author_account_age_days": 3413 + "author_account_age_days": 3421 }, "https://github.com/coreyryanhanson/ComfyQR-scanning-nodes": { "stars": 11, "last_update": "2025-01-26 16:26:36", - "author_account_age_days": 3413 + "author_account_age_days": 3421 }, "https://github.com/coulterj/comfyui-svg-visual-normalize": { "stars": 0, "last_update": "2025-05-26 11:45:44", - "author_account_age_days": 3298 + "author_account_age_days": 3307 }, "https://github.com/cozy-comfyui/cozy_comm": { "stars": 2, "last_update": "2025-04-03 17:02:54", - "author_account_age_days": 423 + "author_account_age_days": 431 }, "https://github.com/cozymantis/cozy-utils-comfyui-nodes": { - "stars": 4, + "stars": 5, "last_update": "2025-04-07 09:53:31", - "author_account_age_days": 465 + "author_account_age_days": 473 }, "https://github.com/cozymantis/human-parser-comfyui-node": { - "stars": 105, + "stars": 106, "last_update": "2025-04-19 14:09:03", - "author_account_age_days": 465 + "author_account_age_days": 473 }, "https://github.com/cozymantis/pose-generator-comfyui-node": { - "stars": 80, + "stars": 82, "last_update": "2025-04-07 09:53:17", - "author_account_age_days": 465 + "author_account_age_days": 473 }, "https://github.com/cr7Por/ComfyUI_DepthFlow": { "stars": 5, "last_update": "2024-09-16 09:10:08", - "author_account_age_days": 1482 + "author_account_age_days": 1490 }, "https://github.com/craig-tanaka/comfyui_animeseg": { "stars": 0, "last_update": "2025-05-20 18:59:45", - "author_account_age_days": 2966 + "author_account_age_days": 2974 }, "https://github.com/crave33/RenesStuffDanbooruTagGet": { "stars": 0, "last_update": "2025-02-23 15:48:48", - "author_account_age_days": 124 + "author_account_age_days": 131 }, "https://github.com/crystian/ComfyUI-Crystools": { - "stars": 1224, + "stars": 1233, "last_update": "2025-06-02 01:37:45", - "author_account_age_days": 4474 + "author_account_age_days": 4482 }, "https://github.com/crystian/ComfyUI-Crystools-save": { - "stars": 44, + "stars": 45, "last_update": "2025-06-01 20:17:39", - "author_account_age_days": 4474 + "author_account_age_days": 4482 }, "https://github.com/cubiq/Block_Patcher_ComfyUI": { - "stars": 80, + "stars": 83, "last_update": "2024-09-22 09:49:06", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cubiq/ComfyUI_FaceAnalysis": { - "stars": 444, + "stars": 448, "last_update": "2025-05-20 05:18:36", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cubiq/ComfyUI_IPAdapter_plus": { - "stars": 5212, + "stars": 5246, "last_update": "2025-04-14 07:29:17", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cubiq/ComfyUI_InstantID": { - "stars": 1633, + "stars": 1643, "last_update": "2025-04-14 07:50:01", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cubiq/ComfyUI_essentials": { - "stars": 859, + "stars": 871, "last_update": "2025-04-14 07:33:29", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cubiq/PuLID_ComfyUI": { - "stars": 866, + "stars": 869, "last_update": "2025-04-14 07:47:23", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cuongloveit/comfy_http_request": { "stars": 5, "last_update": "2024-06-14 11:00:11", - "author_account_age_days": 3609 + "author_account_age_days": 3617 }, "https://github.com/curiousjp/ComfyUI-MaskBatchPermutations": { "stars": 5, "last_update": "2024-05-28 13:09:32", - "author_account_age_days": 2287 + "author_account_age_days": 2294 }, "https://github.com/cyberhirsch/seb_nodes": { "stars": 0, "last_update": "2025-06-12 18:30:24", - "author_account_age_days": 2224 + "author_account_age_days": 2231 }, "https://github.com/czcz1024/Comfyui-FaceCompare": { "stars": 0, "last_update": "2024-06-14 07:13:32", - "author_account_age_days": 4591 + "author_account_age_days": 4598 }, "https://github.com/da2el-ai/ComfyUI-d2-send-eagle": { - "stars": 15, + "stars": 16, "last_update": "2025-03-10 14:31:22", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/ComfyUI-d2-size-selector": { "stars": 4, "last_update": "2024-10-02 14:04:20", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/ComfyUI-d2-steps": { "stars": 5, "last_update": "2024-10-02 14:03:14", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/ComfyUI-d2-xyplot-utils": { "stars": 5, "last_update": "2024-10-02 14:00:58", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/D2-PromptSelector-comfyUI": { "stars": 3, "last_update": "2025-04-05 03:00:34", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/D2-SavePSD-ComfyUI": { "stars": 2, "last_update": "2025-04-08 15:28:06", - "author_account_age_days": 746 + "author_account_age_days": 754 }, "https://github.com/da2el-ai/D2-nodes-ComfyUI": { "stars": 35, - "last_update": "2025-05-24 09:43:33", - "author_account_age_days": 746 + "last_update": "2025-06-21 17:06:13", + "author_account_age_days": 754 }, "https://github.com/dadoirie/ComfyUI_Dados_Nodes": { - "stars": 0, + "stars": 1, "last_update": "2025-06-09 10:35:26", - "author_account_age_days": 1947 + "author_account_age_days": 1954 }, "https://github.com/dafeng012/comfyui-imgmake": { "stars": 14, "last_update": "2024-11-03 17:38:47", - "author_account_age_days": 1033 + "author_account_age_days": 1040 }, "https://github.com/dagthomas/comfyui_dagthomas": { - "stars": 252, + "stars": 253, "last_update": "2025-04-23 14:00:14", - "author_account_age_days": 4429 + "author_account_age_days": 4436 }, "https://github.com/danger-electrodes/ComfyUI_Fawfluencer_Nodes": { "stars": 0, "last_update": "2025-04-15 10:31:38", - "author_account_age_days": 747 + "author_account_age_days": 755 }, "https://github.com/daniabib/ComfyUI_ProPainter_Nodes": { - "stars": 313, + "stars": 315, "last_update": "2024-12-22 13:50:25", - "author_account_age_days": 2761 + "author_account_age_days": 2769 }, "https://github.com/daniel-lewis-ab/ComfyUI-Llama": { - "stars": 57, + "stars": 59, "last_update": "2024-06-29 19:55:42", - "author_account_age_days": 3708 + "author_account_age_days": 3716 }, "https://github.com/daniel-lewis-ab/ComfyUI-TTS": { "stars": 28, "last_update": "2024-06-14 08:09:49", - "author_account_age_days": 3708 + "author_account_age_days": 3716 }, "https://github.com/darkpixel/darkprompts": { "stars": 8, "last_update": "2025-06-09 16:39:38", - "author_account_age_days": 5681 + "author_account_age_days": 5689 }, "https://github.com/darth-veitcher/comfydv": { "stars": 1, "last_update": "2025-05-13 07:24:56", - "author_account_age_days": 4785 + "author_account_age_days": 4793 }, "https://github.com/daryltucker/ComfyUI-LoadFiles": { "stars": 2, "last_update": "2024-08-31 23:59:44", - "author_account_age_days": 4821 + "author_account_age_days": 4829 }, "https://github.com/dasilva333/ComfyUI_ContrastingColor": { "stars": 1, "last_update": "2025-02-22 04:49:59", - "author_account_age_days": 5070 + "author_account_age_days": 5078 }, "https://github.com/dasilva333/ComfyUI_MarkdownImage": { "stars": 0, "last_update": "2025-04-12 03:11:13", - "author_account_age_days": 5070 + "author_account_age_days": 5078 }, "https://github.com/dave-palt/comfyui_DSP_imagehelpers": { "stars": 0, "last_update": "2024-05-22 23:12:11", - "author_account_age_days": 515 + "author_account_age_days": 523 }, "https://github.com/davidgressett/comfyui-systemlevel": { "stars": 0, "last_update": "2025-01-22 23:51:40", - "author_account_age_days": 2987 + "author_account_age_days": 2995 }, "https://github.com/daxcay/ComfyUI-DataSet": { "stars": 50, "last_update": "2025-03-01 05:24:50", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-JDCN": { "stars": 119, "last_update": "2025-04-14 09:20:22", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-NODEJS": { "stars": 14, "last_update": "2024-11-28 09:46:29", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-Nexus": { "stars": 86, "last_update": "2025-03-01 15:40:05", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-TG": { - "stars": 18, + "stars": 19, "last_update": "2024-11-28 09:45:12", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-WA": { "stars": 48, "last_update": "2024-11-28 09:44:50", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/daxcay/ComfyUI-YouTubeVideoPlayer": { "stars": 5, "last_update": "2024-11-28 09:45:30", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/dchatel/comfyui_davcha": { "stars": 1, "last_update": "2025-04-03 06:39:42", - "author_account_age_days": 4892 + "author_account_age_days": 4900 }, "https://github.com/dchatel/comfyui_facetools": { - "stars": 138, + "stars": 140, "last_update": "2025-05-18 12:30:50", - "author_account_age_days": 4892 + "author_account_age_days": 4900 }, "https://github.com/denfrost/Den_ComfyUI_Workflow": { "stars": 4, "last_update": "2025-05-07 07:15:01", - "author_account_age_days": 3853 + "author_account_age_days": 3861 }, "https://github.com/deroberon/StableZero123-comfyui": { - "stars": 171, + "stars": 172, "last_update": "2024-05-22 22:09:53", - "author_account_age_days": 5653 + "author_account_age_days": 5661 }, "https://github.com/deroberon/demofusion-comfyui": { "stars": 88, "last_update": "2024-05-22 22:09:42", - "author_account_age_days": 5653 + "author_account_age_days": 5661 }, "https://github.com/dfghsdh/ComfyUI_FluxPromptGen": { "stars": 14, "last_update": "2024-09-23 07:51:56", - "author_account_age_days": 266 + "author_account_age_days": 274 }, "https://github.com/dfl/comfyui-clip-with-break": { "stars": 13, "last_update": "2025-03-04 20:16:06", - "author_account_age_days": 6331 + "author_account_age_days": 6339 }, "https://github.com/dfl/comfyui-tcd-scheduler": { "stars": 83, "last_update": "2024-05-22 23:23:28", - "author_account_age_days": 6331 + "author_account_age_days": 6339 }, "https://github.com/diStyApps/ComfyUI-disty-Flow": { - "stars": 546, + "stars": 547, "last_update": "2025-01-04 18:03:37", - "author_account_age_days": 4561 + "author_account_age_days": 4569 }, "https://github.com/diStyApps/ComfyUI_FrameMaker": { "stars": 22, "last_update": "2024-05-23 00:11:33", - "author_account_age_days": 4561 + "author_account_age_days": 4569 }, "https://github.com/dicksensei69/comfyui_loops": { "stars": 0, "last_update": "2025-05-03 22:22:55", - "author_account_age_days": 992 + "author_account_age_days": 1000 }, "https://github.com/dicksondickson/ComfyUI-Dickson-Nodes": { "stars": 10, "last_update": "2024-09-18 04:30:33", - "author_account_age_days": 4348 + "author_account_age_days": 4355 }, "https://github.com/digitaljohn/comfyui-propost": { - "stars": 176, + "stars": 177, "last_update": "2025-02-10 23:25:24", - "author_account_age_days": 4875 + "author_account_age_days": 4882 }, "https://github.com/dimtion/comfyui-raw-image": { "stars": 1, "last_update": "2025-03-31 00:25:41", - "author_account_age_days": 4721 + "author_account_age_days": 4729 }, "https://github.com/dimtoneff/ComfyUI-PixelArt-Detector": { "stars": 306, "last_update": "2025-04-01 15:43:07", - "author_account_age_days": 3771 + "author_account_age_days": 3779 }, "https://github.com/dionren/ComfyUI-Pro-Export-Tool": { "stars": 2, "last_update": "2024-10-11 08:26:18", - "author_account_age_days": 4243 + "author_account_age_days": 4250 }, "https://github.com/diontimmer/ComfyUI-Vextra-Nodes": { "stars": 77, "last_update": "2024-06-20 16:48:44", - "author_account_age_days": 5127 + "author_account_age_days": 5135 }, "https://github.com/discopixel-studio/comfyui-discopixel": { "stars": 12, "last_update": "2024-09-30 00:46:13", - "author_account_age_days": 702 + "author_account_age_days": 710 }, "https://github.com/discus0434/comfyui-aesthetic-predictor-v2-5": { "stars": 13, "last_update": "2024-06-14 08:12:05", - "author_account_age_days": 1827 + "author_account_age_days": 1834 }, "https://github.com/discus0434/comfyui-caching-embeddings": { "stars": 2, "last_update": "2024-06-14 08:59:36", - "author_account_age_days": 1827 + "author_account_age_days": 1834 }, "https://github.com/discus0434/comfyui-flux-accelerator": { - "stars": 134, + "stars": 136, "last_update": "2024-12-19 14:39:39", - "author_account_age_days": 1827 + "author_account_age_days": 1834 }, "https://github.com/djbielejeski/a-person-mask-generator": { - "stars": 351, + "stars": 353, "last_update": "2025-03-14 11:19:45", - "author_account_age_days": 4641 + "author_account_age_days": 4648 }, "https://github.com/dmMaze/sketch2manga": { "stars": 41, "last_update": "2025-03-31 08:51:09", - "author_account_age_days": 2206 + "author_account_age_days": 2214 }, "https://github.com/dmarx/ComfyUI-AudioReactive": { "stars": 10, "last_update": "2024-05-22 22:12:53", - "author_account_age_days": 4861 + "author_account_age_days": 4869 }, "https://github.com/dmarx/ComfyUI-Keyframed": { "stars": 87, "last_update": "2024-07-01 01:41:23", - "author_account_age_days": 4861 + "author_account_age_days": 4869 }, "https://github.com/domenecmiralles/obobo_nodes": { "stars": 0, "last_update": "2025-06-12 22:44:13", - "author_account_age_days": 964 + "author_account_age_days": 972 }, "https://github.com/dorpxam/ComfyUI-FramePack-F1-T2V": { - "stars": 1, + "stars": 2, "last_update": "2025-05-29 06:33:54", - "author_account_age_days": 616 + "author_account_age_days": 624 }, "https://github.com/dorpxam/ComfyUI-LTXVideoLoRA": { "stars": 16, "last_update": "2025-05-10 16:42:44", - "author_account_age_days": 616 + "author_account_age_days": 624 }, "https://github.com/doubletwisted/ComfyUI-Deadline-Plugin": { "stars": 4, "last_update": "2025-05-25 22:47:23", - "author_account_age_days": 947 + "author_account_age_days": 955 }, "https://github.com/drago87/ComfyUI_Dragos_Nodes": { "stars": 3, "last_update": "2024-05-22 21:32:15", - "author_account_age_days": 4126 + "author_account_age_days": 4134 }, "https://github.com/dreamhartley/ComfyUI_show_seed": { "stars": 1, "last_update": "2025-01-14 16:15:12", - "author_account_age_days": 841 + "author_account_age_days": 848 }, "https://github.com/drmbt/comfyui-dreambait-nodes": { "stars": 4, - "last_update": "2025-06-15 01:14:27", - "author_account_age_days": 4134 + "last_update": "2025-06-23 04:17:05", + "author_account_age_days": 4142 + }, + "https://github.com/drphero/comfyui_prompttester": { + "stars": 1, + "last_update": "2025-06-19 01:06:51", + "author_account_age_days": 3577 }, "https://github.com/drustan-hawk/primitive-types": { "stars": 6, "last_update": "2024-08-01 17:44:51", - "author_account_age_days": 646 + "author_account_age_days": 654 + }, + "https://github.com/dseditor/ComfyUI-ListHelper": { + "stars": 2, + "last_update": "2025-06-22 10:21:59", + "author_account_age_days": 1368 + }, + "https://github.com/dseditor/ComfyUI-ScheduledTask": { + "stars": 6, + "last_update": "2025-06-19 16:07:41", + "author_account_age_days": 1368 }, "https://github.com/dseditor/ComfyUI-Thread": { "stars": 3, - "last_update": "2025-06-16 04:06:53", - "author_account_age_days": 1360 + "last_update": "2025-06-17 02:38:00", + "author_account_age_days": 1368 }, "https://github.com/duchamps0305/comfyui-white-extractor": { "stars": 0, "last_update": "2025-01-23 08:09:12", - "author_account_age_days": 978 + "author_account_age_days": 986 }, "https://github.com/ducido/ObjectFusion_ComfyUI_nodes": { "stars": 1, "last_update": "2025-05-02 08:31:46", - "author_account_age_days": 886 + "author_account_age_days": 894 }, "https://github.com/dymokomi/comfyui_dygen": { "stars": 1, "last_update": "2024-11-28 20:08:13", - "author_account_age_days": 929 + "author_account_age_days": 937 }, "https://github.com/dzqdzq/ComfyUI-crop-alpha": { "stars": 2, "last_update": "2025-02-17 14:46:11", - "author_account_age_days": 3372 + "author_account_age_days": 3379 }, "https://github.com/e-tier-newbie/ComfyUI-E-Tier-TextSaver": { "stars": 0, "last_update": "2025-06-06 21:59:50", - "author_account_age_days": 38 + "author_account_age_days": 46 }, "https://github.com/e7mac/ComfyUI-ShadertoyGL": { "stars": 4, "last_update": "2024-06-20 14:52:42", - "author_account_age_days": 5160 + "author_account_age_days": 5168 }, "https://github.com/ealkanat/comfyui-easy-padding": { "stars": 17, "last_update": "2024-12-31 02:38:22", - "author_account_age_days": 2820 + "author_account_age_days": 2828 }, "https://github.com/eastoc/ComfyUI_SemanticSAM": { "stars": 4, "last_update": "2024-08-13 19:24:33", - "author_account_age_days": 3075 + "author_account_age_days": 3082 }, "https://github.com/edelvarden/ComfyUI-Display-Value": { "stars": 0, "last_update": "2025-05-25 23:02:40", - "author_account_age_days": 2490 + "author_account_age_days": 2498 }, "https://github.com/edelvarden/comfyui_image_metadata_extension": { - "stars": 45, - "last_update": "2025-06-06 19:45:39", - "author_account_age_days": 2490 + "stars": 46, + "last_update": "2025-06-19 18:38:45", + "author_account_age_days": 2498 }, "https://github.com/edenartlab/eden_comfy_pipelines": { "stars": 90, - "last_update": "2025-06-04 10:35:07", - "author_account_age_days": 629 + "last_update": "2025-06-16 14:34:11", + "author_account_age_days": 637 }, "https://github.com/edenartlab/sd-lora-trainer": { - "stars": 52, + "stars": 54, "last_update": "2025-02-24 16:18:16", - "author_account_age_days": 629 + "author_account_age_days": 637 }, "https://github.com/educator-art/ComfyUI-Load-DirectoryFiles": { "stars": 3, "last_update": "2025-04-22 08:51:32", - "author_account_age_days": 558 + "author_account_age_days": 566 }, "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes": { "stars": 0, "last_update": "2024-09-03 06:55:04", - "author_account_age_days": 2880 + "author_account_age_days": 2888 }, "https://github.com/envy-ai/ComfyUI-ConDelta": { - "stars": 201, + "stars": 200, "last_update": "2025-04-24 00:16:02", - "author_account_age_days": 312 + "author_account_age_days": 320 }, "https://github.com/erosDiffusion/ComfyUI-enricos-nodes": { - "stars": 453, + "stars": 458, "last_update": "2025-05-05 22:53:42", - "author_account_age_days": 353 + "author_account_age_days": 361 }, "https://github.com/evanspearman/ComfyMath": { - "stars": 125, + "stars": 126, "last_update": "2025-03-08 18:14:34", - "author_account_age_days": 4595 + "author_account_age_days": 4603 }, "https://github.com/excelwong/ComfyUI-PromptComposer": { "stars": 0, "last_update": "2025-04-30 10:33:43", - "author_account_age_days": 3723 + "author_account_age_days": 3731 }, "https://github.com/exdysa/comfyui-selector": { "stars": 4, "last_update": "2025-03-14 12:21:29", - "author_account_age_days": 1352 + "author_account_age_days": 1360 }, "https://github.com/exectails/comfyui-et_dynamicprompts": { "stars": 4, "last_update": "2024-11-29 22:37:19", - "author_account_age_days": 4275 + "author_account_age_days": 4282 }, "https://github.com/exectails/comfyui-et_infoutils": { "stars": 2, "last_update": "2024-11-29 17:27:49", - "author_account_age_days": 4275 + "author_account_age_days": 4282 }, "https://github.com/exectails/comfyui-et_stringutils": { "stars": 1, "last_update": "2024-11-26 20:26:14", - "author_account_age_days": 4275 + "author_account_age_days": 4282 }, "https://github.com/ez-af/ComfyUI-EZ-AF-Nodes": { - "stars": 1, - "last_update": "2024-10-02 07:38:18", - "author_account_age_days": 291 + "stars": 10, + "last_update": "2025-06-23 16:23:35", + "author_account_age_days": 299 }, "https://github.com/fablestudio/ComfyUI-Showrunner-Utils": { "stars": 0, "last_update": "2025-06-04 04:34:09", - "author_account_age_days": 2405 + "author_account_age_days": 2413 }, "https://github.com/facok/ComfyUI-HunyuanVideoMultiLora": { "stars": 115, "last_update": "2025-05-13 18:35:00", - "author_account_age_days": 815 + "author_account_age_days": 823 }, "https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo": { "stars": 92, "last_update": "2025-04-05 05:24:59", - "author_account_age_days": 815 + "author_account_age_days": 823 }, "https://github.com/fairy-root/ComfyUI-GLHF": { "stars": 4, "last_update": "2025-04-03 13:47:20", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/fairy-root/ComfyUI-OpenAI-FM": { "stars": 30, "last_update": "2025-05-09 00:12:06", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/fairy-root/ComfyUI-Show-Text": { "stars": 10, "last_update": "2025-04-08 14:21:57", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/fairy-root/Flux-Prompt-Generator": { "stars": 208, "last_update": "2025-04-22 02:20:47", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/fairy-root/comfyui-ollama-llms": { "stars": 17, "last_update": "2025-03-27 20:47:17", - "author_account_age_days": 2291 + "author_account_age_days": 2299 }, "https://github.com/fallingmeteorite/nsfw-image-check-comfyui": { - "stars": 6, + "stars": 7, "last_update": "2025-06-02 03:59:25", - "author_account_age_days": 1445 + "author_account_age_days": 1453 }, "https://github.com/fashn-AI/ComfyUI-FASHN": { - "stars": 24, + "stars": 25, "last_update": "2025-04-23 10:15:13", - "author_account_age_days": 712 + "author_account_age_days": 720 }, "https://github.com/fat-tire/comfyui-unified-media-suite": { "stars": 3, "last_update": "2025-02-25 04:41:02", - "author_account_age_days": 5294 + "author_account_age_days": 5302 }, "https://github.com/fblissjr/ComfyUI-DatasetHelper": { "stars": 5, "last_update": "2025-01-27 18:58:33", - "author_account_age_days": 3721 + "author_account_age_days": 3729 }, "https://github.com/fblissjr/ComfyUI-EmbeddingPipelineAnalytics": { "stars": 2, "last_update": "2025-01-24 18:51:53", - "author_account_age_days": 3721 + "author_account_age_days": 3729 }, "https://github.com/fblissjr/ComfyUI-WanSeamlessFlow": { "stars": 4, "last_update": "2025-03-17 22:36:22", - "author_account_age_days": 3721 + "author_account_age_days": 3729 }, "https://github.com/fearnworks/ComfyUI_FearnworksNodes": { "stars": 19, "last_update": "2024-08-05 01:50:04", - "author_account_age_days": 918 + "author_account_age_days": 926 }, "https://github.com/feixuetuba/Spleeter": { "stars": 0, "last_update": "2025-01-19 10:39:17", - "author_account_age_days": 4319 + "author_account_age_days": 4327 }, "https://github.com/felixszeto/ComfyUI-RequestNodes": { "stars": 85, "last_update": "2025-04-19 18:59:35", - "author_account_age_days": 1406 + "author_account_age_days": 1414 }, "https://github.com/fexli/fexli-util-node-comfyui": { "stars": 3, - "last_update": "2025-05-23 12:08:13", - "author_account_age_days": 1916 + "last_update": "2025-06-18 06:07:31", + "author_account_age_days": 1923 }, "https://github.com/fexploit/ComfyUI-AutoLabel": { "stars": 7, "last_update": "2025-03-18 13:07:46", - "author_account_age_days": 5401 + "author_account_age_days": 5409 }, "https://github.com/fexploit/ComfyUI-AutoTrimBG": { "stars": 3, "last_update": "2025-03-10 12:59:42", - "author_account_age_days": 5401 + "author_account_age_days": 5409 }, "https://github.com/fexploit/ComfyUI-Classifier": { "stars": 1, "last_update": "2025-03-10 20:33:42", - "author_account_age_days": 5401 + "author_account_age_days": 5409 }, "https://github.com/filipemeneses/comfy_pixelization": { "stars": 63, "last_update": "2025-06-12 07:07:01", - "author_account_age_days": 3833 + "author_account_age_days": 3841 }, "https://github.com/filliptm/ComfyUI_FL-Trainer": { "stars": 165, "last_update": "2024-10-18 00:20:18", - "author_account_age_days": 2093 + "author_account_age_days": 2101 }, "https://github.com/filliptm/ComfyUI_Fill-ChatterBox": { - "stars": 123, + "stars": 130, "last_update": "2025-06-02 17:58:28", - "author_account_age_days": 2093 + "author_account_age_days": 2101 }, "https://github.com/filliptm/ComfyUI_Fill-Nodes": { - "stars": 408, - "last_update": "2025-05-29 15:48:23", - "author_account_age_days": 2093 + "stars": 413, + "last_update": "2025-06-19 14:06:00", + "author_account_age_days": 2101 }, "https://github.com/finegrain-ai/comfyui-finegrain": { "stars": 12, "last_update": "2025-05-16 07:44:57", - "author_account_age_days": 859 + "author_account_age_days": 867 }, "https://github.com/flamacore/ComfyUI-YouTubeUploader": { "stars": 1, "last_update": "2025-06-14 22:11:33", - "author_account_age_days": 3666 + "author_account_age_days": 3674 }, "https://github.com/florestefano1975/ComfyUI-Advanced-Sequence-Seed": { "stars": 1, "last_update": "2025-04-09 12:40:05", - "author_account_age_days": 550 + "author_account_age_days": 558 }, "https://github.com/florestefano1975/ComfyUI-CogVideoX": { "stars": 15, "last_update": "2025-04-09 12:39:53", - "author_account_age_days": 550 + "author_account_age_days": 558 }, "https://github.com/florestefano1975/ComfyUI-HiDiffusion": { "stars": 143, "last_update": "2025-04-09 12:40:58", - "author_account_age_days": 550 + "author_account_age_days": 558 }, "https://github.com/florestefano1975/ComfyUI-StabilityAI-Suite": { "stars": 4, "last_update": "2025-04-09 12:40:36", - "author_account_age_days": 550 + "author_account_age_days": 558 }, "https://github.com/florestefano1975/comfyui-portrait-master": { - "stars": 1074, - "last_update": "2025-06-09 07:07:52", - "author_account_age_days": 550 + "stars": 1078, + "last_update": "2025-06-20 11:43:18", + "author_account_age_days": 558 }, "https://github.com/florestefano1975/comfyui-prompt-composer": { - "stars": 274, + "stars": 275, "last_update": "2025-04-27 15:00:00", - "author_account_age_days": 550 + "author_account_age_days": 558 }, "https://github.com/flowtyone/ComfyUI-Flowty-CRM": { "stars": 155, "last_update": "2024-06-14 10:23:09", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/flowtyone/ComfyUI-Flowty-LDSR": { - "stars": 239, + "stars": 241, "last_update": "2024-06-14 09:04:51", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/flowtyone/ComfyUI-Flowty-TripoSR": { - "stars": 507, + "stars": 508, "last_update": "2024-06-16 00:53:22", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/fluffydiveX/ComfyUI-hvBlockswap": { - "stars": 7, + "stars": 8, "last_update": "2025-03-30 03:30:40", - "author_account_age_days": 190 + "author_account_age_days": 198 }, "https://github.com/flycarl/ComfyUI-Pixelate": { "stars": 1, "last_update": "2024-11-26 13:31:56", - "author_account_age_days": 5217 + "author_account_age_days": 5224 }, "https://github.com/flyingshutter/As_ComfyUI_CustomNodes": { "stars": 7, "last_update": "2025-05-23 17:29:13", - "author_account_age_days": 3852 + "author_account_age_days": 3860 }, "https://github.com/fmatray/ComfyUI_BattlemapGrid": { "stars": 0, "last_update": "2024-06-05 22:35:06", - "author_account_age_days": 3978 + "author_account_age_days": 3986 }, "https://github.com/fofr/ComfyUI-HyperSDXL1StepUnetScheduler": { "stars": 11, "last_update": "2024-06-20 11:51:50", - "author_account_age_days": 5464 + "author_account_age_days": 5472 }, "https://github.com/fofr/ComfyUI-Prompter-fofrAI": { "stars": 74, "last_update": "2025-02-10 16:39:49", - "author_account_age_days": 5464 + "author_account_age_days": 5472 }, "https://github.com/fofr/comfyui-basic-auth": { "stars": 1, "last_update": "2025-03-17 09:38:05", - "author_account_age_days": 5464 + "author_account_age_days": 5472 }, "https://github.com/fofr/comfyui-fofr-toolkit": { "stars": 4, "last_update": "2024-08-09 11:36:38", - "author_account_age_days": 5464 + "author_account_age_days": 5472 }, "https://github.com/forever22777/comfyui-self-guidance": { "stars": 10, "last_update": "2025-04-17 08:13:40", - "author_account_age_days": 682 + "author_account_age_days": 689 }, "https://github.com/foxtrot-roger/comfyui-rf-nodes": { "stars": 2, "last_update": "2024-08-13 22:01:40", - "author_account_age_days": 2677 + "author_account_age_days": 2685 }, "https://github.com/fpgaminer/joycaption_comfyui": { - "stars": 73, + "stars": 74, "last_update": "2025-05-15 23:30:13", - "author_account_age_days": 4827 + "author_account_age_days": 4835 + }, + "https://github.com/fplu/comfyui_lama_with_refiner": { + "stars": 1, + "last_update": "2025-06-22 16:38:15", + "author_account_age_days": 2448 }, "https://github.com/frankchieng/ComfyUI_Aniportrait": { "stars": 55, "last_update": "2024-09-13 10:41:16", - "author_account_age_days": 798 + "author_account_age_days": 805 }, "https://github.com/frankchieng/ComfyUI_MagicClothing": { - "stars": 571, + "stars": 573, "last_update": "2024-09-04 04:57:15", - "author_account_age_days": 798 + "author_account_age_days": 805 }, "https://github.com/frankchieng/ComfyUI_llm_easyanimiate": { "stars": 12, "last_update": "2024-06-26 03:13:32", - "author_account_age_days": 798 + "author_account_age_days": 805 }, - "https://github.com/fredconex/ComfyUI_SoundFlow": { - "stars": 37, - "last_update": "2025-06-15 00:39:33", - "author_account_age_days": 1059 + "https://github.com/fredconex/ComfyUI-SongBloom": { + "stars": 2, + "last_update": "2025-06-23 19:11:30", + "author_account_age_days": 1067 + }, + "https://github.com/fredconex/ComfyUI-SoundFlow": { + "stars": 38, + "last_update": "2025-06-16 14:18:04", + "author_account_age_days": 1067 + }, + "https://github.com/fredconex/ComfyUI-SyncEdit": { + "stars": 0, + "last_update": "2025-06-16 21:52:36", + "author_account_age_days": 1067 }, "https://github.com/freelifehacker/ComfyUI-ImgMask2PNG": { "stars": 0, "last_update": "2024-08-28 08:32:23", - "author_account_age_days": 2515 + "author_account_age_days": 2523 }, "https://github.com/fsdymy1024/ComfyUI_fsdymy": { "stars": 9, "last_update": "2024-07-01 17:58:52", - "author_account_age_days": 2563 + "author_account_age_days": 2570 }, "https://github.com/fssorc/ComfyUI_FFT": { "stars": 13, "last_update": "2024-09-30 01:27:21", - "author_account_age_days": 4944 + "author_account_age_days": 4952 }, "https://github.com/fssorc/ComfyUI_FaceShaper": { "stars": 169, "last_update": "2024-09-20 06:15:46", - "author_account_age_days": 4944 + "author_account_age_days": 4952 }, "https://github.com/fssorc/ComfyUI_RopeWrapper": { "stars": 16, "last_update": "2025-01-07 04:55:59", - "author_account_age_days": 4944 + "author_account_age_days": 4952 }, "https://github.com/fssorc/ComfyUI_pose_inter": { - "stars": 78, + "stars": 79, "last_update": "2025-05-27 07:05:00", - "author_account_age_days": 4944 + "author_account_age_days": 4952 }, "https://github.com/fuselayer/comfyui-mosaic-blur": { "stars": 1, "last_update": "2025-04-05 00:57:07", - "author_account_age_days": 634 + "author_account_age_days": 642 }, "https://github.com/gabe-init/ComfyUI-11labs": { "stars": 2, "last_update": "2025-05-27 00:27:28", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gabe-init/ComfyUI-Google-Image-Search": { "stars": 1, "last_update": "2025-05-27 00:54:00", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gabe-init/ComfyUI-Openrouter_node": { "stars": 4, "last_update": "2025-06-13 01:42:28", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gabe-init/ComfyUI-String-Similarity": { "stars": 0, "last_update": "2025-05-27 00:59:21", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/game4d/ComfyUI-BDsInfiniteYou": { "stars": 7, "last_update": "2025-04-01 03:12:04", - "author_account_age_days": 4061 + "author_account_age_days": 4069 }, "https://github.com/gasparuff/CustomSelector": { "stars": 1, "last_update": "2025-05-09 06:17:31", - "author_account_age_days": 4351 + "author_account_age_days": 4359 }, "https://github.com/gelasdev/ComfyUI-FLUX-BFL-API": { - "stars": 42, + "stars": 43, "last_update": "2025-06-08 01:01:01", - "author_account_age_days": 2338 + "author_account_age_days": 2345 }, "https://github.com/gemell1/ComfyUI_GMIC": { "stars": 8, "last_update": "2024-05-22 21:28:51", - "author_account_age_days": 2314 + "author_account_age_days": 2321 }, "https://github.com/geocine/geocine-comfyui": { "stars": 0, "last_update": "2025-03-08 15:46:56", - "author_account_age_days": 5309 + "author_account_age_days": 5317 }, "https://github.com/ggarra13/ComfyUI-mrv2": { "stars": 4, "last_update": "2025-03-27 17:24:38", - "author_account_age_days": 4215 + "author_account_age_days": 4223 }, "https://github.com/giriss/comfy-image-saver": { - "stars": 276, + "stars": 278, "last_update": "2024-05-22 20:40:55", - "author_account_age_days": 4595 + "author_account_age_days": 4603 }, "https://github.com/gisu/comfyui-foxpack": { "stars": 2, "last_update": "2024-08-20 06:43:22", - "author_account_age_days": 5356 + "author_account_age_days": 5364 }, "https://github.com/gitadmini/comfyui_extractstoryboards": { "stars": 1, "last_update": "2025-06-11 02:01:24", - "author_account_age_days": 3399 + "author_account_age_days": 3407 }, "https://github.com/githubYiheng/ComfyUI_Change_IMAGE_BOREDER": { "stars": 0, "last_update": "2024-05-23 01:20:09", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/githubYiheng/ComfyUI_GetFileNameFromURL": { "stars": 1, "last_update": "2024-05-23 01:19:47", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/githubYiheng/comfyui_kmeans_filter": { "stars": 0, "last_update": "2024-06-14 09:01:24", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/githubYiheng/comfyui_meanshift_filter": { "stars": 0, "last_update": "2024-06-14 10:59:43", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/githubYiheng/comfyui_private_postprocessor": { "stars": 1, "last_update": "2024-06-14 08:09:39", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/gitmylo/ComfyUI-audio-nodes": { "stars": 9, "last_update": "2025-04-07 07:24:06", - "author_account_age_days": 2664 + "author_account_age_days": 2672 }, "https://github.com/glibsonoran/Plush-for-ComfyUI": { "stars": 175, - "last_update": "2025-06-09 16:01:01", - "author_account_age_days": 2854 + "last_update": "2025-06-21 21:12:31", + "author_account_age_days": 2862 }, "https://github.com/glifxyz/ComfyUI-GlifNodes": { "stars": 55, "last_update": "2024-11-25 12:37:14", - "author_account_age_days": 930 + "author_account_age_days": 938 }, "https://github.com/glowcone/comfyui-base64-to-image": { "stars": 16, "last_update": "2024-07-08 22:53:25", - "author_account_age_days": 4102 + "author_account_age_days": 4110 }, "https://github.com/glowcone/comfyui-string-converter": { "stars": 1, "last_update": "2024-07-31 13:40:48", - "author_account_age_days": 4102 + "author_account_age_days": 4110 }, "https://github.com/gmorks/ComfyUI-SendToDiscord": { "stars": 0, "last_update": "2025-01-29 08:10:54", - "author_account_age_days": 2652 + "author_account_age_days": 2660 }, "https://github.com/goburiin/nsfwrecog-comfyui": { "stars": 0, "last_update": "2024-08-14 02:17:15", - "author_account_age_days": 310 + "author_account_age_days": 318 }, "https://github.com/godmt/ComfyUI-IP-Composer": { "stars": 5, "last_update": "2025-05-18 09:52:01", - "author_account_age_days": 2086 + "author_account_age_days": 2094 }, "https://github.com/godmt/ComfyUI-List-Utils": { "stars": 8, "last_update": "2025-05-26 21:41:06", - "author_account_age_days": 2086 + "author_account_age_days": 2094 }, "https://github.com/godspede/ComfyUI_Substring": { "stars": 0, "last_update": "2025-03-27 15:33:12", - "author_account_age_days": 3470 + "author_account_age_days": 3478 }, "https://github.com/gokayfem/ComfyUI-Depth-Visualization": { "stars": 64, "last_update": "2024-10-31 23:50:57", - "author_account_age_days": 1414 + "author_account_age_days": 1422 }, "https://github.com/gokayfem/ComfyUI-Dream-Interpreter": { "stars": 79, "last_update": "2024-07-31 16:11:04", - "author_account_age_days": 1414 + "author_account_age_days": 1422 }, "https://github.com/gokayfem/ComfyUI-Texture-Simple": { - "stars": 50, + "stars": 51, "last_update": "2024-07-31 16:14:23", - "author_account_age_days": 1414 + "author_account_age_days": 1422 }, "https://github.com/gokayfem/ComfyUI-fal-API": { - "stars": 133, - "last_update": "2025-06-02 17:39:18", - "author_account_age_days": 1414 + "stars": 135, + "last_update": "2025-06-20 10:38:44", + "author_account_age_days": 1422 }, "https://github.com/gokayfem/ComfyUI_VLM_nodes": { - "stars": 496, + "stars": 497, "last_update": "2025-02-13 10:37:34", - "author_account_age_days": 1414 + "author_account_age_days": 1422 }, "https://github.com/goldwins520/Comfyui_saveimg2webdav": { "stars": 0, "last_update": "2025-05-25 06:15:38", - "author_account_age_days": 1933 + "author_account_age_days": 1940 }, "https://github.com/gonzalu/ComfyUI_YFG_Comical": { "stars": 25, "last_update": "2025-05-03 20:30:02", - "author_account_age_days": 2818 + "author_account_age_days": 2826 }, "https://github.com/googincheng/ComfyUX": { "stars": 148, "last_update": "2024-08-22 09:47:17", - "author_account_age_days": 3146 + "author_account_age_days": 3153 }, "https://github.com/gorillaframeai/GF_nodes": { "stars": 27, "last_update": "2025-04-19 15:49:54", - "author_account_age_days": 590 + "author_account_age_days": 598 }, "https://github.com/gorillaframeai/GF_translate": { "stars": 4, "last_update": "2025-02-04 19:26:53", - "author_account_age_days": 590 + "author_account_age_days": 598 }, "https://github.com/greengerong/ComfyUI-JanusPro-PL": { "stars": 11, "last_update": "2025-02-08 03:32:59", - "author_account_age_days": 4626 + "author_account_age_days": 4634 }, "https://github.com/greengerong/ComfyUI-Lumina-Video": { "stars": 7, "last_update": "2025-02-23 03:01:18", - "author_account_age_days": 4626 + "author_account_age_days": 4634 }, "https://github.com/gremlation/ComfyUI-ImageLabel": { "stars": 4, "last_update": "2025-04-03 09:49:57", - "author_account_age_days": 180 + "author_account_age_days": 187 }, "https://github.com/gremlation/ComfyUI-JMESPath": { "stars": 1, "last_update": "2025-04-03 09:50:11", - "author_account_age_days": 180 + "author_account_age_days": 187 }, "https://github.com/gremlation/ComfyUI-TrackAndWheel": { "stars": 2, "last_update": "2025-04-03 09:50:20", - "author_account_age_days": 180 + "author_account_age_days": 187 }, "https://github.com/gremlation/ComfyUI-ViewData": { "stars": 1, "last_update": "2025-04-03 09:50:28", - "author_account_age_days": 180 + "author_account_age_days": 187 }, "https://github.com/gremlation/ComfyUI-jq": { "stars": 1, "last_update": "2025-04-03 09:50:39", - "author_account_age_days": 180 + "author_account_age_days": 187 }, "https://github.com/griptape-ai/ComfyUI-Griptape": { "stars": 194, "last_update": "2025-05-29 03:24:58", - "author_account_age_days": 877 + "author_account_age_days": 885 }, "https://github.com/gseth/ControlAltAI-Nodes": { - "stars": 128, + "stars": 129, "last_update": "2025-06-05 04:21:56", - "author_account_age_days": 4203 + "author_account_age_days": 4211 }, "https://github.com/gt732/ComfyUI-DreamWaltz-G": { "stars": 2, "last_update": "2024-10-27 03:15:13", - "author_account_age_days": 1512 + "author_account_age_days": 1520 }, "https://github.com/guerreiro/comfyg-switch": { "stars": 3, - "last_update": "2025-06-14 15:29:38", - "author_account_age_days": 5398 + "last_update": "2025-06-22 17:35:28", + "author_account_age_days": 5406 }, "https://github.com/guill/abracadabra-comfyui": { "stars": 1, "last_update": "2024-12-23 09:46:10", - "author_account_age_days": 4550 + "author_account_age_days": 4558 }, "https://github.com/guyaton/guy-nodes-comfyui": { "stars": 0, "last_update": "2024-10-02 13:15:26", - "author_account_age_days": 259 + "author_account_age_days": 266 }, "https://github.com/hackkhai/ComfyUI-Image-Matting": { "stars": 18, "last_update": "2024-07-31 15:02:56", - "author_account_age_days": 2208 + "author_account_age_days": 2215 }, "https://github.com/hanoixan/ComfyUI-DataBeast": { "stars": 2, "last_update": "2024-11-05 17:47:30", - "author_account_age_days": 5194 + "author_account_age_days": 5202 }, "https://github.com/haohaocreates/ComfyUI-HH-Image-Selector": { "stars": 0, "last_update": "2024-07-28 21:08:27", - "author_account_age_days": 462 + "author_account_age_days": 470 }, "https://github.com/hassan-sd/comfyui-image-prompt-loader": { "stars": 2, "last_update": "2025-06-11 21:10:47", - "author_account_age_days": 927 + "author_account_age_days": 935 }, "https://github.com/havvk/ComfyUI_AIIA": { - "stars": 2, - "last_update": "2025-06-15 15:09:35", - "author_account_age_days": 3995 + "stars": 6, + "last_update": "2025-06-18 06:41:23", + "author_account_age_days": 4003 }, "https://github.com/hay86/ComfyUI_DDColor": { "stars": 7, "last_update": "2024-06-14 08:12:13", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hay86/ComfyUI_Dreamtalk": { "stars": 12, "last_update": "2024-08-15 03:37:37", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hay86/ComfyUI_Hallo": { "stars": 21, "last_update": "2024-07-30 09:55:03", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hay86/ComfyUI_LatentSync": { "stars": 16, "last_update": "2025-01-06 07:47:40", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hay86/ComfyUI_MiniCPM-V": { "stars": 39, "last_update": "2024-08-09 07:52:59", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hay86/ComfyUI_OpenVoice": { "stars": 18, "last_update": "2024-07-02 08:16:20", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hayd-zju/ICEdit-ComfyUI-official": { - "stars": 181, + "stars": 191, "last_update": "2025-05-26 06:23:23", - "author_account_age_days": 2274 + "author_account_age_days": 2282 }, "https://github.com/hayde0096/Comfyui-EasySettingpipes": { "stars": 0, "last_update": "2025-05-31 03:51:08", - "author_account_age_days": 3083 + "author_account_age_days": 3091 }, "https://github.com/hayden-fr/ComfyUI-Model-Manager": { - "stars": 130, + "stars": 131, "last_update": "2025-05-16 15:14:43", - "author_account_age_days": 2294 + "author_account_age_days": 2302 }, "https://github.com/hben35096/ComfyUI-ReplenishNodes": { "stars": 6, "last_update": "2025-05-24 17:06:41", - "author_account_age_days": 704 + "author_account_age_days": 712 }, "https://github.com/hben35096/ComfyUI-ToolBox": { "stars": 6, "last_update": "2024-09-02 14:49:43", - "author_account_age_days": 704 + "author_account_age_days": 712 }, "https://github.com/hekmon/comfyui-checkpoint-extract": { "stars": 0, "last_update": "2025-03-31 13:30:54", - "author_account_age_days": 4520 + "author_account_age_days": 4528 }, "https://github.com/hekmon/comfyui-openai-api": { - "stars": 4, + "stars": 5, "last_update": "2025-04-08 09:40:51", - "author_account_age_days": 4520 + "author_account_age_days": 4528 }, "https://github.com/heshengtao/comfyui_LLM_party": { - "stars": 1733, - "last_update": "2025-06-13 16:28:16", - "author_account_age_days": 3252 + "stars": 1747, + "last_update": "2025-06-22 08:42:11", + "author_account_age_days": 3260 }, "https://github.com/heshengtao/comfyui_LLM_schools": { "stars": 7, "last_update": "2024-08-24 15:08:14", - "author_account_age_days": 3252 + "author_account_age_days": 3260 }, "https://github.com/hexxacubic/ComfyUI-Prompt_Library": { "stars": 0, "last_update": "2025-06-06 23:30:44", - "author_account_age_days": 24 + "author_account_age_days": 32 }, "https://github.com/hgabha/WWAA-CustomNodes": { "stars": 21, "last_update": "2025-05-11 09:11:45", - "author_account_age_days": 512 + "author_account_age_days": 520 }, "https://github.com/hhhzzyang/Comfyui_Lama": { "stars": 54, "last_update": "2024-05-22 21:13:19", - "author_account_age_days": 864 + "author_account_age_days": 872 }, "https://github.com/hieuck/ComfyUI-BiRefNet": { "stars": 0, "last_update": "2024-12-04 16:20:00", - "author_account_age_days": 2881 + "author_account_age_days": 2889 }, "https://github.com/hiforce/comfyui-hiforce-plugin": { "stars": 8, "last_update": "2024-06-14 08:13:24", - "author_account_age_days": 2159 + "author_account_age_days": 2167 }, "https://github.com/hinablue/ComfyUI_3dPoseEditor": { - "stars": 199, + "stars": 201, "last_update": "2024-06-21 17:38:40", - "author_account_age_days": 5469 + "author_account_age_days": 5476 }, "https://github.com/hmwl/ComfyUI-TaskMonitor": { - "stars": 3, + "stars": 4, "last_update": "2025-05-25 15:41:14", - "author_account_age_days": 2971 + "author_account_age_days": 2979 }, "https://github.com/hmwl/ComfyUI_zip": { "stars": 2, "last_update": "2025-05-25 16:21:35", - "author_account_age_days": 2971 + "author_account_age_days": 2979 }, "https://github.com/hnmr293/ComfyUI-latent-ops": { "stars": 2, "last_update": "2025-04-16 08:04:59", - "author_account_age_days": 912 + "author_account_age_days": 920 }, "https://github.com/hnmr293/comfyui-savemem": { "stars": 0, "last_update": "2025-04-15 02:10:14", - "author_account_age_days": 912 + "author_account_age_days": 920 }, "https://github.com/hodanajan/optimal-crop-resolution": { "stars": 1, "last_update": "2025-01-21 10:46:26", - "author_account_age_days": 2686 + "author_account_age_days": 2694 }, "https://github.com/hoveychen/ComfyUI-MusePose-Remaster": { "stars": 7, "last_update": "2024-10-22 09:40:04", - "author_account_age_days": 5000 + "author_account_age_days": 5008 }, "https://github.com/huagetai/ComfyUI-Gaffer": { - "stars": 50, + "stars": 51, "last_update": "2024-06-19 00:58:38", - "author_account_age_days": 4989 + "author_account_age_days": 4997 }, "https://github.com/huagetai/ComfyUI_LightGradient": { "stars": 9, "last_update": "2024-05-23 01:21:27", - "author_account_age_days": 4989 + "author_account_age_days": 4997 }, "https://github.com/huanngzh/ComfyUI-MVAdapter": { - "stars": 407, + "stars": 412, "last_update": "2025-04-03 09:06:21", - "author_account_age_days": 1595 + "author_account_age_days": 1603 }, "https://github.com/hubentu/ComfyUI-loras-loader": { "stars": 2, "last_update": "2025-06-04 19:02:35", - "author_account_age_days": 3861 + "author_account_age_days": 3869 }, "https://github.com/huchenlei/ComfyUI-IC-Light-Native": { - "stars": 617, + "stars": 618, "last_update": "2025-02-25 16:35:36", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/huchenlei/ComfyUI-layerdiffuse": { - "stars": 1677, + "stars": 1682, "last_update": "2025-02-25 16:35:50", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/huchenlei/ComfyUI-openpose-editor": { - "stars": 99, + "stars": 101, "last_update": "2024-07-31 13:44:16", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/huchenlei/ComfyUI_DanTagGen": { "stars": 65, "last_update": "2024-08-01 01:42:14", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/huchenlei/ComfyUI_densediffusion": { "stars": 133, "last_update": "2025-02-25 16:34:32", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/huchenlei/ComfyUI_omost": { "stars": 444, "last_update": "2025-02-25 16:35:18", - "author_account_age_days": 3232 + "author_account_age_days": 3240 }, "https://github.com/hughescr/ComfyUI-OpenPose-Keypoint-Extractor": { "stars": 32, "last_update": "2025-04-08 18:48:00", - "author_account_age_days": 5997 + "author_account_age_days": 6005 }, "https://github.com/hugobb/FastGAN-ComfyUI-Node": { "stars": 1, "last_update": "2025-04-25 20:24:20", - "author_account_age_days": 3193 + "author_account_age_days": 3201 }, "https://github.com/huixingyun/ComfyUI-HX-Captioner": { "stars": 0, "last_update": "2025-01-25 06:48:18", - "author_account_age_days": 192 + "author_account_age_days": 200 }, "https://github.com/huixingyun/ComfyUI-HX-Pimg": { "stars": 0, "last_update": "2025-03-04 09:30:50", - "author_account_age_days": 192 + "author_account_age_days": 200 }, "https://github.com/humgate/simplecomfy": { "stars": 0, "last_update": "2024-06-14 08:58:21", - "author_account_age_days": 1723 + "author_account_age_days": 1731 }, "https://github.com/hunzmusic/ComfyUI-IG2MV": { - "stars": 24, + "stars": 25, "last_update": "2025-05-09 10:46:42", - "author_account_age_days": 85 + "author_account_age_days": 93 }, "https://github.com/hustille/ComfyUI_Fooocus_KSampler": { - "stars": 61, + "stars": 62, "last_update": "2024-05-22 20:39:48", - "author_account_age_days": 796 + "author_account_age_days": 804 }, "https://github.com/hustille/ComfyUI_hus_utils": { "stars": 5, "last_update": "2024-05-22 20:39:34", - "author_account_age_days": 796 + "author_account_age_days": 804 }, "https://github.com/hvppycoding/comfyui-random-sampler-scheduler-steps": { "stars": 0, "last_update": "2025-06-04 15:41:16", - "author_account_age_days": 962 + "author_account_age_days": 970 }, "https://github.com/hwhaocool/ComfyUI-Select-Any": { "stars": 2, "last_update": "2024-07-31 13:52:47", - "author_account_age_days": 3245 + "author_account_age_days": 3252 }, "https://github.com/hybskgks28275/ComfyUI-hybs-nodes": { "stars": 1, "last_update": "2025-05-28 07:15:21", - "author_account_age_days": 1284 + "author_account_age_days": 1291 }, "https://github.com/hyunamy/comfy-ui-on-complete-email-me": { "stars": 3, "last_update": "2025-04-10 01:38:49", - "author_account_age_days": 3467 + "author_account_age_days": 3475 }, "https://github.com/iDAPPA/ComfyUI-AMDGPUMonitor": { "stars": 2, "last_update": "2025-03-13 18:16:21", - "author_account_age_days": 97 + "author_account_age_days": 104 }, "https://github.com/iFREEGROUP/comfyui-undistort": { "stars": 2, "last_update": "2024-06-14 08:59:52", - "author_account_age_days": 1914 + "author_account_age_days": 1921 }, "https://github.com/iSuneast/ComfyUI-WebhookNotifier": { "stars": 1, "last_update": "2025-04-06 03:53:13", - "author_account_age_days": 4529 + "author_account_age_days": 4537 + }, + "https://github.com/ialhabbal/OcclusionMask": { + "stars": 19, + "last_update": "2025-06-24 13:47:53", + "author_account_age_days": 3385 }, "https://github.com/iamandeepsandhu/ComfyUI-NSFW-Check": { "stars": 10, "last_update": "2024-11-26 07:32:18", - "author_account_age_days": 2563 + "author_account_age_days": 2570 }, "https://github.com/icesun963/ComfyUI_HFDownLoad": { "stars": 0, "last_update": "2024-07-18 12:13:23", - "author_account_age_days": 4462 + "author_account_age_days": 4470 }, "https://github.com/ichabodcole/ComfyUI-Ichis-Pack": { "stars": 2, "last_update": "2025-04-20 08:05:27", - "author_account_age_days": 4752 + "author_account_age_days": 4760 }, "https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words": { "stars": 204, "last_update": "2025-01-16 08:38:21", - "author_account_age_days": 3406 + "author_account_age_days": 3414 }, "https://github.com/iemesowum/ComfyUI_IsaacNodes": { "stars": 1, "last_update": "2025-03-27 13:28:10", - "author_account_age_days": 5648 + "author_account_age_days": 5656 }, "https://github.com/if-ai/ComfyUI-IF_AI_Dreamtalk": { "stars": 25, "last_update": "2025-03-14 13:19:03", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_AI_HFDownloaderNode": { "stars": 18, "last_update": "2025-03-09 09:21:13", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_AI_ParlerTTSNode": { "stars": 17, "last_update": "2025-03-14 13:27:47", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_AI_WishperSpeechNode": { "stars": 44, "last_update": "2025-03-09 09:17:01", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_AI_tools": { - "stars": 651, + "stars": 652, "last_update": "2025-03-09 09:11:32", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_DatasetMkr": { - "stars": 19, + "stars": 20, "last_update": "2025-03-17 08:14:01", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_Gemini": { "stars": 27, "last_update": "2025-04-14 06:27:01", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_LLM": { - "stars": 122, + "stars": 123, "last_update": "2025-04-09 09:23:21", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_MemoAvatar": { "stars": 166, "last_update": "2025-03-09 09:28:07", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_Trellis": { - "stars": 428, + "stars": 430, "last_update": "2025-03-09 09:31:12", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI-IF_VideoPrompts": { - "stars": 46, + "stars": 47, "last_update": "2025-04-02 17:19:28", - "author_account_age_days": 3219 + "author_account_age_days": 3227 + }, + "https://github.com/if-ai/ComfyUI-WanResolutionSelector": { + "stars": 0, + "last_update": "2025-06-20 19:40:37", + "author_account_age_days": 3227 }, "https://github.com/if-ai/ComfyUI_IF_AI_LoadImages": { "stars": 9, "last_update": "2025-03-14 13:24:31", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/ifmylove2011/comfyui-missed-tool": { "stars": 1, "last_update": "2025-04-10 09:15:08", - "author_account_age_days": 3528 + "author_account_age_days": 3535 }, "https://github.com/ihmily/ComfyUI-Light-Tool": { "stars": 11, "last_update": "2025-06-04 10:12:12", - "author_account_age_days": 986 + "author_account_age_days": 994 }, "https://github.com/illuminatianon/comfyui-csvwildcards": { "stars": 0, "last_update": "2025-05-02 21:45:53", - "author_account_age_days": 100 + "author_account_age_days": 108 }, "https://github.com/imb101/ComfyUI-FaceSwap": { "stars": 33, "last_update": "2024-05-22 18:22:29", - "author_account_age_days": 1245 + "author_account_age_days": 1253 }, "https://github.com/infinigence/ComfyUI_Model_Cache": { "stars": 8, "last_update": "2025-03-28 02:35:14", - "author_account_age_days": 501 + "author_account_age_days": 508 }, "https://github.com/inflamously/comfyui-prompt-enhancer": { "stars": 0, "last_update": "2025-06-02 22:49:50", - "author_account_age_days": 4137 + "author_account_age_days": 4145 }, "https://github.com/injet-zhou/comfyui_extra_api": { "stars": 11, "last_update": "2025-06-06 02:35:34", - "author_account_age_days": 2584 + "author_account_age_days": 2592 }, "https://github.com/inventorado/ComfyUI_NNT": { "stars": 67, "last_update": "2025-01-08 17:22:46", - "author_account_age_days": 3243 + "author_account_age_days": 3250 }, "https://github.com/irreveloper/ComfyUI-DSD": { - "stars": 37, + "stars": 39, "last_update": "2025-03-15 16:55:07", - "author_account_age_days": 4074 + "author_account_age_days": 4082 }, "https://github.com/iwanders/ComfyUI_nodes": { "stars": 1, "last_update": "2024-07-11 01:06:26", - "author_account_age_days": 4783 + "author_account_age_days": 4791 }, "https://github.com/jacklukai/ComfyUI_DeployCash": { "stars": 0, "last_update": "2025-04-25 09:46:49", - "author_account_age_days": 340 + "author_account_age_days": 347 }, "https://github.com/jags111/ComfyUI_Jags_Audiotools": { "stars": 78, "last_update": "2025-03-20 16:23:33", - "author_account_age_days": 4228 + "author_account_age_days": 4235 }, "https://github.com/jags111/ComfyUI_Jags_VectorMagic": { "stars": 79, "last_update": "2025-04-02 08:46:34", - "author_account_age_days": 4228 + "author_account_age_days": 4235 }, "https://github.com/jags111/efficiency-nodes-comfyui": { - "stars": 1266, + "stars": 1276, "last_update": "2025-05-30 03:20:24", - "author_account_age_days": 4228 + "author_account_age_days": 4235 }, "https://github.com/jaimitoes/ComfyUI_Wan2_1_lora_trainer": { - "stars": 10, - "last_update": "2025-06-02 01:53:38", - "author_account_age_days": 4117 + "stars": 13, + "last_update": "2025-06-23 20:59:42", + "author_account_age_days": 4125 }, "https://github.com/jakechai/ComfyUI-JakeUpgrade": { - "stars": 92, - "last_update": "2025-06-15 09:06:17", - "author_account_age_days": 1928 + "stars": 94, + "last_update": "2025-06-22 02:42:41", + "author_account_age_days": 1936 }, "https://github.com/jamal-alkharrat/ComfyUI_rotate_image": { "stars": 2, "last_update": "2024-05-22 23:19:02", - "author_account_age_days": 1333 + "author_account_age_days": 1341 }, "https://github.com/jamesWalker55/comfyui-p2ldgan": { "stars": 17, "last_update": "2024-05-22 18:19:04", - "author_account_age_days": 2884 + "author_account_age_days": 2891 }, "https://github.com/jamesWalker55/comfyui-various": { - "stars": 102, + "stars": 104, "last_update": "2025-02-27 11:01:51", - "author_account_age_days": 2884 + "author_account_age_days": 2891 }, "https://github.com/jammyfu/ComfyUI_PaintingCoderUtils": { "stars": 12, "last_update": "2025-02-26 05:03:05", - "author_account_age_days": 4835 + "author_account_age_days": 4843 }, "https://github.com/jasonjgardner/comfui-substance-designer-integration": { "stars": 1, "last_update": "2025-06-08 20:40:11", - "author_account_age_days": 4735 + "author_account_age_days": 4743 }, "https://github.com/jax-explorer/ComfyUI-InstantCharacter": { - "stars": 179, + "stars": 181, "last_update": "2025-05-13 15:04:58", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/jax-explorer/ComfyUI-VideoBasic": { "stars": 16, - "last_update": "2025-04-07 16:30:32", - "author_account_age_days": 933 + "last_update": "2025-06-22 14:53:19", + "author_account_age_days": 941 }, "https://github.com/jax-explorer/ComfyUI-VideoBasicLatentSync": { "stars": 0, "last_update": "2025-04-07 10:07:44", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/jax-explorer/ComfyUI-easycontrol": { "stars": 186, "last_update": "2025-04-17 15:39:33", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/jax-explorer/comfyui-model-dynamic-loader": { "stars": 1, "last_update": "2025-06-01 07:58:16", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/jax-explorer/fast_video_comfyui": { "stars": 0, "last_update": "2024-05-23 01:17:35", - "author_account_age_days": 933 + "author_account_age_days": 941 }, "https://github.com/jeffrey2212/ComfyUI-PonyCharacterPrompt": { "stars": 2, "last_update": "2024-10-26 05:38:07", - "author_account_age_days": 4828 + "author_account_age_days": 4835 }, "https://github.com/jeffy5/comfyui-faceless-node": { - "stars": 50, + "stars": 51, "last_update": "2025-04-07 02:19:38", - "author_account_age_days": 3288 + "author_account_age_days": 3295 }, "https://github.com/jerome7562/ComfyUI-XenoFlow": { "stars": 4, "last_update": "2025-03-10 16:33:16", - "author_account_age_days": 124 + "author_account_age_days": 131 }, "https://github.com/jerrylongyan/ComfyUI-My-Mask": { "stars": 2, "last_update": "2025-01-08 08:39:19", - "author_account_age_days": 4289 + "author_account_age_days": 4296 }, "https://github.com/jerrywap/ComfyUI_LoadImageFromHttpURL": { "stars": 1, "last_update": "2025-04-09 19:31:50", - "author_account_age_days": 2690 + "author_account_age_days": 2698 }, "https://github.com/jerrywap/ComfyUI_UploadToWebhookHTTP": { "stars": 1, "last_update": "2025-04-07 15:01:04", - "author_account_age_days": 2690 + "author_account_age_days": 2698 }, "https://github.com/jesenzhang/ComfyUI_StreamDiffusion": { "stars": 147, "last_update": "2025-03-18 04:47:24", - "author_account_age_days": 4009 + "author_account_age_days": 4016 }, "https://github.com/jhj0517/ComfyUI-Moondream-Gaze-Detection": { "stars": 53, "last_update": "2025-02-03 04:53:25", - "author_account_age_days": 1256 + "author_account_age_days": 1264 }, "https://github.com/jhj0517/ComfyUI-jhj-Kokoro-Onnx": { "stars": 4, "last_update": "2025-02-04 14:15:08", - "author_account_age_days": 1256 + "author_account_age_days": 1264 }, "https://github.com/jianzhichun/ComfyUI-Easyai": { "stars": 19, "last_update": "2024-10-27 03:29:53", - "author_account_age_days": 3394 + "author_account_age_days": 3402 }, "https://github.com/jiaqianjing/ComfyUI-MidjourneyHub": { - "stars": 7, - "last_update": "2024-12-13 03:03:41", - "author_account_age_days": 3486 + "stars": 9, + "last_update": "2025-06-19 01:29:05", + "author_account_age_days": 3494 }, "https://github.com/jiaxiangc/ComfyUI-ResAdapter": { "stars": 289, "last_update": "2024-05-23 00:22:23", - "author_account_age_days": 1643 + "author_account_age_days": 1651 }, "https://github.com/jinanlongen/ComfyUI-Prompt-Expander": { "stars": 0, "last_update": "2025-01-28 08:04:24", - "author_account_age_days": 4933 + "author_account_age_days": 4941 + }, + "https://github.com/jinchanz/ComfyUI-ADIC": { + "stars": 0, + "last_update": "2025-06-19 11:43:00", + "author_account_age_days": 2430 }, "https://github.com/jitcoder/lora-info": { - "stars": 99, + "stars": 101, "last_update": "2025-05-15 07:25:46", - "author_account_age_days": 4397 + "author_account_age_days": 4405 }, "https://github.com/jjkramhoeft/ComfyUI-Jjk-Nodes": { "stars": 24, "last_update": "2024-05-22 20:44:56", - "author_account_age_days": 4006 + "author_account_age_days": 4014 }, "https://github.com/jkrauss82/ultools-comfyui": { "stars": 7, "last_update": "2025-04-09 20:17:27", - "author_account_age_days": 4568 + "author_account_age_days": 4576 }, "https://github.com/jmkl/ComfyUI-ricing": { "stars": 10, "last_update": "2024-10-16 15:38:08", - "author_account_age_days": 4954 + "author_account_age_days": 4962 }, "https://github.com/jn-jairo/jn_comfyui": { "stars": 5, "last_update": "2024-08-16 18:09:12", - "author_account_age_days": 4341 + "author_account_age_days": 4349 }, "https://github.com/jnxmx/ComfyUI_HuggingFace_Downloader": { "stars": 5, "last_update": "2025-04-27 12:08:27", - "author_account_age_days": 695 + "author_account_age_days": 703 }, "https://github.com/joeriben/ai4artsed_comfyui": { "stars": 1, "last_update": "2025-06-09 21:38:55", - "author_account_age_days": 4104 + "author_account_age_days": 4112 + }, + "https://github.com/joeriben/ai4artsed_comfyui_nodes": { + "stars": 0, + "last_update": "2025-06-23 22:07:41", + "author_account_age_days": 4112 }, "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": { - "stars": 571, + "stars": 580, "last_update": "2024-07-31 13:54:32", - "author_account_age_days": 565 + "author_account_age_days": 572 }, "https://github.com/jojkaart/ComfyUI-sampler-lcm-alternative": { "stars": 134, "last_update": "2025-03-28 19:02:01", - "author_account_age_days": 5155 + "author_account_age_days": 5163 }, "https://github.com/jordoh/ComfyUI-Deepface": { "stars": 28, "last_update": "2025-05-27 18:09:06", - "author_account_age_days": 5350 + "author_account_age_days": 5358 }, "https://github.com/joreyaesh/comfyui_scroll_over_textarea": { "stars": 0, "last_update": "2025-03-09 18:58:09", - "author_account_age_days": 4470 + "author_account_age_days": 4478 }, "https://github.com/joreyaesh/comfyui_touchpad_scroll_controller.enableTouchpadScroll": { "stars": 0, "last_update": "2025-03-18 03:15:42", - "author_account_age_days": 4470 + "author_account_age_days": 4478 }, "https://github.com/jqy-yo/Comfyui-BBoxLowerMask2": { "stars": 0, "last_update": "2025-05-19 02:28:44", - "author_account_age_days": 398 + "author_account_age_days": 406 }, "https://github.com/jroc22/ComfyUI-CSV-prompt-builder": { "stars": 10, "last_update": "2024-08-01 19:39:30", - "author_account_age_days": 1046 + "author_account_age_days": 1054 }, "https://github.com/jstit/comfyui_custom_node_image": { "stars": 0, "last_update": "2024-08-27 05:10:12", - "author_account_age_days": 2221 + "author_account_age_days": 2229 }, "https://github.com/jtrue/ComfyUI-JaRue": { "stars": 7, "last_update": "2024-06-14 09:01:12", - "author_account_age_days": 4286 + "author_account_age_days": 4294 }, "https://github.com/jtydhr88/ComfyUI-Hunyuan3D-1-wrapper": { "stars": 28, "last_update": "2024-11-13 11:50:46", - "author_account_age_days": 5110 + "author_account_age_days": 5118 }, "https://github.com/jtydhr88/ComfyUI-LayerDivider": { "stars": 95, "last_update": "2025-04-25 11:21:00", - "author_account_age_days": 5110 + "author_account_age_days": 5118 }, "https://github.com/jtydhr88/ComfyUI-Workflow-Encrypt": { "stars": 33, "last_update": "2024-07-31 13:45:53", - "author_account_age_days": 5110 + "author_account_age_days": 5118 }, "https://github.com/judian17/ComfyUI-Extract_Flux_Lora": { "stars": 14, "last_update": "2025-05-05 02:46:31", - "author_account_age_days": 2202 + "author_account_age_days": 2210 }, "https://github.com/judian17/ComfyUI-UniWorld-jd17": { - "stars": 21, + "stars": 22, "last_update": "2025-06-10 14:12:16", - "author_account_age_days": 2202 + "author_account_age_days": 2210 }, "https://github.com/judian17/ComfyUI-joycaption-beta-one-GGUF": { - "stars": 34, + "stars": 36, "last_update": "2025-05-26 02:28:33", - "author_account_age_days": 2202 + "author_account_age_days": 2210 }, "https://github.com/judian17/ComfyUI_ZIM": { "stars": 4, "last_update": "2025-05-14 11:32:06", - "author_account_age_days": 2202 + "author_account_age_days": 2210 }, "https://github.com/juehackr/comfyui_fk_server": { - "stars": 401, + "stars": 405, "last_update": "2025-06-05 09:22:26", - "author_account_age_days": 1469 + "author_account_age_days": 1477 }, "https://github.com/juntaosun/ComfyUI_open_nodes": { "stars": 0, "last_update": "2025-06-03 08:27:47", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/jupo-ai/comfy-ex-tagcomplete": { "stars": 14, "last_update": "2025-05-24 07:58:32", - "author_account_age_days": 107 + "author_account_age_days": 115 + }, + "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler": { + "stars": 3, + "last_update": "2025-06-23 03:58:50", + "author_account_age_days": 31 + }, + "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor": { + "stars": 3, + "last_update": "2025-06-23 14:03:22", + "author_account_age_days": 31 }, "https://github.com/jurdnisglobby/ComfyUI-Jurdns-Groq-Node": { "stars": 2, "last_update": "2025-01-18 06:20:23", - "author_account_age_days": 268 + "author_account_age_days": 276 }, "https://github.com/justUmen/Bjornulf_custom_nodes": { - "stars": 377, + "stars": 380, "last_update": "2025-06-11 12:32:38", - "author_account_age_days": 3146 + "author_account_age_days": 3154 }, "https://github.com/justin-vt/ComfyUI-brushstrokes": { "stars": 1, "last_update": "2025-03-05 18:27:37", - "author_account_age_days": 3063 + "author_account_age_days": 3071 }, "https://github.com/k-komarov/comfyui-bunny-cdn-storage": { "stars": 0, "last_update": "2024-08-31 20:59:08", - "author_account_age_days": 3832 + "author_account_age_days": 3839 }, "https://github.com/ka-puna/comfyui-yanc": { - "stars": 8, + "stars": 9, "last_update": "2025-05-25 20:41:57", - "author_account_age_days": 2564 + "author_account_age_days": 2572 }, "https://github.com/kaanyalova/ComfyUI_ExtendedImageFormats": { "stars": 5, "last_update": "2025-01-25 10:57:38", - "author_account_age_days": 1624 + "author_account_age_days": 1631 }, "https://github.com/kadirnar/ComfyUI-Transformers": { "stars": 21, "last_update": "2024-06-22 22:44:39", - "author_account_age_days": 2686 + "author_account_age_days": 2694 }, "https://github.com/kadirnar/ComfyUI-YOLO": { - "stars": 83, + "stars": 84, "last_update": "2025-05-30 13:26:43", - "author_account_age_days": 2686 + "author_account_age_days": 2694 + }, + "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking": { + "stars": 0, + "last_update": "2025-06-18 02:19:28", + "author_account_age_days": 3012 }, "https://github.com/kaibioinfo/ComfyUI_AdvancedRefluxControl": { - "stars": 588, + "stars": 590, "last_update": "2025-04-19 10:24:42", - "author_account_age_days": 5038 + "author_account_age_days": 5046 }, "https://github.com/kale4eat/ComfyUI-path-util": { "stars": 0, "last_update": "2024-05-25 05:44:11", - "author_account_age_days": 1969 + "author_account_age_days": 1977 }, "https://github.com/kale4eat/ComfyUI-speech-dataset-toolkit": { "stars": 18, - "last_update": "2025-02-07 08:10:10", - "author_account_age_days": 1969 + "last_update": "2025-06-17 01:58:03", + "author_account_age_days": 1977 }, "https://github.com/kale4eat/ComfyUI-string-util": { "stars": 4, "last_update": "2024-05-23 00:24:40", - "author_account_age_days": 1969 + "author_account_age_days": 1977 }, "https://github.com/kale4eat/ComfyUI-text-file-util": { "stars": 0, "last_update": "2024-05-23 00:24:51", - "author_account_age_days": 1969 + "author_account_age_days": 1977 }, "https://github.com/kambara/ComfyUI-PromptPalette": { - "stars": 1, + "stars": 2, "last_update": "2025-05-05 17:16:52", - "author_account_age_days": 5892 + "author_account_age_days": 5899 }, "https://github.com/kantsche/ComfyUI-MixMod": { - "stars": 21, + "stars": 22, "last_update": "2025-05-08 17:40:10", - "author_account_age_days": 4242 + "author_account_age_days": 4250 }, "https://github.com/kappa54m/ComfyUI_Usability": { "stars": 0, "last_update": "2024-08-08 15:31:47", - "author_account_age_days": 1868 + "author_account_age_days": 1875 }, "https://github.com/karthikg-09/ComfyUI-Vton-Mask": { "stars": 0, "last_update": "2025-05-24 18:37:41", - "author_account_age_days": 553 + "author_account_age_days": 561 }, "https://github.com/kasukanra/ComfyUI_StringToHex": { "stars": 1, "last_update": "2024-08-20 04:52:06", - "author_account_age_days": 3018 + "author_account_age_days": 3026 }, "https://github.com/katalist-ai/comfyUI-nsfw-detection": { "stars": 1, "last_update": "2024-05-23 01:23:32", - "author_account_age_days": 1110 + "author_account_age_days": 1118 }, "https://github.com/kazeyori/ComfyUI-QuickImageSequenceProcess": { "stars": 0, "last_update": "2025-04-05 12:52:40", - "author_account_age_days": 1084 + "author_account_age_days": 1092 }, "https://github.com/kealiu/ComfyUI-S3-Tools": { "stars": 7, "last_update": "2024-07-04 10:13:07", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/kealiu/ComfyUI-Zero123-Porting": { "stars": 22, "last_update": "2024-08-22 07:07:57", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/kealiu/ComfyUI-ZeroShot-MTrans": { "stars": 174, "last_update": "2024-07-04 10:12:32", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/keit0728/ComfyUI-Image-Toolkit": { "stars": 1, "last_update": "2025-05-30 06:46:47", - "author_account_age_days": 3345 + "author_account_age_days": 3353 }, "https://github.com/keit0728/ComfyUI-keitNodes": { - "stars": 0, - "last_update": "2025-06-13 12:49:20", - "author_account_age_days": 3345 + "stars": 2, + "last_update": "2025-06-20 09:34:46", + "author_account_age_days": 3353 }, "https://github.com/kenjiqq/qq-nodes-comfyui": { "stars": 47, "last_update": "2025-03-29 23:12:11", - "author_account_age_days": 5246 + "author_account_age_days": 5254 }, "https://github.com/kevin314/ComfyUI-FastVideo": { - "stars": 1, + "stars": 2, "last_update": "2025-05-25 10:25:28", - "author_account_age_days": 2489 + "author_account_age_days": 2497 }, "https://github.com/kevinmcmahondev/comfyui-kmcdev-image-filter-adjustments": { "stars": 0, "last_update": "2025-02-19 06:55:25", - "author_account_age_days": 1110 + "author_account_age_days": 1118 }, "https://github.com/kevinmcmahondev/comfyui-skin-tone-detector": { "stars": 2, "last_update": "2024-12-22 06:44:20", - "author_account_age_days": 1110 + "author_account_age_days": 1118 }, "https://github.com/kft334/Knodes": { "stars": 4, "last_update": "2024-06-14 08:12:06", - "author_account_age_days": 1316 + "author_account_age_days": 1324 }, "https://github.com/kijai/ComfyUI-ADMotionDirector": { - "stars": 175, + "stars": 176, "last_update": "2024-11-07 07:20:23", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-APISR-KJ": { "stars": 68, "last_update": "2024-05-21 16:30:21", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-BrushNet-Wrapper": { - "stars": 143, + "stars": 144, "last_update": "2024-06-20 12:15:16", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-CCSR": { - "stars": 227, + "stars": 228, "last_update": "2024-06-28 11:13:33", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-CogVideoXWrapper": { - "stars": 1499, - "last_update": "2025-02-17 00:48:16", - "author_account_age_days": 2540 + "stars": 1502, + "last_update": "2025-06-19 21:10:27", + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-ControlNeXt-SVD": { "stars": 184, "last_update": "2024-08-15 08:26:15", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-DDColor": { "stars": 150, "last_update": "2024-05-21 16:04:26", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-DepthAnythingV2": { - "stars": 321, - "last_update": "2025-03-06 12:01:52", - "author_account_age_days": 2540 + "stars": 327, + "last_update": "2025-06-16 13:16:52", + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-DiffusionLight": { - "stars": 72, + "stars": 73, "last_update": "2024-05-21 16:16:52", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-DynamiCrafterWrapper": { "stars": 676, "last_update": "2025-06-02 11:49:00", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-ELLA-wrapper": { "stars": 116, "last_update": "2024-05-21 16:47:28", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-Florence2": { - "stars": 1286, + "stars": 1299, "last_update": "2025-05-21 14:46:50", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-FluxTrainer": { - "stars": 920, + "stars": 931, "last_update": "2025-04-02 07:35:46", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-GIMM-VFI": { - "stars": 318, + "stars": 322, "last_update": "2025-05-10 18:09:40", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-Geowizard": { "stars": 122, "last_update": "2024-12-16 19:33:54", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-HFRemoteVae": { - "stars": 50, + "stars": 51, "last_update": "2025-03-01 18:22:59", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-HunyuanVideoWrapper": { - "stars": 2472, + "stars": 2482, "last_update": "2025-05-12 13:31:36", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-IC-Light": { - "stars": 1038, + "stars": 1046, "last_update": "2025-05-30 19:21:20", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-KJNodes": { - "stars": 1454, - "last_update": "2025-06-15 22:48:58", - "author_account_age_days": 2540 + "stars": 1476, + "last_update": "2025-06-18 08:03:54", + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-KwaiKolorsWrapper": { - "stars": 594, + "stars": 595, "last_update": "2024-10-18 08:47:45", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LBMWrapper": { - "stars": 211, + "stars": 214, "last_update": "2025-05-14 09:25:13", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LLaVA-OneVision": { "stars": 85, "last_update": "2024-08-25 14:04:22", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LVCDWrapper": { "stars": 63, "last_update": "2024-09-30 11:49:12", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LaVi-Bridge-Wrapper": { "stars": 22, "last_update": "2024-05-21 16:41:18", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LivePortraitKJ": { - "stars": 1996, + "stars": 2001, "last_update": "2024-08-05 21:39:49", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-Lotus": { - "stars": 128, + "stars": 136, "last_update": "2024-10-13 12:33:24", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-LuminaWrapper": { "stars": 195, "last_update": "2024-07-31 13:52:06", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-Marigold": { - "stars": 534, + "stars": 536, "last_update": "2025-05-16 10:22:16", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-MimicMotionWrapper": { - "stars": 483, + "stars": 487, "last_update": "2025-01-12 17:34:34", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-MoGe": { "stars": 49, "last_update": "2025-02-07 18:42:39", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-OpenDiTWrapper": { "stars": 43, "last_update": "2024-07-03 14:59:13", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-PyramidFlowWrapper": { - "stars": 368, + "stars": 369, "last_update": "2024-11-15 13:28:18", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-SUPIR": { - "stars": 1981, + "stars": 1991, "last_update": "2025-06-07 09:17:40", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-SVD": { "stars": 162, "last_update": "2024-05-22 21:09:54", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-StableXWrapper": { - "stars": 54, + "stars": 55, "last_update": "2025-01-31 11:59:01", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-depth-fm": { "stars": 75, "last_update": "2024-05-22 21:10:15", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-moondream": { - "stars": 104, + "stars": 105, "last_update": "2024-08-12 16:30:11", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kijai/ComfyUI-segment-anything-2": { - "stars": 952, + "stars": 961, "last_update": "2025-03-19 09:40:37", - "author_account_age_days": 2540 + "author_account_age_days": 2547 }, "https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks": { "stars": 16, "last_update": "2025-04-03 17:22:59", - "author_account_age_days": 213 + "author_account_age_days": 221 }, "https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink": { "stars": 28, "last_update": "2024-05-22 21:25:13", - "author_account_age_days": 825 + "author_account_age_days": 833 }, "https://github.com/kinfolk0117/ComfyUI_GridSwapper": { "stars": 29, "last_update": "2024-10-27 09:04:20", - "author_account_age_days": 825 + "author_account_age_days": 833 }, "https://github.com/kinfolk0117/ComfyUI_Pilgram": { "stars": 7, "last_update": "2024-05-22 21:25:24", - "author_account_age_days": 825 + "author_account_age_days": 833 }, "https://github.com/kinfolk0117/ComfyUI_SimpleTiles": { "stars": 55, "last_update": "2024-05-22 21:25:01", - "author_account_age_days": 825 + "author_account_age_days": 833 }, "https://github.com/kk8bit/KayTool": { - "stars": 137, + "stars": 149, "last_update": "2025-05-25 03:46:23", - "author_account_age_days": 714 + "author_account_age_days": 721 }, "https://github.com/klinter007/klinter_nodes": { "stars": 18, "last_update": "2025-03-30 14:45:57", - "author_account_age_days": 782 + "author_account_age_days": 790 }, "https://github.com/knuknX/ComfyUI-Image-Tools": { "stars": 3, "last_update": "2024-06-14 09:05:58", - "author_account_age_days": 557 + "author_account_age_days": 565 + }, + "https://github.com/kohs100/comfyui-ppwc": { + "stars": 0, + "last_update": "2025-06-17 03:09:43", + "author_account_age_days": 3256 }, "https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI": { - "stars": 188, + "stars": 190, "last_update": "2024-05-22 20:44:44", - "author_account_age_days": 2166 + "author_account_age_days": 2174 }, "https://github.com/komojini/ComfyUI_SDXL_DreamBooth_LoRA_CustomNodes": { "stars": 3, "last_update": "2024-05-22 21:34:27", - "author_account_age_days": 940 + "author_account_age_days": 948 }, "https://github.com/komojini/komojini-comfyui-nodes": { "stars": 75, "last_update": "2024-05-22 21:34:39", - "author_account_age_days": 940 + "author_account_age_days": 948 }, "https://github.com/kostenickj/jk-comfyui-helpers": { "stars": 5, "last_update": "2024-12-19 10:22:42", - "author_account_age_days": 3406 + "author_account_age_days": 3414 }, "https://github.com/kraglik/prompt_collapse": { "stars": 5, "last_update": "2024-12-15 08:39:51", - "author_account_age_days": 2814 + "author_account_age_days": 2822 }, "https://github.com/krmahil/comfyui-hollow-preserve": { "stars": 1, "last_update": "2025-05-15 09:55:46", - "author_account_age_days": 2635 + "author_account_age_days": 2643 }, "https://github.com/kukuo6666/ComfyUI-Equirect": { "stars": 1, "last_update": "2025-03-29 18:28:47", - "author_account_age_days": 1924 + "author_account_age_days": 1932 }, "https://github.com/kungful/ComfyUI_to_webui": { "stars": 15, "last_update": "2025-05-30 20:08:56", - "author_account_age_days": 1480 + "author_account_age_days": 1488 }, "https://github.com/kunieone/ComfyUI_alkaid": { "stars": 0, "last_update": "2024-05-23 01:10:21", - "author_account_age_days": 2877 + "author_account_age_days": 2884 }, "https://github.com/kwaroran/abg-comfyui": { "stars": 25, "last_update": "2024-05-22 18:19:51", - "author_account_age_days": 964 + "author_account_age_days": 972 }, "https://github.com/kycg/comfyui-Lora-auto-downloader": { "stars": 1, "last_update": "2024-11-08 19:57:23", - "author_account_age_days": 1297 + "author_account_age_days": 1305 }, "https://github.com/l-comm/WatermarkRemoval": { "stars": 4, "last_update": "2025-01-13 05:33:32", - "author_account_age_days": 168 + "author_account_age_days": 175 }, "https://github.com/l20richo/ComfyUI-Azure-Blob-Storage": { "stars": 2, "last_update": "2024-06-22 16:53:47", - "author_account_age_days": 1524 + "author_account_age_days": 1532 }, "https://github.com/l3ony2k/comfyui-leon-nodes": { "stars": 0, "last_update": "2025-06-16 08:17:37", - "author_account_age_days": 2014 + "author_account_age_days": 2022 }, "https://github.com/laksjdjf/Batch-Condition-ComfyUI": { - "stars": 6, + "stars": 7, "last_update": "2024-05-22 20:42:42", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/ComfyUI-Imatrix": { "stars": 3, "last_update": "2025-06-07 00:17:26", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/LCMSampler-ComfyUI": { "stars": 16, "last_update": "2024-05-22 20:42:17", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/LoRTnoC-ComfyUI": { "stars": 13, "last_update": "2024-05-22 20:42:29", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/cd-tuner_negpip-ComfyUI": { "stars": 23, "last_update": "2024-05-22 20:42:04", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/cgem156-ComfyUI": { "stars": 71, "last_update": "2025-04-30 14:52:29", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laksjdjf/pfg-ComfyUI": { "stars": 12, "last_update": "2024-05-22 20:41:41", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/larsupb/LoRA-Merger-ComfyUI": { "stars": 46, "last_update": "2024-10-24 11:28:08", - "author_account_age_days": 3433 + "author_account_age_days": 3440 }, "https://github.com/latenightlabs/ComfyUI-LNL": { - "stars": 25, + "stars": 26, "last_update": "2024-10-07 20:09:43", - "author_account_age_days": 507 + "author_account_age_days": 515 }, "https://github.com/lazniak/Head-Orientation-Node-for-ComfyUI---by-PabloGFX": { "stars": 10, "last_update": "2024-09-25 15:02:14", - "author_account_age_days": 2638 + "author_account_age_days": 2646 }, "https://github.com/lazniak/LiquidTime-Interpolation": { "stars": 12, "last_update": "2025-04-03 11:42:12", - "author_account_age_days": 2638 + "author_account_age_days": 2646 }, "https://github.com/lazniak/comfyui-google-photos-loader": { "stars": 3, "last_update": "2025-04-03 11:46:29", - "author_account_age_days": 2638 + "author_account_age_days": 2646 }, "https://github.com/lc03lc/Comfyui_OmniConsistency": { - "stars": 56, + "stars": 57, "last_update": "2025-06-01 02:56:02", - "author_account_age_days": 1333 + "author_account_age_days": 1341 }, "https://github.com/lceric/comfyui-gpt-image": { - "stars": 7, + "stars": 8, "last_update": "2025-05-19 10:49:30", - "author_account_age_days": 3067 + "author_account_age_days": 3075 }, "https://github.com/lebrosoft/ComfyUI-VideoChatWrapper": { "stars": 2, "last_update": "2025-06-06 04:07:48", - "author_account_age_days": 3874 + "author_account_age_days": 3882 }, "https://github.com/leeguandong/ComfyUI_1Prompt1Story": { "stars": 5, "last_update": "2025-03-13 16:11:50", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_ChatGen": { "stars": 2, "last_update": "2025-03-13 16:24:46", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_Cogview4": { "stars": 2, "last_update": "2025-03-13 15:58:44", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_CompareModelWeights": { "stars": 3, "last_update": "2025-01-09 02:43:41", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_CrossImageAttention": { "stars": 3, "last_update": "2024-08-16 11:59:42", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_DeepSeekVL2": { "stars": 0, "last_update": "2025-03-13 16:32:16", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_FluxAttentionMask": { "stars": 4, "last_update": "2025-03-15 07:37:50", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_FluxClipWeight": { "stars": 3, "last_update": "2025-03-02 07:32:55", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_FluxCustomId": { "stars": 7, "last_update": "2025-01-06 01:12:44", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_FluxLayerDiffuse": { - "stars": 12, + "stars": 13, "last_update": "2025-03-17 01:07:01", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_Gemma3": { "stars": 7, "last_update": "2025-03-25 14:45:01", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_InternVL2": { "stars": 13, "last_update": "2024-08-10 11:00:11", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_LLaSM": { "stars": 4, "last_update": "2024-08-10 10:58:17", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_M3Net": { "stars": 12, "last_update": "2024-08-16 00:03:21", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_MasaCtrl": { "stars": 3, "last_update": "2024-09-01 03:47:35", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_QWQ32B": { "stars": 2, "last_update": "2025-03-15 17:19:23", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_Style_Aligned": { "stars": 5, "last_update": "2024-08-16 11:59:33", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_VideoEditing": { "stars": 4, "last_update": "2024-08-14 16:59:49", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leeguandong/ComfyUI_VisualAttentionMap": { "stars": 8, "last_update": "2024-08-26 05:15:14", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leestuartx/ComfyUI-GG": { "stars": 2, "last_update": "2025-03-10 16:26:37", - "author_account_age_days": 4135 + "author_account_age_days": 4143 }, "https://github.com/lenskikh/ComfyUI-Prompt-Worker": { "stars": 11, "last_update": "2025-01-08 04:10:35", - "author_account_age_days": 3853 + "author_account_age_days": 3861 }, "https://github.com/leoleelxh/Comfy-Topaz-Photo": { "stars": 13, "last_update": "2025-05-24 05:47:40", - "author_account_age_days": 4432 + "author_account_age_days": 4440 }, "https://github.com/leoleelxh/ComfyUI-LLMs": { "stars": 47, - "last_update": "2025-05-20 10:29:57", - "author_account_age_days": 4432 + "last_update": "2025-06-17 13:52:33", + "author_account_age_days": 4440 + }, + "https://github.com/leonardomiramondi/flux-context-comfyui": { + "stars": 0, + "last_update": "2025-06-24 13:39:36", + "author_account_age_days": 785 }, "https://github.com/lepiai/ComfyUI-Minitools": { - "stars": 7, + "stars": 8, "last_update": "2025-05-24 16:11:50", - "author_account_age_days": 2227 + "author_account_age_days": 2235 }, "https://github.com/lerignoux/ComfyUI-PechaKucha": { "stars": 1, "last_update": "2025-05-12 15:42:19", - "author_account_age_days": 4662 + "author_account_age_days": 4669 }, "https://github.com/lgldlk/ComfyUI-PC-ding-dong": { "stars": 65, "last_update": "2024-12-27 03:25:38", - "author_account_age_days": 2047 + "author_account_age_days": 2055 }, "https://github.com/lgldlk/ComfyUI-PSD-Replace": { "stars": 4, "last_update": "2025-03-15 07:03:24", - "author_account_age_days": 2047 + "author_account_age_days": 2055 }, "https://github.com/liangt/comfyui-loadimagewithsubfolder": { "stars": 3, "last_update": "2025-03-27 16:49:42", - "author_account_age_days": 4415 + "author_account_age_days": 4423 }, "https://github.com/licyk/ComfyUI-HakuImg": { "stars": 8, "last_update": "2025-05-04 03:31:32", - "author_account_age_days": 1625 + "author_account_age_days": 1633 }, "https://github.com/licyk/ComfyUI-Restart-Sampler": { "stars": 10, "last_update": "2025-02-24 04:53:52", - "author_account_age_days": 1625 + "author_account_age_days": 1633 }, "https://github.com/licyk/ComfyUI-TCD-Sampler": { "stars": 4, "last_update": "2025-03-27 16:32:33", - "author_account_age_days": 1625 + "author_account_age_days": 1633 }, "https://github.com/lihaoyun6/ComfyUI-CSV-Random-Picker": { "stars": 1, "last_update": "2025-05-10 10:41:53", - "author_account_age_days": 3468 + "author_account_age_days": 3476 }, "https://github.com/lilly1987/ComfyUI_node_Lilly": { "stars": 55, "last_update": "2024-12-21 01:50:03", - "author_account_age_days": 3266 + "author_account_age_days": 3274 }, "https://github.com/lingha0h/comfyui_kj": { "stars": 6, "last_update": "2025-03-20 13:24:29", - "author_account_age_days": 131 + "author_account_age_days": 139 + }, + "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update": { + "stars": 0, + "last_update": "2025-06-17 11:26:32", + "author_account_age_days": 463 }, "https://github.com/linksluckytime/comfyui_snacknodes": { "stars": 0, "last_update": "2025-05-07 01:48:50", - "author_account_age_days": 782 + "author_account_age_days": 789 }, "https://github.com/linshier/comfyui-remote-tools": { "stars": 4, "last_update": "2024-05-28 07:44:23", - "author_account_age_days": 4149 + "author_account_age_days": 4156 }, "https://github.com/lisaks/comfyui-panelforge": { "stars": 1, "last_update": "2025-04-29 00:25:00", - "author_account_age_days": 1093 + "author_account_age_days": 1101 }, "https://github.com/liuqianhonga/ComfyUI-Html2Image": { "stars": 9, - "last_update": "2025-04-08 14:48:57", - "author_account_age_days": 544 + "last_update": "2025-06-22 07:58:49", + "author_account_age_days": 551 }, "https://github.com/liuqianhonga/ComfyUI-Image-Compressor": { - "stars": 17, - "last_update": "2025-04-12 14:19:47", - "author_account_age_days": 544 + "stars": 18, + "last_update": "2025-06-22 08:32:22", + "author_account_age_days": 551 }, "https://github.com/liuqianhonga/ComfyUI-QHNodes": { "stars": 3, - "last_update": "2025-05-10 16:26:23", - "author_account_age_days": 544 + "last_update": "2025-06-22 08:33:17", + "author_account_age_days": 551 }, "https://github.com/liuqianhonga/ComfyUI-String-Helper": { "stars": 7, - "last_update": "2025-05-10 16:26:03", - "author_account_age_days": 544 + "last_update": "2025-06-22 07:56:48", + "author_account_age_days": 551 }, "https://github.com/liushuchun/ComfyUI_Lora_List_With_Url_Loader": { "stars": 2, "last_update": "2024-09-26 12:38:32", - "author_account_age_days": 4404 + "author_account_age_days": 4411 }, "https://github.com/liusida/ComfyUI-AutoCropFaces": { - "stars": 84, + "stars": 85, "last_update": "2024-08-12 17:38:17", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/liusida/ComfyUI-B-LoRA": { - "stars": 74, + "stars": 75, "last_update": "2024-06-18 03:17:46", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/liusida/ComfyUI-Debug": { "stars": 11, "last_update": "2024-06-14 10:25:26", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/liusida/ComfyUI-Login": { - "stars": 165, + "stars": 169, "last_update": "2024-11-15 01:35:25", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/liusida/ComfyUI-SD3-nodes": { "stars": 5, "last_update": "2024-06-14 13:01:41", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/livepeer/ComfyUI-Stream-Pack": { "stars": 8, "last_update": "2025-05-07 12:46:57", - "author_account_age_days": 3063 + "author_account_age_days": 3071 }, "https://github.com/ljleb/comfy-mecha": { - "stars": 76, + "stars": 78, "last_update": "2025-06-09 02:40:54", - "author_account_age_days": 2820 + "author_account_age_days": 2828 }, "https://github.com/lks-ai/ComfyUI-StableAudioSampler": { - "stars": 251, + "stars": 252, "last_update": "2025-01-07 08:33:57", - "author_account_age_days": 456 + "author_account_age_days": 464 }, "https://github.com/lks-ai/anynode": { "stars": 534, "last_update": "2024-07-07 03:45:48", - "author_account_age_days": 456 + "author_account_age_days": 464 }, "https://github.com/lldacing/ComfyUI_BEN_ll": { "stars": 4, "last_update": "2025-05-22 07:01:42", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/ComfyUI_BiRefNet_ll": { - "stars": 217, + "stars": 221, "last_update": "2025-06-01 16:39:20", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/ComfyUI_Patches_ll": { - "stars": 105, + "stars": 106, "last_update": "2025-04-08 06:22:28", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/ComfyUI_PuLID_Flux_ll": { - "stars": 367, + "stars": 372, "last_update": "2025-04-08 06:21:55", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/ComfyUI_StableDelight_ll": { "stars": 12, "last_update": "2025-04-08 06:22:43", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/ComfyUI_StableHair_ll": { "stars": 64, "last_update": "2025-03-31 09:16:21", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lldacing/comfyui-easyapi-nodes": { - "stars": 75, + "stars": 77, "last_update": "2025-05-15 07:06:47", - "author_account_age_days": 2450 + "author_account_age_days": 2458 }, "https://github.com/lo-th/Comfyui_three_js": { "stars": 19, "last_update": "2025-06-12 08:18:17", - "author_account_age_days": 4836 + "author_account_age_days": 4844 }, "https://github.com/lodestone-rock/ComfyUI_FluxMod": { - "stars": 106, - "last_update": "2025-05-31 11:50:58", - "author_account_age_days": 940 + "stars": 107, + "last_update": "2025-06-22 09:44:09", + "author_account_age_days": 948 }, "https://github.com/logtd/ComfyUI-4DHumans": { "stars": 7, "last_update": "2024-08-30 21:12:55", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-APGScaling": { "stars": 29, "last_update": "2024-10-06 20:51:27", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-DiLightNet": { "stars": 11, "last_update": "2024-10-06 03:48:15", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-FLATTEN": { "stars": 109, "last_update": "2024-08-30 21:18:55", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-Fluxtapoz": { - "stars": 1338, + "stars": 1344, "last_update": "2025-01-09 02:38:40", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-InstanceDiffusion": { - "stars": 179, + "stars": 180, "last_update": "2024-08-30 21:17:51", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-InversedNoise": { "stars": 16, "last_update": "2024-05-22 00:10:18", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-MochiEdit": { - "stars": 293, + "stars": 294, "last_update": "2024-11-03 18:38:16", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-MotionThiefExperiment": { "stars": 41, "last_update": "2024-08-30 21:19:48", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-RAVE_ATTN": { "stars": 14, "last_update": "2024-05-22 00:20:03", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-ReNoise": { "stars": 6, "last_update": "2024-09-01 22:17:49", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-RefSampling": { "stars": 5, "last_update": "2024-09-11 20:56:01", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-RefUNet": { "stars": 45, "last_update": "2024-08-30 21:20:20", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-SEGAttention": { "stars": 38, "last_update": "2024-09-11 20:55:00", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-SSREncoder": { "stars": 1, "last_update": "2024-08-24 23:33:09", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-SeeCoder": { "stars": 0, "last_update": "2024-08-24 23:31:10", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-TrackingNodes": { "stars": 19, "last_update": "2024-05-22 00:03:27", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-ViewCrafter": { "stars": 12, "last_update": "2024-09-30 19:32:41", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/longgui0318/comfyui-common-util": { "stars": 1, "last_update": "2025-04-07 08:19:05", - "author_account_age_days": 4521 + "author_account_age_days": 4529 }, "https://github.com/longgui0318/comfyui-llm-assistant": { "stars": 7, "last_update": "2024-09-17 13:12:43", - "author_account_age_days": 4521 + "author_account_age_days": 4529 }, "https://github.com/longgui0318/comfyui-magic-clothing": { - "stars": 76, + "stars": 77, "last_update": "2024-08-08 14:42:04", - "author_account_age_days": 4521 + "author_account_age_days": 4529 }, "https://github.com/longgui0318/comfyui-mask-util": { "stars": 7, "last_update": "2025-04-07 08:18:11", - "author_account_age_days": 4521 + "author_account_age_days": 4529 + }, + "https://github.com/lord-lethris/ComfyUI-RPG-Characters": { + "stars": 1, + "last_update": "2025-06-18 23:08:15", + "author_account_age_days": 4789 }, "https://github.com/lordgasmic/comfyui_save_image_with_options": { "stars": 0, "last_update": "2024-06-20 16:39:23", - "author_account_age_days": 5124 + "author_account_age_days": 5132 }, "https://github.com/lordgasmic/comfyui_wildcards": { "stars": 10, "last_update": "2024-06-20 16:52:14", - "author_account_age_days": 5124 + "author_account_age_days": 5132 }, "https://github.com/lquesada/ComfyUI-Inpaint-CropAndStitch": { - "stars": 715, + "stars": 727, "last_update": "2025-05-10 07:46:49", - "author_account_age_days": 4407 + "author_account_age_days": 4415 }, "https://github.com/lquesada/ComfyUI-Interactive": { "stars": 38, "last_update": "2025-05-01 03:39:47", - "author_account_age_days": 4407 + "author_account_age_days": 4415 }, "https://github.com/lquesada/ComfyUI-Prompt-Combinator": { "stars": 38, "last_update": "2025-04-16 20:52:10", - "author_account_age_days": 4407 + "author_account_age_days": 4415 }, "https://github.com/lrzjason/ComfyUI-Watermark-Detection": { "stars": 17, "last_update": "2025-05-28 20:46:50", - "author_account_age_days": 4020 + "author_account_age_days": 4027 }, "https://github.com/lrzjason/Comfyui-In-Context-Lora-Utils": { - "stars": 222, + "stars": 224, "last_update": "2025-04-03 09:09:43", - "author_account_age_days": 4020 + "author_account_age_days": 4027 }, "https://github.com/lrzjason/Comfyui-Kolors-Utils": { "stars": 17, "last_update": "2025-05-05 16:10:11", - "author_account_age_days": 4020 + "author_account_age_days": 4027 }, "https://github.com/lrzjason/Comfyui-ThinkRemover": { "stars": 4, "last_update": "2025-02-07 10:57:50", - "author_account_age_days": 4020 + "author_account_age_days": 4027 }, "https://github.com/ltdrdata/ComfyUI-Impact-Pack": { - "stars": 2485, - "last_update": "2025-06-16 03:34:56", - "author_account_age_days": 819 + "stars": 2517, + "last_update": "2025-06-19 03:41:19", + "author_account_age_days": 827 }, "https://github.com/ltdrdata/ComfyUI-Impact-Subpack": { - "stars": 203, - "last_update": "2025-05-18 20:31:42", - "author_account_age_days": 819 + "stars": 209, + "last_update": "2025-06-17 13:31:07", + "author_account_age_days": 827 }, "https://github.com/ltdrdata/ComfyUI-Inspire-Pack": { - "stars": 595, - "last_update": "2025-06-12 08:05:51", - "author_account_age_days": 819 + "stars": 603, + "last_update": "2025-06-17 13:06:13", + "author_account_age_days": 827 }, "https://github.com/ltdrdata/ComfyUI-Manager": { - "stars": 10439, - "last_update": "2025-06-16 03:52:11", - "author_account_age_days": 432 + "stars": 10537, + "last_update": "2025-06-23 22:17:47", + "author_account_age_days": 440 }, "https://github.com/ltdrdata/comfyui-connection-helper": { "stars": 27, "last_update": "2025-04-07 13:49:56", - "author_account_age_days": 819 + "author_account_age_days": 827 }, "https://github.com/ltdrdata/was-node-suite-comfyui": { - "stars": 20, + "stars": 30, "last_update": "2025-06-03 09:41:36", - "author_account_age_days": 819 + "author_account_age_days": 827 }, "https://github.com/lthero-big/ComfyUI-GaussianShadingWatermark": { "stars": 5, "last_update": "2025-03-23 08:18:07", - "author_account_age_days": 1751 + "author_account_age_days": 1759 }, "https://github.com/luandev/ComfyUI-CrewAI": { "stars": 53, "last_update": "2025-01-17 18:06:27", - "author_account_age_days": 4164 + "author_account_age_days": 4172 + }, + "https://github.com/lucak5s/comfyui_gfpgan": { + "stars": 0, + "last_update": "2025-06-21 22:38:35", + "author_account_age_days": 1046 }, "https://github.com/lujiazho/ComfyUI-CatvtonFluxWrapper": { "stars": 91, "last_update": "2024-12-02 22:10:41", - "author_account_age_days": 1794 + "author_account_age_days": 1802 }, "https://github.com/lum3on/ComfyUI-FrameUtilitys": { "stars": 1, "last_update": "2025-06-09 22:12:49", - "author_account_age_days": 131 + "author_account_age_days": 139 }, "https://github.com/lum3on/ComfyUI-ModelQuantizer": { - "stars": 31, + "stars": 33, "last_update": "2025-06-14 20:45:21", - "author_account_age_days": 131 + "author_account_age_days": 139 + }, + "https://github.com/lum3on/ComfyUI-StableAudioX": { + "stars": 15, + "last_update": "2025-06-19 18:02:29", + "author_account_age_days": 139 }, "https://github.com/lum3on/comfyui_EdgeTAM": { "stars": 0, "last_update": "2025-06-16 10:42:14", - "author_account_age_days": 131 + "author_account_age_days": 139 }, "https://github.com/lum3on/comfyui_LLM_Polymath": { "stars": 63, "last_update": "2025-06-12 22:24:36", - "author_account_age_days": 131 + "author_account_age_days": 139 }, "https://github.com/lumalabs/ComfyUI-LumaAI-API": { "stars": 200, "last_update": "2025-03-31 22:54:28", - "author_account_age_days": 1468 + "author_account_age_days": 1476 }, "https://github.com/lunarring/bitalino_comfy": { "stars": 0, "last_update": "2025-02-21 09:03:54", - "author_account_age_days": 1599 + "author_account_age_days": 1607 }, "https://github.com/lxe/ComfyUI-OpenAI-Compat-LLM-Node": { "stars": 0, "last_update": "2025-05-28 05:39:55", - "author_account_age_days": 4855 + "author_account_age_days": 4863 }, "https://github.com/m-sokes/ComfyUI-Sokes-Nodes": { "stars": 2, - "last_update": "2025-06-15 15:37:11", - "author_account_age_days": 672 + "last_update": "2025-06-24 02:32:21", + "author_account_age_days": 680 }, "https://github.com/madtunebk/ComfyUI-ControlnetAux": { "stars": 15, "last_update": "2024-06-28 16:16:51", - "author_account_age_days": 818 + "author_account_age_days": 826 }, "https://github.com/maepopi/Diffusers-in-ComfyUI": { "stars": 6, "last_update": "2025-03-28 07:29:38", - "author_account_age_days": 2715 + "author_account_age_days": 2722 }, "https://github.com/magekinnarus/ComfyUI-V-Prediction-Node": { "stars": 2, "last_update": "2025-02-04 08:29:24", - "author_account_age_days": 989 + "author_account_age_days": 997 }, "https://github.com/magic-eraser-org/ComfyUI-Unwatermark": { "stars": 1, "last_update": "2025-05-14 06:50:13", - "author_account_age_days": 34 + "author_account_age_days": 42 }, "https://github.com/maludwig/basix_image_filters": { "stars": 5, "last_update": "2025-05-15 23:29:38", - "author_account_age_days": 3863 + "author_account_age_days": 3871 }, "https://github.com/mang01010/MangoNodePack": { "stars": 3, "last_update": "2025-05-21 21:53:18", - "author_account_age_days": 107 + "author_account_age_days": 115 }, "https://github.com/mango-rgb/ComfyUI-Mango-Random-node": { "stars": 1, "last_update": "2025-01-21 11:31:10", - "author_account_age_days": 761 + "author_account_age_days": 769 }, "https://github.com/mape/ComfyUI-mape-Helpers": { "stars": 180, "last_update": "2024-06-27 16:30:32", - "author_account_age_days": 6111 + "author_account_age_days": 6119 }, "https://github.com/maracman/ComfyUI-SubjectStyle-CSV": { "stars": 4, "last_update": "2024-06-24 13:53:39", - "author_account_age_days": 1524 + "author_account_age_days": 1531 }, "https://github.com/marawan206/ComfyUI-FaceCropper": { "stars": 10, "last_update": "2025-03-07 01:44:44", - "author_account_age_days": 527 + "author_account_age_days": 535 }, "https://github.com/marcoc2/ComfyUI-AnotherUtils": { "stars": 1, "last_update": "2024-12-20 04:34:13", - "author_account_age_days": 5541 + "author_account_age_days": 5549 }, "https://github.com/marcoc2/ComfyUI_CogView4-6B_diffusers": { "stars": 2, "last_update": "2025-03-04 17:43:50", - "author_account_age_days": 5541 + "author_account_age_days": 5549 }, "https://github.com/marduk191/ComfyUI-Fluxpromptenhancer": { "stars": 107, "last_update": "2025-04-03 17:22:55", - "author_account_age_days": 4772 + "author_account_age_days": 4779 }, "https://github.com/marduk191/comfyui-marnodes": { "stars": 3, "last_update": "2025-03-27 13:26:45", - "author_account_age_days": 4772 + "author_account_age_days": 4779 }, "https://github.com/marhensa/sdxl-recommended-res-calc": { "stars": 86, "last_update": "2025-04-13 09:33:49", - "author_account_age_days": 5132 + "author_account_age_days": 5140 }, "https://github.com/marklieberman/ComfyUI-Liebs-Picker": { "stars": 2, "last_update": "2025-05-09 21:16:27", - "author_account_age_days": 4162 + "author_account_age_days": 4170 }, "https://github.com/marklieberman/ComfyUI-Liebs-Title": { "stars": 0, "last_update": "2025-05-12 23:32:28", - "author_account_age_days": 4162 + "author_account_age_days": 4170 }, "https://github.com/marklieberman/ComfyUI-Liebs-Toast": { "stars": 0, "last_update": "2025-05-12 23:34:55", - "author_account_age_days": 4162 + "author_account_age_days": 4170 }, "https://github.com/markuryy/ComfyUI-Flux-Prompt-Saver": { "stars": 12, "last_update": "2024-10-30 10:25:15", - "author_account_age_days": 3235 + "author_account_age_days": 3243 }, "https://github.com/markuryy/ComfyUI-Simple-Video-XY-Plot": { "stars": 3, "last_update": "2025-03-12 18:18:54", - "author_account_age_days": 3235 + "author_account_age_days": 3243 }, "https://github.com/markuryy/ComfyUI-SuperLoader": { "stars": 0, "last_update": "2025-03-12 18:23:22", - "author_account_age_days": 3235 + "author_account_age_days": 3243 }, "https://github.com/martijnat/comfyui-previewlatent": { - "stars": 35, + "stars": 36, "last_update": "2024-05-22 21:28:39", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/martin-rizzo/ComfyUI-TinyBreaker": { - "stars": 34, + "stars": 35, "last_update": "2025-05-04 00:02:02", - "author_account_age_days": 1954 + "author_account_age_days": 1962 }, "https://github.com/massao000/ComfyUI_aspect_ratios": { "stars": 10, "last_update": "2024-05-22 22:23:10", - "author_account_age_days": 1764 + "author_account_age_days": 1772 }, "https://github.com/matan1905/ComfyUI-Serving-Toolkit": { "stars": 67, "last_update": "2025-05-01 10:03:33", - "author_account_age_days": 3097 + "author_account_age_days": 3104 }, "https://github.com/matorzhin/milan-nodes-comfyui": { "stars": 0, "last_update": "2025-06-05 16:37:41", - "author_account_age_days": 3009 + "author_account_age_days": 3017 }, "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node": { "stars": 15, - "last_update": "2025-04-24 14:00:34", - "author_account_age_days": 4907 + "last_update": "2025-06-22 11:06:40", + "author_account_age_days": 4914 }, "https://github.com/mav-rik/facerestore_cf": { - "stars": 274, - "last_update": "2024-05-22 20:53:23", - "author_account_age_days": 3277 + "stars": 275, + "last_update": "2025-06-21 08:02:17", + "author_account_age_days": 3285 }, "https://github.com/mbrostami/ComfyUI-HF": { "stars": 19, "last_update": "2024-05-27 21:45:33", - "author_account_age_days": 4679 + "author_account_age_days": 4686 }, "https://github.com/mbrostami/ComfyUI-TITrain": { "stars": 8, "last_update": "2025-03-14 17:39:11", - "author_account_age_days": 4679 + "author_account_age_days": 4686 }, "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding": { - "stars": 1208, + "stars": 1205, "last_update": "2025-03-14 09:33:32", - "author_account_age_days": 2458 + "author_account_age_days": 2466 }, "https://github.com/meanin2/comfyui-MGnodes": { "stars": 2, "last_update": "2025-01-24 07:32:08", - "author_account_age_days": 1011 + "author_account_age_days": 1019 }, "https://github.com/meap158/ComfyUI-Background-Replacement": { "stars": 59, "last_update": "2025-01-06 23:45:28", - "author_account_age_days": 3560 + "author_account_age_days": 3568 }, "https://github.com/meap158/ComfyUI-GPU-temperature-protection": { "stars": 3, "last_update": "2024-05-22 20:43:21", - "author_account_age_days": 3560 + "author_account_age_days": 3568 }, "https://github.com/meap158/ComfyUI-Prompt-Expansion": { - "stars": 74, + "stars": 77, "last_update": "2024-05-22 20:43:37", - "author_account_age_days": 3560 + "author_account_age_days": 3568 }, "https://github.com/mech-tools/comfyui-checkpoint-automatic-config": { "stars": 3, "last_update": "2024-09-05 14:23:29", - "author_account_age_days": 4797 + "author_account_age_days": 4804 }, "https://github.com/mediocreatmybest/ComfyUI-Transformers-Pipeline": { "stars": 4, "last_update": "2025-02-24 15:11:36", - "author_account_age_days": 1558 + "author_account_age_days": 1566 }, "https://github.com/melMass/comfy_mtb": { - "stars": 574, + "stars": 576, "last_update": "2025-06-08 17:59:38", - "author_account_age_days": 4102 + "author_account_age_days": 4110 }, "https://github.com/melMass/comfy_oiio": { - "stars": 3, + "stars": 4, "last_update": "2025-04-14 20:24:37", - "author_account_age_days": 4102 + "author_account_age_days": 4110 }, "https://github.com/mephisto83/petty-paint-comfyui-node": { "stars": 3, "last_update": "2024-10-23 22:23:03", - "author_account_age_days": 4029 + "author_account_age_days": 4037 }, "https://github.com/meshmesh-io/ComfyUI-MeshMesh": { "stars": 0, "last_update": "2024-05-23 00:10:09", - "author_account_age_days": 585 + "author_account_age_days": 593 }, "https://github.com/meshmesh-io/mm-comfyui-loopback": { "stars": 1, "last_update": "2024-05-23 00:09:57", - "author_account_age_days": 585 + "author_account_age_days": 593 }, "https://github.com/meshmesh-io/mm-comfyui-megamask": { "stars": 0, "last_update": "2024-05-23 00:09:47", - "author_account_age_days": 585 + "author_account_age_days": 593 }, "https://github.com/metal3d/ComfyUI_Human_Parts": { "stars": 34, "last_update": "2025-03-07 08:14:46", - "author_account_age_days": 5830 + "author_account_age_days": 5838 }, "https://github.com/metal3d/ComfyUI_M3D_photo_effects": { "stars": 3, "last_update": "2025-03-11 12:09:55", - "author_account_age_days": 5830 + "author_account_age_days": 5838 }, "https://github.com/metncelik/comfyui_met_suite": { "stars": 2, "last_update": "2025-03-27 12:27:48", - "author_account_age_days": 980 + "author_account_age_days": 987 }, "https://github.com/mfg637/ComfyUI-ScheduledGuider-Ext": { "stars": 2, "last_update": "2025-06-08 14:30:43", - "author_account_age_days": 2674 + "author_account_age_days": 2682 }, "https://github.com/mgfxer/ComfyUI-FrameFX": { "stars": 23, "last_update": "2024-07-20 13:58:46", - "author_account_age_days": 359 + "author_account_age_days": 367 }, "https://github.com/miaoshouai/ComfyUI-Miaoshouai-Tagger": { - "stars": 408, + "stars": 412, "last_update": "2025-04-26 02:32:18", - "author_account_age_days": 825 + "author_account_age_days": 833 }, - "https://github.com/michaelgold/ComfyUI-Hal-Dot-Fun-Model-Downloader": { + "https://github.com/michaelgold/ComfyUI-HF-Model-Downloader": { "stars": 2, "last_update": "2025-06-09 15:02:48", - "author_account_age_days": 5713 + "author_account_age_days": 5721 }, "https://github.com/microbote/ComfyUI-StyledCLIPTextEncode": { "stars": 2, "last_update": "2024-08-27 03:37:29", - "author_account_age_days": 2365 + "author_account_age_days": 2373 }, "https://github.com/mihaiiancu/ComfyUI_Inpaint": { "stars": 9, "last_update": "2024-05-22 18:19:38", - "author_account_age_days": 3018 + "author_account_age_days": 3026 }, "https://github.com/mikebilly/Transparent-background-comfyUI": { "stars": 2, "last_update": "2025-01-29 16:29:23", - "author_account_age_days": 2921 + "author_account_age_days": 2928 }, "https://github.com/mikkel/ComfyUI-text-overlay": { "stars": 57, "last_update": "2024-08-17 16:09:41", - "author_account_age_days": 6273 + "author_account_age_days": 6281 }, "https://github.com/mikkel/comfyui-mask-boundingbox": { - "stars": 28, + "stars": 29, "last_update": "2024-05-22 21:26:23", - "author_account_age_days": 6273 + "author_account_age_days": 6281 }, "https://github.com/mingsky-ai/ComfyUI-MingNodes": { - "stars": 395, + "stars": 398, "last_update": "2024-10-18 16:51:14", - "author_account_age_days": 278 + "author_account_age_days": 286 }, "https://github.com/mira-6/comfyui-sasolver": { "stars": 3, "last_update": "2025-02-23 21:44:23", - "author_account_age_days": 749 + "author_account_age_days": 757 }, "https://github.com/mirabarukaso/ComfyUI_Mira": { "stars": 128, - "last_update": "2025-06-04 12:32:29", - "author_account_age_days": 1577 + "last_update": "2025-06-20 14:01:41", + "author_account_age_days": 1585 }, "https://github.com/misterjoessef/MLTask_ComfyUI": { "stars": 0, "last_update": "2024-08-17 16:45:24", - "author_account_age_days": 1095 + "author_account_age_days": 1103 }, "https://github.com/mit-han-lab/ComfyUI-nunchaku": { - "stars": 1249, - "last_update": "2025-06-16 08:20:33", - "author_account_age_days": 2580 + "stars": 1300, + "last_update": "2025-06-18 20:11:50", + "author_account_age_days": 2588 }, "https://github.com/mittimi/ComfyUI_mittimiLoadPreset2": { "stars": 4, "last_update": "2025-06-13 16:52:53", - "author_account_age_days": 4367 + "author_account_age_days": 4375 }, "https://github.com/mittimi/ComfyUI_mittimiRecalculateSize": { "stars": 0, "last_update": "2024-09-07 07:43:41", - "author_account_age_days": 4367 + "author_account_age_days": 4375 }, "https://github.com/mittimi/ComfyUI_mittimiWidthHeight": { "stars": 1, "last_update": "2024-09-07 07:48:03", - "author_account_age_days": 4367 + "author_account_age_days": 4375 }, "https://github.com/mo230761/InsertAnything-ComfyUI-official": { - "stars": 10, + "stars": 16, "last_update": "2025-06-04 13:23:00", - "author_account_age_days": 1331 + "author_account_age_days": 1339 }, "https://github.com/mobilehacker/ComfyUI_format-lora-stack": { "stars": 2, "last_update": "2025-04-04 19:45:39", - "author_account_age_days": 4165 + "author_account_age_days": 4173 }, "https://github.com/modelscope/comfyscope": { "stars": 4, "last_update": "2024-11-20 08:48:36", - "author_account_age_days": 1057 + "author_account_age_days": 1065 }, "https://github.com/modelscope/scepter": { - "stars": 521, + "stars": 523, "last_update": "2025-04-03 06:00:15", - "author_account_age_days": 1057 + "author_account_age_days": 1065 }, "https://github.com/modusCell/ComfyUI-dimension-node-modusCell": { "stars": 1, "last_update": "2024-05-22 22:08:50", - "author_account_age_days": 4961 + "author_account_age_days": 4968 }, "https://github.com/mohseni-mr/ComfyUI-Mohseni-Kit": { "stars": 1, "last_update": "2025-02-17 07:14:46", - "author_account_age_days": 1072 + "author_account_age_days": 1080 }, "https://github.com/mohsensd1373/comfyui_wordpress": { "stars": 0, "last_update": "2025-05-08 02:25:36", - "author_account_age_days": 4210 + "author_account_age_days": 4217 }, "https://github.com/monkeyWie/ComfyUI-FormInput": { "stars": 0, "last_update": "2025-05-12 03:47:39", - "author_account_age_days": 3636 + "author_account_age_days": 3644 }, "https://github.com/moon7star9/ComfyUI_BiRefNet_Universal": { "stars": 19, "last_update": "2025-02-26 03:01:29", - "author_account_age_days": 764 + "author_account_age_days": 772 }, "https://github.com/moose-lab/ComfyUI-GPT": { - "stars": 3, + "stars": 4, "last_update": "2025-04-12 07:59:29", - "author_account_age_days": 142 + "author_account_age_days": 150 }, "https://github.com/morgan55555/comfyui-lock-mode": { "stars": 0, "last_update": "2025-04-28 16:16:18", - "author_account_age_days": 3541 + "author_account_age_days": 3549 }, "https://github.com/morino-kumasan/comfyui-toml-prompt": { "stars": 0, - "last_update": "2024-12-07 11:19:40", - "author_account_age_days": 1680 + "last_update": "2025-06-24 09:05:15", + "author_account_age_days": 1688 }, "https://github.com/motivated3/comfyui-shua-creator": { "stars": 6, "last_update": "2024-12-05 10:39:52", - "author_account_age_days": 3163 + "author_account_age_days": 3171 }, "https://github.com/moustafa-nasr/ComfyUI-SimpleLogger": { "stars": 4, "last_update": "2025-06-07 08:30:19", - "author_account_age_days": 3828 + "author_account_age_days": 3835 }, "https://github.com/moyi7712/ComfyUI_Seamless_Patten": { "stars": 17, "last_update": "2025-03-19 10:35:44", - "author_account_age_days": 2658 + "author_account_age_days": 2665 }, "https://github.com/mozman/ComfyUI_mozman_nodes": { "stars": 0, "last_update": "2024-05-22 22:13:32", - "author_account_age_days": 4437 + "author_account_age_days": 4445 }, "https://github.com/mr7thing/circle_pattern_processor": { "stars": 0, "last_update": "2025-03-02 19:24:26", - "author_account_age_days": 493 + "author_account_age_days": 501 }, "https://github.com/mrchipset/ComfyUI-SaveImageS3": { "stars": 1, "last_update": "2025-04-07 00:27:45", - "author_account_age_days": 2668 + "author_account_age_days": 2675 }, "https://github.com/mrhan1993/ComfyUI-Fooocus": { "stars": 8, "last_update": "2025-01-15 15:18:07", - "author_account_age_days": 2224 + "author_account_age_days": 2232 }, "https://github.com/muhammederem/blip-comfyui": { "stars": 1, "last_update": "2025-05-25 14:11:04", - "author_account_age_days": 2452 + "author_account_age_days": 2460 }, "https://github.com/mullakhmetov/comfyui_dynamic_util_nodes": { "stars": 0, "last_update": "2024-07-15 14:13:58", - "author_account_age_days": 4295 + "author_account_age_days": 4302 }, "https://github.com/muxueChen/ComfyUI_NTCosyVoice": { "stars": 148, "last_update": "2025-05-20 13:36:56", - "author_account_age_days": 3318 + "author_account_age_days": 3326 }, "https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": { "stars": 10, "last_update": "2025-03-15 00:23:20", - "author_account_age_days": 3302 + "author_account_age_days": 3310 }, "https://github.com/my-opencode/ComfyUI_IndustrialMagick": { "stars": 1, "last_update": "2024-07-31 14:04:26", - "author_account_age_days": 1737 + "author_account_age_days": 1745 }, "https://github.com/my-opencode/ComfyUI_KSamplerTimer": { "stars": 2, "last_update": "2024-07-31 14:13:17", - "author_account_age_days": 1737 + "author_account_age_days": 1745 }, "https://github.com/myshell-ai/ComfyUI-ShellAgent-Plugin": { "stars": 22, "last_update": "2025-05-22 06:54:44", - "author_account_age_days": 826 + "author_account_age_days": 833 }, "https://github.com/n0neye/A3D-comfyui-integration": { - "stars": 5, + "stars": 6, "last_update": "2025-04-28 03:54:34", - "author_account_age_days": 1181 + "author_account_age_days": 1189 }, "https://github.com/nagolinc/ComfyUI_FastVAEDecorder_SDXL": { "stars": 4, "last_update": "2024-07-19 14:46:14", - "author_account_age_days": 4031 + "author_account_age_days": 4039 }, "https://github.com/nagolinc/comfyui_openai_node": { "stars": 1, "last_update": "2024-06-15 15:59:07", - "author_account_age_days": 4031 + "author_account_age_days": 4039 }, "https://github.com/nako-nakoko/ComfyUI_Mel_Nodes": { "stars": 0, "last_update": "2025-04-26 22:48:50", - "author_account_age_days": 73 + "author_account_age_days": 80 }, "https://github.com/narusas/Comfyui-Logic-Support": { "stars": 0, "last_update": "2025-05-30 04:44:16", - "author_account_age_days": 4990 + "author_account_age_days": 4998 }, "https://github.com/nat-chan/ComfyUI-graphToPrompt": { "stars": 2, "last_update": "2024-05-23 01:16:40", - "author_account_age_days": 3350 + "author_account_age_days": 3358 }, "https://github.com/nat-chan/comfyui-transceiver": { "stars": 5, "last_update": "2024-05-23 01:16:28", - "author_account_age_days": 3350 + "author_account_age_days": 3358 }, "https://github.com/nathannlu/ComfyUI-Cloud": { "stars": 199, "last_update": "2024-07-31 18:05:55", - "author_account_age_days": 3082 + "author_account_age_days": 3090 }, "https://github.com/nathannlu/ComfyUI-Pets": { "stars": 47, "last_update": "2024-06-14 11:00:42", - "author_account_age_days": 3082 + "author_account_age_days": 3090 }, "https://github.com/natto-maki/ComfyUI-NegiTools": { "stars": 31, "last_update": "2024-09-15 05:11:18", - "author_account_age_days": 634 + "author_account_age_days": 642 }, "https://github.com/nchenevey1/comfyui-gimp-nodes": { "stars": 9, "last_update": "2024-10-26 09:11:34", - "author_account_age_days": 1006 + "author_account_age_days": 1014 }, "https://github.com/neggo/comfyui-sambanova": { "stars": 0, "last_update": "2025-05-15 01:49:53", - "author_account_age_days": 4292 + "author_account_age_days": 4299 }, "https://github.com/neocrz/comfyui-usetaesd": { "stars": 0, "last_update": "2025-06-14 18:58:39", - "author_account_age_days": 1676 + "author_account_age_days": 1684 }, "https://github.com/neph1/comfyui-smooth-step-lora-loader": { "stars": 6, "last_update": "2025-04-06 10:43:14", - "author_account_age_days": 4008 + "author_account_age_days": 4016 }, "https://github.com/neverbiasu/ComfyUI-BAGEL": { - "stars": 159, - "last_update": "2025-06-14 16:25:00", - "author_account_age_days": 1376 + "stars": 161, + "last_update": "2025-06-19 18:12:50", + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-ChatTTS": { "stars": 3, "last_update": "2025-05-12 08:15:13", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-Dashscope": { - "stars": 1, + "stars": 2, "last_update": "2025-04-05 02:19:36", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-Image-Captioner": { "stars": 12, "last_update": "2025-05-12 16:09:03", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-SAM2": { - "stars": 183, + "stars": 184, "last_update": "2025-05-13 12:38:09", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-StyleShot": { "stars": 12, "last_update": "2025-04-23 08:01:32", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/newtextdoc1111/ComfyUI-Autocomplete-Plus": { "stars": 17, "last_update": "2025-06-14 08:51:48", - "author_account_age_days": 92 + "author_account_age_days": 100 }, "https://github.com/ngosset/ComfyUI-ImageSimilarity": { "stars": 7, "last_update": "2025-01-18 18:17:50", - "author_account_age_days": 4678 + "author_account_age_days": 4686 }, "https://github.com/nicehero/comfyui-SegGPT": { "stars": 5, "last_update": "2024-08-26 06:05:35", - "author_account_age_days": 4366 + "author_account_age_days": 4374 }, "https://github.com/nickve28/ComfyUI-Nich-Utils": { "stars": 8, - "last_update": "2024-09-05 03:39:09", - "author_account_age_days": 4386 + "last_update": "2025-06-19 10:15:26", + "author_account_age_days": 4393 }, "https://github.com/nicofdga/DZ-FaceDetailer": { - "stars": 202, + "stars": 201, "last_update": "2024-06-17 10:00:30", - "author_account_age_days": 1588 + "author_account_age_days": 1596 }, "https://github.com/niknah/ComfyUI-F5-TTS": { - "stars": 201, + "stars": 204, "last_update": "2025-06-13 12:27:03", - "author_account_age_days": 5077 + "author_account_age_days": 5084 }, "https://github.com/niknah/ComfyUI-Hunyuan-3D-2": { - "stars": 41, + "stars": 47, "last_update": "2025-06-16 11:23:16", - "author_account_age_days": 5077 + "author_account_age_days": 5084 }, "https://github.com/niknah/ComfyUI-InfiniteYou": { "stars": 12, "last_update": "2025-04-16 08:44:22", - "author_account_age_days": 5077 + "author_account_age_days": 5084 }, "https://github.com/niknah/audio-general-ComfyUI": { "stars": 0, "last_update": "2025-05-28 02:51:53", - "author_account_age_days": 5077 + "author_account_age_days": 5084 }, "https://github.com/niknah/quick-connections": { - "stars": 277, + "stars": 282, "last_update": "2025-03-27 22:16:29", - "author_account_age_days": 5077 + "author_account_age_days": 5084 }, "https://github.com/nilor-corp/nilor-nodes": { "stars": 3, "last_update": "2025-05-20 14:44:55", - "author_account_age_days": 572 + "author_account_age_days": 580 }, "https://github.com/ningxiaoxiao/comfyui-NDI": { "stars": 59, "last_update": "2025-04-11 03:55:37", - "author_account_age_days": 3344 + "author_account_age_days": 3352 }, "https://github.com/nirbhay-faaya/ImgProcessing_ComfyUI": { "stars": 0, "last_update": "2024-07-31 08:34:48", - "author_account_age_days": 692 + "author_account_age_days": 700 }, "https://github.com/nirex0/ComfyUI_pytorch_openpose": { "stars": 2, "last_update": "2024-06-14 12:01:07", - "author_account_age_days": 3860 + "author_account_age_days": 3867 }, "https://github.com/nisaruj/comfyui-daam": { - "stars": 18, + "stars": 19, "last_update": "2025-06-08 12:41:49", - "author_account_age_days": 3564 + "author_account_age_days": 3572 }, "https://github.com/nisimjoseph/ComfyUI_OpenAI-Prompter": { "stars": 4, "last_update": "2025-01-18 19:57:31", - "author_account_age_days": 4664 + "author_account_age_days": 4671 }, "https://github.com/nkchocoai/ComfyUI-DanbooruPromptQuiz": { "stars": 0, "last_update": "2025-03-30 08:30:33", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nkchocoai/ComfyUI-Dart": { "stars": 26, "last_update": "2025-03-30 08:19:01", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nkchocoai/ComfyUI-PromptUtilities": { "stars": 18, "last_update": "2025-03-30 08:19:25", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nkchocoai/ComfyUI-SaveImageWithMetaData": { "stars": 79, "last_update": "2025-03-30 08:19:20", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nkchocoai/ComfyUI-SizeFromPresets": { "stars": 7, "last_update": "2025-03-30 08:19:30", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nkchocoai/ComfyUI-TextOnSegs": { "stars": 12, "last_update": "2025-03-30 08:19:45", - "author_account_age_days": 516 + "author_account_age_days": 524 }, "https://github.com/nobrainX2/comfyUI-customDia": { - "stars": 12, + "stars": 13, "last_update": "2025-05-29 18:32:25", - "author_account_age_days": 2144 + "author_account_age_days": 2152 }, "https://github.com/noembryo/ComfyUI-noEmbryo": { "stars": 25, "last_update": "2025-05-11 19:04:36", - "author_account_age_days": 3100 + "author_account_age_days": 3107 }, "https://github.com/nofunstudio/Node_Fun_ComfyUI": { "stars": 2, - "last_update": "2025-06-09 02:16:31", - "author_account_age_days": 1569 + "last_update": "2025-06-24 03:51:23", + "author_account_age_days": 1577 }, "https://github.com/nonnonstop/comfyui-faster-loading": { "stars": 10, "last_update": "2024-06-13 15:37:45", - "author_account_age_days": 2479 + "author_account_age_days": 2487 }, "https://github.com/northumber/ComfyUI-northTools": { "stars": 2, "last_update": "2025-05-22 18:08:04", - "author_account_age_days": 3416 + "author_account_age_days": 3424 }, "https://github.com/nosiu/comfyui-instantId-faceswap": { - "stars": 233, + "stars": 236, "last_update": "2025-03-03 19:02:51", - "author_account_age_days": 4262 + "author_account_age_days": 4269 }, "https://github.com/nosiu/comfyui-text-randomizer": { "stars": 0, "last_update": "2025-03-03 01:40:12", - "author_account_age_days": 4262 + "author_account_age_days": 4269 }, "https://github.com/noxinias/ComfyUI_NoxinNodes": { "stars": 11, "last_update": "2024-05-22 21:24:24", - "author_account_age_days": 2917 + "author_account_age_days": 2925 }, "https://github.com/nsdtcloud3d/ComfyUI-3D-Convert": { - "stars": 12, + "stars": 13, "last_update": "2024-12-23 07:46:17", - "author_account_age_days": 432 + "author_account_age_days": 439 }, "https://github.com/ntc-ai/ComfyUI-DARE-LoRA-Merge": { "stars": 33, "last_update": "2024-05-22 22:22:14", - "author_account_age_days": 2074 + "author_account_age_days": 2082 }, "https://github.com/nuanarchy/ComfyUI-NuA-BIRD": { "stars": 8, "last_update": "2024-06-18 05:35:49", - "author_account_age_days": 1449 + "author_account_age_days": 1457 }, "https://github.com/nuanarchy/ComfyUI-NuA-FlashFace": { "stars": 24, "last_update": "2024-07-31 13:54:00", - "author_account_age_days": 1449 + "author_account_age_days": 1457 }, "https://github.com/nullquant/ComfyUI-BrushNet": { - "stars": 880, + "stars": 886, "last_update": "2025-03-31 08:45:34", - "author_account_age_days": 1533 + "author_account_age_days": 1541 }, "https://github.com/numz/ComfyUI-FlowChain": { - "stars": 145, + "stars": 151, "last_update": "2025-05-19 01:51:02", - "author_account_age_days": 5140 + "author_account_age_days": 5148 + }, + "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler": { + "stars": 56, + "last_update": "2025-06-24 06:38:33", + "author_account_age_days": 5148 }, "https://github.com/numz/Comfyui-Orpheus": { - "stars": 7, + "stars": 8, "last_update": "2025-04-16 19:20:21", - "author_account_age_days": 5140 + "author_account_age_days": 5148 }, "https://github.com/nux1111/ComfyUI_NetDist_Plus": { "stars": 31, "last_update": "2024-08-27 23:15:18", - "author_account_age_days": 909 + "author_account_age_days": 917 + }, + "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor": { + "stars": 15, + "last_update": "2025-06-22 16:45:55", + "author_account_age_days": 2838 }, "https://github.com/o-l-l-i/ComfyUI-Olm-Resolution-Picker": { - "stars": 8, + "stars": 9, "last_update": "2025-06-04 18:04:55", - "author_account_age_days": 2829 + "author_account_age_days": 2838 }, "https://github.com/o-l-l-i/ComfyUI-OlmLUT": { - "stars": 5, + "stars": 6, "last_update": "2025-06-09 18:55:46", - "author_account_age_days": 2829 + "author_account_age_days": 2838 }, "https://github.com/okgo4/ComfyUI-Mosaic-Mask": { "stars": 6, "last_update": "2025-04-03 09:41:53", - "author_account_age_days": 3044 + "author_account_age_days": 3051 }, "https://github.com/olduvai-jp/ComfyUI-CloudArchive": { "stars": 2, "last_update": "2025-04-15 07:18:38", - "author_account_age_days": 1233 + "author_account_age_days": 1241 }, "https://github.com/olduvai-jp/ComfyUI-HfLoader": { "stars": 4, "last_update": "2025-02-13 17:05:40", - "author_account_age_days": 1233 + "author_account_age_days": 1241 }, "https://github.com/oleksandr612/ComfyUI-Counter": { "stars": 0, "last_update": "2024-08-05 16:18:48", - "author_account_age_days": 319 + "author_account_age_days": 327 }, "https://github.com/olivv-cs/ComfyUI-FunPack": { - "stars": 0, + "stars": 1, "last_update": "2025-06-13 19:02:21", - "author_account_age_days": 769 + "author_account_age_days": 777 }, "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92": { "stars": 156, "last_update": "2024-09-10 14:16:30", - "author_account_age_days": 4863 + "author_account_age_days": 4871 }, "https://github.com/openvino-dev-samples/comfyui_openvino": { "stars": 4, - "last_update": "2025-06-02 14:26:29", - "author_account_age_days": 1362 + "last_update": "2025-06-17 06:19:44", + "author_account_age_days": 1370 }, "https://github.com/opvelll/ComfyUI_TextListProduct": { "stars": 1, "last_update": "2024-10-30 16:00:09", - "author_account_age_days": 1911 + "author_account_age_days": 1919 }, "https://github.com/orange90/ComfyUI-Regex-Runner": { "stars": 3, "last_update": "2025-02-26 03:48:27", - "author_account_age_days": 4453 + "author_account_age_days": 4461 }, "https://github.com/orex2121/comfyui-OreX": { "stars": 5, "last_update": "2025-04-21 04:40:56", - "author_account_age_days": 1863 + "author_account_age_days": 1871 }, "https://github.com/orion4d/ComfyUI-Image-Effects": { "stars": 20, "last_update": "2025-05-28 00:37:16", - "author_account_age_days": 938 + "author_account_age_days": 946 }, "https://github.com/orion4d/ComfyUI_extract_imag": { "stars": 0, "last_update": "2025-06-11 13:37:18", - "author_account_age_days": 938 + "author_account_age_days": 946 }, "https://github.com/orion4d/ComfyUI_pdf_nodes": { "stars": 0, "last_update": "2025-06-10 15:51:53", - "author_account_age_days": 938 + "author_account_age_days": 946 + }, + "https://github.com/orion4d/illusion_node": { + "stars": 0, + "last_update": "2025-06-22 08:57:01", + "author_account_age_days": 946 }, "https://github.com/orssorbit/ComfyUI-wanBlockswap": { - "stars": 39, + "stars": 41, "last_update": "2025-03-19 12:56:23", - "author_account_age_days": 3386 + "author_account_age_days": 3393 }, "https://github.com/oshtz/ComfyUI-oshtz-nodes": { "stars": 5, "last_update": "2025-05-22 09:55:47", - "author_account_age_days": 782 + "author_account_age_days": 790 }, "https://github.com/osi1880vr/prompt_quill_comfyui": { "stars": 18, "last_update": "2025-01-27 10:43:16", - "author_account_age_days": 1433 + "author_account_age_days": 1441 }, "https://github.com/ostris/ComfyUI-FlexTools": { - "stars": 66, + "stars": 68, "last_update": "2025-04-21 23:12:58", - "author_account_age_days": 2759 + "author_account_age_days": 2767 }, "https://github.com/ostris/ostris_nodes_comfyui": { - "stars": 29, + "stars": 30, "last_update": "2025-04-16 17:03:53", - "author_account_age_days": 2759 + "author_account_age_days": 2767 }, "https://github.com/otacoo/comfyui_otacoo": { "stars": 2, "last_update": "2025-06-05 23:09:32", - "author_account_age_days": 53 + "author_account_age_days": 61 }, "https://github.com/ownimage/ComfyUI-ownimage": { "stars": 0, "last_update": "2024-05-22 22:22:37", - "author_account_age_days": 3140 + "author_account_age_days": 3148 }, "https://github.com/oxysoft/ComfyUI-gowiththeflow": { "stars": 3, "last_update": "2025-04-09 03:55:00", - "author_account_age_days": 4468 + "author_account_age_days": 4476 }, "https://github.com/oyvindg/ComfyUI-TrollSuite": { "stars": 4, "last_update": "2024-08-15 10:37:43", - "author_account_age_days": 2686 + "author_account_age_days": 2694 }, "https://github.com/oztrkoguz/ComfyUI_StoryCreator": { "stars": 29, "last_update": "2025-04-07 08:30:38", - "author_account_age_days": 1198 + "author_account_age_days": 1206 }, "https://github.com/p1atdev/comfyui-timm-backbone": { "stars": 1, "last_update": "2025-05-31 04:03:07", - "author_account_age_days": 1972 + "author_account_age_days": 1980 }, "https://github.com/palant/image-resize-comfyui": { "stars": 94, "last_update": "2024-01-18 20:59:55", - "author_account_age_days": 5410 + "author_account_age_days": 5418 }, "https://github.com/palant/integrated-nodes-comfyui": { "stars": 39, "last_update": "2023-12-27 22:52:00", - "author_account_age_days": 5410 + "author_account_age_days": 5418 }, "https://github.com/pamparamm/ComfyUI-ppm": { - "stars": 188, + "stars": 193, "last_update": "2025-06-13 16:23:47", - "author_account_age_days": 2488 + "author_account_age_days": 2495 }, "https://github.com/pamparamm/ComfyUI-vectorscope-cc": { "stars": 19, "last_update": "2025-02-24 21:59:04", - "author_account_age_days": 2488 + "author_account_age_days": 2495 }, "https://github.com/pamparamm/sd-perturbed-attention": { - "stars": 253, - "last_update": "2025-06-15 03:40:12", - "author_account_age_days": 2488 + "stars": 262, + "last_update": "2025-06-24 00:09:09", + "author_account_age_days": 2495 }, "https://github.com/pants007/comfy-pants": { "stars": 2, "last_update": "2024-05-22 18:16:04", - "author_account_age_days": 2674 + "author_account_age_days": 2681 }, "https://github.com/papcorns/ComfyUI-Papcorns-Node-LoadImageFromUrl": { "stars": 1, "last_update": "2025-05-26 12:33:08", - "author_account_age_days": 1869 + "author_account_age_days": 1877 }, "https://github.com/pathway8-sudo/ComfyUI-Pathway-CutPNG-Node": { "stars": 0, "last_update": "2025-03-03 07:47:31", - "author_account_age_days": 195 + "author_account_age_days": 202 }, "https://github.com/patriciogonzalezvivo/comfyui_glslnodes": { "stars": 220, "last_update": "2025-05-05 15:00:47", - "author_account_age_days": 5437 + "author_account_age_days": 5444 }, "https://github.com/paulo-coronado/comfy_clip_blip_node": { "stars": 29, "last_update": "2024-05-22 17:39:09", - "author_account_age_days": 3044 + "author_account_age_days": 3051 }, "https://github.com/pawelmal0101/ComfyUI-Webhook": { "stars": 0, "last_update": "2025-06-11 10:36:58", - "author_account_age_days": 1018 + "author_account_age_days": 1026 }, "https://github.com/pbpbpb2705/ComfyUI-LyraVSIH": { "stars": 0, "last_update": "2024-08-30 07:52:11", - "author_account_age_days": 1587 + "author_account_age_days": 1595 }, "https://github.com/penposs/ComfyUI_Gemini_Pro": { "stars": 7, "last_update": "2025-04-24 07:54:42", - "author_account_age_days": 2115 + "author_account_age_days": 2123 }, "https://github.com/penposs/Comfyui_wan_api": { "stars": 1, "last_update": "2025-04-02 16:02:44", - "author_account_age_days": 2115 + "author_account_age_days": 2123 }, "https://github.com/pharmapsychotic/comfy-cliption": { "stars": 52, "last_update": "2025-01-04 05:06:11", - "author_account_age_days": 1271 + "author_account_age_days": 1279 }, "https://github.com/phazei/ComfyUI-Prompt-Stash": { - "stars": 5, + "stars": 13, "last_update": "2025-05-16 02:13:34", - "author_account_age_days": 5365 + "author_account_age_days": 5373 }, "https://github.com/philiprodriguez/ComfyUI-HunyuanImageLatentToVideoLatent": { "stars": 1, "last_update": "2025-01-12 16:43:09", - "author_account_age_days": 3355 + "author_account_age_days": 3363 }, "https://github.com/philipy1219/ComfyUI-TaylorSeer": { "stars": 25, "last_update": "2025-05-25 09:35:25", - "author_account_age_days": 3615 + "author_account_age_days": 3623 }, "https://github.com/philz1337x/ComfyUI-ClarityAI": { - "stars": 181, + "stars": 182, "last_update": "2025-04-24 09:51:25", - "author_account_age_days": 1020 + "author_account_age_days": 1028 }, "https://github.com/phineas-pta/comfyui-auto-nodes-layout": { "stars": 46, "last_update": "2024-08-02 17:31:24", - "author_account_age_days": 2645 + "author_account_age_days": 2653 }, "https://github.com/phuvinh010701/ComfyUI-Nudenet": { "stars": 22, "last_update": "2025-05-01 01:46:07", - "author_account_age_days": 2031 + "author_account_age_days": 2038 }, "https://github.com/phyblas/paint-by-example_comfyui": { "stars": 9, "last_update": "2025-03-28 22:27:45", - "author_account_age_days": 3410 + "author_account_age_days": 3418 }, "https://github.com/pictorialink/ComfyUI-Custom-Node-Config": { "stars": 0, "last_update": "2025-06-13 02:46:08", - "author_account_age_days": 33 + "author_account_age_days": 41 }, "https://github.com/pictorialink/ComfyUI-Text-Translation": { - "stars": 1, + "stars": 2, "last_update": "2025-06-06 02:56:11", - "author_account_age_days": 33 + "author_account_age_days": 41 }, "https://github.com/picturesonpictures/comfy_PoP": { - "stars": 19, + "stars": 20, "last_update": "2025-06-05 03:53:18", - "author_account_age_days": 944 + "author_account_age_days": 952 }, "https://github.com/pikenrover/ComfyUI_PRNodes": { "stars": 2, "last_update": "2025-04-03 13:31:42", - "author_account_age_days": 326 + "author_account_age_days": 334 }, "https://github.com/pixelworldai/ComfyUI-AlphaFlatten": { - "stars": 0, + "stars": 1, "last_update": "2025-03-13 23:07:04", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/pkpkTech/ComfyUI-SaveAVIF": { "stars": 2, "last_update": "2025-02-01 16:29:22", - "author_account_age_days": 1860 + "author_account_age_days": 1868 }, "https://github.com/pkpkTech/ComfyUI-SaveQueues": { "stars": 5, "last_update": "2024-05-22 22:19:54", - "author_account_age_days": 1860 + "author_account_age_days": 1868 }, "https://github.com/pkpkTech/ComfyUI-TemporaryLoader": { "stars": 2, "last_update": "2024-05-22 22:19:44", - "author_account_age_days": 1860 + "author_account_age_days": 1868 }, "https://github.com/pkpkTech/ComfyUI-ngrok": { "stars": 5, "last_update": "2024-05-22 22:19:32", - "author_account_age_days": 1860 + "author_account_age_days": 1868 }, "https://github.com/playbook3d/playbook3d-comfyui-nodes": { "stars": 21, "last_update": "2025-03-25 19:50:08", - "author_account_age_days": 1857 + "author_account_age_days": 1865 }, "https://github.com/plugcrypt/CRT-Nodes": { - "stars": 4, - "last_update": "2025-06-05 23:55:47", - "author_account_age_days": 1419 + "stars": 5, + "last_update": "2025-06-20 04:32:25", + "author_account_age_days": 1427 }, "https://github.com/pnikolic-amd/ComfyUI_MIGraphX": { - "stars": 4, - "last_update": "2025-05-16 10:03:12", - "author_account_age_days": 158 + "stars": 5, + "last_update": "2025-06-23 13:33:11", + "author_account_age_days": 165 }, "https://github.com/pollockjj/ComfyUI-MultiGPU": { - "stars": 315, + "stars": 322, "last_update": "2025-04-17 23:43:02", - "author_account_age_days": 3863 + "author_account_age_days": 3871 }, "https://github.com/portu-sim/comfyui_bmab": { "stars": 106, "last_update": "2025-02-23 12:32:27", - "author_account_age_days": 679 + "author_account_age_days": 687 }, "https://github.com/prodogape/ComfyUI-EasyOCR": { "stars": 36, "last_update": "2024-08-05 07:03:20", - "author_account_age_days": 1387 + "author_account_age_days": 1395 }, "https://github.com/prodogape/ComfyUI-Minio": { "stars": 6, "last_update": "2024-05-23 00:13:38", - "author_account_age_days": 1387 + "author_account_age_days": 1395 }, "https://github.com/prodogape/ComfyUI-OmDet": { "stars": 3, "last_update": "2024-06-14 13:01:34", - "author_account_age_days": 1387 + "author_account_age_days": 1395 }, "https://github.com/prodogape/Comfyui-Yolov8-JSON": { "stars": 24, "last_update": "2024-08-28 02:10:39", - "author_account_age_days": 1387 + "author_account_age_days": 1395 }, "https://github.com/prozacgod/comfyui-pzc-multiworkspace": { "stars": 7, "last_update": "2024-05-22 23:11:46", - "author_account_age_days": 5925 + "author_account_age_days": 5933 }, "https://github.com/pschroedl/ComfyUI-SAM2-Realtime": { "stars": 14, "last_update": "2025-01-21 05:29:03", - "author_account_age_days": 4344 + "author_account_age_days": 4352 }, "https://github.com/ptmaster/comfyui-audio-speed": { - "stars": 2, - "last_update": "2025-05-27 10:34:30", - "author_account_age_days": 4237 + "stars": 5, + "last_update": "2025-06-24 13:51:56", + "author_account_age_days": 4245 }, "https://github.com/pupba/Comfy_ForEach": { "stars": 1, "last_update": "2025-05-12 07:08:54", - "author_account_age_days": 2158 + "author_account_age_days": 2166 }, "https://github.com/purewater2011/comfyui_color_detection": { "stars": 1, "last_update": "2025-05-19 09:59:44", - "author_account_age_days": 4185 + "author_account_age_days": 4193 }, "https://github.com/purpen/ComfyUI-AIRedoon": { "stars": 2, "last_update": "2024-12-11 09:38:42", - "author_account_age_days": 5295 + "author_account_age_days": 5303 }, "https://github.com/purpen/ComfyUI-ImageTagger": { "stars": 2, "last_update": "2024-11-27 17:20:49", - "author_account_age_days": 5295 + "author_account_age_days": 5303 }, "https://github.com/pxl-pshr/GlitchNodes": { - "stars": 22, - "last_update": "2025-06-11 04:12:49", - "author_account_age_days": 242 + "stars": 48, + "last_update": "2025-06-19 22:39:20", + "author_account_age_days": 250 }, "https://github.com/pydn/ComfyUI-to-Python-Extension": { - "stars": 1843, + "stars": 1853, "last_update": "2025-01-14 17:03:18", - "author_account_age_days": 3053 + "author_account_age_days": 3061 }, "https://github.com/pythongosssss/ComfyUI-Custom-Scripts": { - "stars": 2486, + "stars": 2502, "last_update": "2025-04-30 12:00:10", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/pythongosssss/ComfyUI-WD14-Tagger": { - "stars": 878, + "stars": 881, "last_update": "2025-05-04 08:39:13", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/pzc163/Comfyui-CatVTON": { "stars": 164, "last_update": "2024-10-03 12:50:42", - "author_account_age_days": 1133 + "author_account_age_days": 1141 }, "https://github.com/pzc163/Comfyui_MiniCPMv2_6-prompt-generator": { - "stars": 78, + "stars": 79, "last_update": "2024-08-30 08:37:48", - "author_account_age_days": 1133 + "author_account_age_days": 1141 }, "https://github.com/quank123wip/ComfyUI-Step1X-Edit": { "stars": 74, "last_update": "2025-04-30 11:03:51", - "author_account_age_days": 2861 + "author_account_age_days": 2868 + }, + "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides": { + "stars": 5, + "last_update": "2025-06-22 13:43:41", + "author_account_age_days": 3653 + }, + "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments": { + "stars": 23, + "last_update": "2025-06-20 17:34:19", + "author_account_age_days": 3653 }, "https://github.com/qwixiwp/queuetools": { "stars": 0, "last_update": "2024-06-14 10:27:57", - "author_account_age_days": 968 + "author_account_age_days": 976 }, "https://github.com/r-vage/ComfyUI-RvTools_v2": { - "stars": 1, + "stars": 4, "last_update": "2025-06-10 06:43:50", - "author_account_age_days": 29 + "author_account_age_days": 37 }, "https://github.com/r3dial/redial-discomphy": { "stars": 1, "last_update": "2025-01-09 19:59:31", - "author_account_age_days": 788 + "author_account_age_days": 796 }, "https://github.com/r3dsd/comfyui-template-loader": { "stars": 0, "last_update": "2025-01-12 08:55:49", - "author_account_age_days": 498 + "author_account_age_days": 505 }, "https://github.com/raindrop313/ComfyUI-WanVideoStartEndFrames": { - "stars": 350, + "stars": 353, "last_update": "2025-03-22 09:59:11", - "author_account_age_days": 1423 + "author_account_age_days": 1430 }, "https://github.com/raindrop313/ComfyUI_SD3_Flowedit": { "stars": 6, "last_update": "2025-02-06 19:02:52", - "author_account_age_days": 1423 + "author_account_age_days": 1430 }, "https://github.com/rainlizard/ComfyUI-Raffle": { - "stars": 2, + "stars": 3, "last_update": "2025-06-14 23:56:29", - "author_account_age_days": 3520 + "author_account_age_days": 3528 }, "https://github.com/rakki194/ComfyUI-ImageCompare": { "stars": 0, "last_update": "2025-05-05 21:00:58", - "author_account_age_days": 134 + "author_account_age_days": 142 }, "https://github.com/ramesh-x90/ComfyUI_pyannote": { "stars": 3, "last_update": "2024-11-23 09:42:16", - "author_account_age_days": 1679 + "author_account_age_days": 1687 }, "https://github.com/ramyma/A8R8_ComfyUI_nodes": { "stars": 62, "last_update": "2024-12-09 16:06:25", - "author_account_age_days": 3574 + "author_account_age_days": 3582 }, "https://github.com/randjtw/advance-aesthetic-score": { "stars": 0, "last_update": "2024-05-23 01:14:47", - "author_account_age_days": 1117 + "author_account_age_days": 1125 }, "https://github.com/randomnoner11/ComfyUI-MistralAI-API": { "stars": 1, "last_update": "2025-04-07 17:34:06", - "author_account_age_days": 176 - }, - "https://github.com/ratatule2/ComfyUI-LBMWrapper": { - "stars": 12, - "last_update": "2025-06-16 12:14:28", - "author_account_age_days": 295 + "author_account_age_days": 184 }, "https://github.com/ratulrafsan/Comfyui-SAL-VTON": { "stars": 86, "last_update": "2024-08-26 09:52:06", - "author_account_age_days": 4851 + "author_account_age_days": 4859 }, "https://github.com/raykindle/ComfyUI_Step1X-Edit": { - "stars": 45, + "stars": 46, "last_update": "2025-05-06 02:01:37", - "author_account_age_days": 2280 + "author_account_age_days": 2287 }, "https://github.com/raysers/Mflux-ComfyUI": { - "stars": 93, + "stars": 94, "last_update": "2025-03-09 21:14:27", - "author_account_age_days": 2361 + "author_account_age_days": 2369 }, "https://github.com/rcfcu2000/zhihuige-nodes-comfyui": { "stars": 1, "last_update": "2024-05-22 22:13:55", - "author_account_age_days": 3781 + "author_account_age_days": 3789 }, "https://github.com/rcsaquino/comfyui-custom-nodes": { "stars": 1, "last_update": "2024-08-26 10:08:29", - "author_account_age_days": 1868 + "author_account_age_days": 1876 }, "https://github.com/rdancer/ComfyUI_Florence2SAM2": { "stars": 37, "last_update": "2025-03-14 10:49:55", - "author_account_age_days": 5978 + "author_account_age_days": 5986 }, "https://github.com/receyuki/comfyui-prompt-reader-node": { - "stars": 361, + "stars": 366, "last_update": "2025-02-01 15:56:44", - "author_account_age_days": 2949 + "author_account_age_days": 2957 }, "https://github.com/recraft-ai/ComfyUI-RecraftAI": { - "stars": 60, + "stars": 61, "last_update": "2025-06-04 11:33:13", - "author_account_age_days": 1079 + "author_account_age_days": 1087 }, "https://github.com/redhottensors/ComfyUI-Prediction": { "stars": 14, "last_update": "2024-07-14 21:19:01", - "author_account_age_days": 496 + "author_account_age_days": 504 }, "https://github.com/regiellis/ComfyUI-EasyNoobai": { - "stars": 25, + "stars": 27, "last_update": "2025-05-12 14:17:10", - "author_account_age_days": 4983 + "author_account_age_days": 4991 }, "https://github.com/regiellis/ComfyUI-EasyPony": { "stars": 9, "last_update": "2025-04-05 15:15:29", - "author_account_age_days": 4983 + "author_account_age_days": 4991 }, "https://github.com/replicate/comfyui-replicate": { - "stars": 183, + "stars": 185, "last_update": "2024-11-05 15:26:20", - "author_account_age_days": 1965 + "author_account_age_days": 1973 }, "https://github.com/revirevy/Comfyui_saveimage_imgbb": { "stars": 1, "last_update": "2025-04-23 10:49:48", - "author_account_age_days": 4842 + "author_account_age_days": 4850 }, "https://github.com/rgthree/rgthree-comfy": { - "stars": 1967, - "last_update": "2025-06-08 16:10:22", - "author_account_age_days": 5331 + "stars": 1991, + "last_update": "2025-06-23 04:15:47", + "author_account_age_days": 5339 }, "https://github.com/rhdunn/comfyui-audio-processing": { "stars": 7, "last_update": "2024-08-22 19:11:01", - "author_account_age_days": 5994 + "author_account_age_days": 6001 }, "https://github.com/rhdunn/comfyui-bus-plugin": { "stars": 2, "last_update": "2024-08-22 19:00:56", - "author_account_age_days": 5994 + "author_account_age_days": 6001 }, "https://github.com/rhplus0831/ComfyMepi": { "stars": 0, "last_update": "2025-04-12 22:59:21", - "author_account_age_days": 510 + "author_account_age_days": 518 }, "https://github.com/richinsley/Comfy-LFO": { "stars": 5, "last_update": "2024-05-22 20:46:30", - "author_account_age_days": 3037 + "author_account_age_days": 3045 }, "https://github.com/ricklove/comfyui-ricklove": { "stars": 1, "last_update": "2024-10-05 03:12:28", - "author_account_age_days": 5189 + "author_account_age_days": 5197 }, "https://github.com/rickyars/comfyui-llm-tile": { - "stars": 0, + "stars": 1, "last_update": "2025-06-12 19:55:58", - "author_account_age_days": 4561 + "author_account_age_days": 4569 }, "https://github.com/risunobushi/ComfyUI-Similarity-Score": { "stars": 4, "last_update": "2025-01-03 15:27:06", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/risunobushi/ComfyUI_DisplacementMapTools": { "stars": 3, "last_update": "2025-01-29 18:06:41", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/risunobushi/comfyUI_FrequencySeparation_RGB-HSV": { "stars": 36, "last_update": "2024-06-14 10:28:04", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/rkfg/ComfyUI-Dia_tts": { "stars": 0, "last_update": "2025-04-27 15:58:21", - "author_account_age_days": 5628 + "author_account_age_days": 5636 }, "https://github.com/rnbwdsh/ComfyUI-LatentWalk": { - "stars": 12, + "stars": 13, "last_update": "2024-08-20 22:39:19", - "author_account_age_days": 3903 + "author_account_age_days": 3911 }, "https://github.com/robertvoy/ComfyUI-Flux-Continuum": { - "stars": 148, - "last_update": "2025-05-22 03:22:02", - "author_account_age_days": 4462 + "stars": 189, + "last_update": "2025-06-20 01:23:28", + "author_account_age_days": 4470 + }, + "https://github.com/robin-collins/ComfyUI-TechsToolz": { + "stars": 0, + "last_update": "2025-06-20 00:25:39", + "author_account_age_days": 1489 }, "https://github.com/robtl2/ComfyUI-ComfyBridge": { "stars": 0, "last_update": "2024-11-18 23:28:13", - "author_account_age_days": 809 + "author_account_age_days": 816 }, "https://github.com/rohitsainier/ComfyUI-InstagramDownloader": { - "stars": 17, + "stars": 18, "last_update": "2025-01-02 08:47:22", - "author_account_age_days": 3510 + "author_account_age_days": 3518 }, "https://github.com/romeobuilderotti/ComfyUI-PNG-Metadata": { "stars": 7, "last_update": "2024-05-22 21:29:25", - "author_account_age_days": 647 + "author_account_age_days": 655 }, "https://github.com/ronaldzgithub/ComfyUI_Appstore": { "stars": 5, "last_update": "2024-12-04 15:02:42", - "author_account_age_days": 2667 + "author_account_age_days": 2675 }, "https://github.com/ronniebasak/ComfyUI-Tara-LLM-Integration": { "stars": 107, "last_update": "2024-11-18 05:08:11", - "author_account_age_days": 4512 + "author_account_age_days": 4519 }, "https://github.com/ronsantash/Comfyui-flexi-lora-loader": { "stars": 8, "last_update": "2025-01-12 11:57:27", - "author_account_age_days": 1374 + "author_account_age_days": 1382 + }, + "https://github.com/rookiepsi/comfypsi_blur_mask": { + "stars": 0, + "last_update": "2025-06-24 04:17:34", + "author_account_age_days": 122 }, "https://github.com/rookiepsi/comfyui-extended": { "stars": 2, - "last_update": "2025-06-15 14:44:53", - "author_account_age_days": 114 + "last_update": "2025-06-22 13:42:26", + "author_account_age_days": 122 }, "https://github.com/roundyyy/ComfyUI-mesh-simplifier": { - "stars": 5, + "stars": 6, "last_update": "2025-03-09 23:39:24", - "author_account_age_days": 1284 + "author_account_age_days": 1292 }, "https://github.com/royceschultz/ComfyUI-Notifications": { "stars": 14, "last_update": "2025-04-23 01:40:31", - "author_account_age_days": 2886 + "author_account_age_days": 2894 }, "https://github.com/royceschultz/ComfyUI-TranscriptionTools": { "stars": 22, "last_update": "2025-04-23 00:52:31", - "author_account_age_days": 2886 + "author_account_age_days": 2894 }, "https://github.com/rubi-du/ComfyUI-BiRefNet-Super": { "stars": 10, "last_update": "2025-05-21 02:21:09", - "author_account_age_days": 539 + "author_account_age_days": 546 }, "https://github.com/rubi-du/ComfyUI-Flux-Inpainting": { - "stars": 35, + "stars": 36, "last_update": "2025-05-14 06:09:10", - "author_account_age_days": 539 + "author_account_age_days": 546 }, "https://github.com/rubi-du/ComfyUI-ICC-nodes": { "stars": 2, "last_update": "2025-05-14 06:10:11", - "author_account_age_days": 539 + "author_account_age_days": 546 }, "https://github.com/rubi-du/ComfyUI-MaskEditor-Extension": { "stars": 9, "last_update": "2025-05-14 06:09:43", - "author_account_age_days": 539 + "author_account_age_days": 546 }, "https://github.com/rui40000/RUI-Nodes": { "stars": 16, "last_update": "2024-05-22 22:12:26", - "author_account_age_days": 831 + "author_account_age_days": 838 }, "https://github.com/ruiqutech/ComfyUI-RuiquNodes": { "stars": 0, "last_update": "2024-05-23 01:21:50", - "author_account_age_days": 427 + "author_account_age_days": 434 }, "https://github.com/runtime44/comfyui_r44_nodes": { "stars": 41, "last_update": "2024-07-01 08:02:04", - "author_account_age_days": 524 + "author_account_age_days": 532 }, "https://github.com/ruucm/ruucm-comfy": { "stars": 2, "last_update": "2025-04-21 15:20:57", - "author_account_age_days": 2777 + "author_account_age_days": 2785 }, "https://github.com/ryanontheinside/ComfyUI-DeepLiveCam": { - "stars": 5, + "stars": 6, "last_update": "2025-05-26 14:26:57", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_ControlFreak": { - "stars": 12, + "stars": 13, "last_update": "2025-04-13 23:18:36", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_Doom": { "stars": 5, "last_update": "2024-11-08 17:58:21", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_EfficientTAM": { "stars": 3, "last_update": "2024-12-21 20:25:05", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_ProfilerX": { "stars": 60, "last_update": "2025-05-27 22:10:23", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_RealtimeNodes": { - "stars": 55, - "last_update": "2025-06-05 14:47:48", - "author_account_age_days": 4046 + "stars": 56, + "last_update": "2025-06-19 14:20:29", + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside": { "stars": 509, "last_update": "2025-06-01 22:34:26", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_SuperResolution": { "stars": 8, "last_update": "2025-04-07 17:53:16", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/s9roll7/comfyui_cotracker_node": { - "stars": 9, - "last_update": "2025-06-08 09:00:08", - "author_account_age_days": 942 + "stars": 12, + "last_update": "2025-06-24 11:30:06", + "author_account_age_days": 950 }, "https://github.com/saftle/uber_comfy_nodes": { "stars": 1, "last_update": "2024-08-24 02:42:40", - "author_account_age_days": 5114 + "author_account_age_days": 5122 }, "https://github.com/sakura1bgx/ComfyUI_FlipStreamViewer": { "stars": 4, "last_update": "2025-05-31 01:17:30", - "author_account_age_days": 295 + "author_account_age_days": 303 }, "https://github.com/sanbuphy/ComfyUI-AudioLDM": { "stars": 0, "last_update": "2025-01-02 02:01:12", - "author_account_age_days": 1279 + "author_account_age_days": 1287 }, "https://github.com/santiagosamuel3455/ComfyUI-GeminiImageToPrompt": { "stars": 1, "last_update": "2025-05-04 04:58:56", - "author_account_age_days": 307 + "author_account_age_days": 315 }, "https://github.com/scraed/LanPaint": { - "stars": 361, - "last_update": "2025-06-08 10:01:39", - "author_account_age_days": 3819 + "stars": 370, + "last_update": "2025-06-21 06:19:09", + "author_account_age_days": 3827 }, "https://github.com/sdfxai/SDFXBridgeForComfyUI": { "stars": 11, "last_update": "2024-06-14 10:26:56", - "author_account_age_days": 591 + "author_account_age_days": 599 }, "https://github.com/seanlynch/comfyui-optical-flow": { "stars": 32, "last_update": "2024-05-22 20:52:17", - "author_account_age_days": 5662 + "author_account_age_days": 5670 }, "https://github.com/seanlynch/srl-nodes": { "stars": 8, "last_update": "2024-06-30 13:47:38", - "author_account_age_days": 5662 + "author_account_age_days": 5670 }, "https://github.com/sebord/ComfyUI-LMCQ": { - "stars": 71, + "stars": 72, "last_update": "2025-06-02 03:20:20", - "author_account_age_days": 1144 + "author_account_age_days": 1152 }, "https://github.com/sergekatzmann/ComfyUI_Nimbus-Pack": { "stars": 4, "last_update": "2024-05-22 21:34:15", - "author_account_age_days": 3689 + "author_account_age_days": 3697 }, "https://github.com/set-soft/ComfyUI-AudioBatch": { "stars": 0, "last_update": "2025-06-04 12:59:15", - "author_account_age_days": 3167 + "author_account_age_days": 3175 }, "https://github.com/sh570655308/ComfyUI-GigapixelAI": { "stars": 150, "last_update": "2025-01-15 05:16:31", - "author_account_age_days": 2859 + "author_account_age_days": 2867 }, "https://github.com/sh570655308/ComfyUI-TopazVideoAI": { - "stars": 214, + "stars": 216, "last_update": "2025-04-23 08:54:20", - "author_account_age_days": 2859 + "author_account_age_days": 2867 }, "https://github.com/shabri-arrahim/ComfyUI-Safety-Checker": { "stars": 1, "last_update": "2025-01-23 05:46:33", - "author_account_age_days": 2126 + "author_account_age_days": 2134 }, "https://github.com/shadowcz007/comfyui-Image-reward": { "stars": 31, "last_update": "2024-06-14 10:24:49", - "author_account_age_days": 3671 + "author_account_age_days": 3679 }, "https://github.com/shadowcz007/comfyui-consistency-decoder": { "stars": 2, "last_update": "2024-06-14 10:23:35", - "author_account_age_days": 3671 + "author_account_age_days": 3679 }, "https://github.com/shadowcz007/comfyui-edit-mask": { "stars": 6, "last_update": "2024-06-20 01:42:48", - "author_account_age_days": 3671 + "author_account_age_days": 3679 }, "https://github.com/shadowcz007/comfyui-liveportrait": { - "stars": 457, + "stars": 458, "last_update": "2024-09-01 10:34:41", - "author_account_age_days": 2400 + "author_account_age_days": 2408 }, "https://github.com/shadowcz007/comfyui-mixlab-nodes": { - "stars": 1630, + "stars": 1639, "last_update": "2025-02-05 10:24:45", - "author_account_age_days": 2400 + "author_account_age_days": 2408 }, "https://github.com/shadowcz007/comfyui-sound-lab": { "stars": 120, "last_update": "2024-07-04 12:53:38", - "author_account_age_days": 2400 + "author_account_age_days": 2408 }, "https://github.com/shadowcz007/comfyui-try-on": { "stars": 13, "last_update": "2024-08-15 10:50:22", - "author_account_age_days": 2400 + "author_account_age_days": 2408 }, "https://github.com/shadowcz007/comfyui-ultralytics-yolo": { "stars": 33, "last_update": "2024-06-22 09:06:04", - "author_account_age_days": 3671 + "author_account_age_days": 3679 }, "https://github.com/shahkoorosh/ComfyUI-KGnodes": { "stars": 3, "last_update": "2025-05-23 17:41:55", - "author_account_age_days": 550 + "author_account_age_days": 557 }, "https://github.com/shahkoorosh/ComfyUI-PersianText": { "stars": 19, "last_update": "2025-05-23 17:43:33", - "author_account_age_days": 550 + "author_account_age_days": 557 }, "https://github.com/shenduldh/ComfyUI-Lightning": { - "stars": 203, + "stars": 205, "last_update": "2025-03-13 05:58:04", - "author_account_age_days": 2475 + "author_account_age_days": 2483 }, "https://github.com/shi3z/ComfyUI_Memeplex_DALLE": { "stars": 2, "last_update": "2024-05-23 00:14:25", - "author_account_age_days": 5450 + "author_account_age_days": 5457 }, "https://github.com/shiertier/ComfyUI-TeaCache-lumina2": { "stars": 1, "last_update": "2025-06-03 10:09:06", - "author_account_age_days": 1378 + "author_account_age_days": 1386 }, "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus": { - "stars": 282, + "stars": 283, "last_update": "2024-12-01 18:40:16", - "author_account_age_days": 2122 + "author_account_age_days": 2130 }, "https://github.com/shiimizu/ComfyUI-TiledDiffusion": { - "stars": 437, + "stars": 442, "last_update": "2025-03-18 19:50:35", - "author_account_age_days": 2122 + "author_account_age_days": 2130 }, "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance": { "stars": 12, "last_update": "2024-08-08 19:59:57", - "author_account_age_days": 2122 + "author_account_age_days": 2130 }, "https://github.com/shiimizu/ComfyUI_smZNodes": { - "stars": 272, + "stars": 277, "last_update": "2025-06-04 15:26:05", - "author_account_age_days": 2122 + "author_account_age_days": 2130 }, "https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage": { "stars": 36, "last_update": "2024-05-22 20:41:29", - "author_account_age_days": 2580 + "author_account_age_days": 2588 }, "https://github.com/shingo1228/ComfyUI-send-eagle-slim": { "stars": 35, "last_update": "2024-07-30 22:28:41", - "author_account_age_days": 2580 + "author_account_age_days": 2588 }, "https://github.com/shinich39/comfyui-break-workflow": { "stars": 0, "last_update": "2025-05-25 10:20:20", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-civitai-workflow": { "stars": 0, "last_update": "2025-06-11 16:47:58", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-dynamic-routes": { "stars": 5, "last_update": "2025-05-25 10:17:05", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-get-meta": { - "stars": 6, + "stars": 7, "last_update": "2025-05-25 10:17:48", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-innnnnpaint": { "stars": 0, "last_update": "2025-05-25 10:18:06", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-no-one-above-me": { "stars": 0, "last_update": "2025-05-25 10:19:33", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-prevent-sleep": { "stars": 0, "last_update": "2025-05-25 10:18:45", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shobhitic/ComfyUI-PlusMinusTextClip": { "stars": 3, "last_update": "2024-06-20 13:57:29", - "author_account_age_days": 4664 + "author_account_age_days": 4672 }, "https://github.com/shockz0rz/comfy-easy-grids": { "stars": 24, "last_update": "2024-05-22 18:14:05", - "author_account_age_days": 1983 + "author_account_age_days": 1991 }, "https://github.com/siliconflow/BizyAir": { - "stars": 705, - "last_update": "2025-06-16 02:27:53", - "author_account_age_days": 662 + "stars": 712, + "last_update": "2025-06-24 02:35:18", + "author_account_age_days": 670 }, "https://github.com/siliconflow/onediff_comfy_nodes": { "stars": 23, "last_update": "2024-06-24 10:08:11", - "author_account_age_days": 662 + "author_account_age_days": 670 }, "https://github.com/silveroxides/ComfyUI-ModelUtils": { "stars": 1, "last_update": "2025-05-20 15:08:21", - "author_account_age_days": 1858 + "author_account_age_days": 1866 }, "https://github.com/silveroxides/ComfyUI-RR-JointTagger": { "stars": 2, "last_update": "2025-05-09 18:58:06", - "author_account_age_days": 1858 + "author_account_age_days": 1866 }, "https://github.com/silveroxides/ComfyUI_EmbeddingToolkit": { - "stars": 5, - "last_update": "2025-06-10 06:03:58", - "author_account_age_days": 1858 + "stars": 6, + "last_update": "2025-06-16 14:18:31", + "author_account_age_days": 1866 }, "https://github.com/silveroxides/ComfyUI_SigmoidOffsetScheduler": { "stars": 6, "last_update": "2025-05-11 19:44:35", - "author_account_age_days": 1858 + "author_account_age_days": 1866 }, "https://github.com/silveroxides/ComfyUI_bnb_nf4_fp4_Loaders": { "stars": 36, "last_update": "2025-04-28 01:08:43", - "author_account_age_days": 1858 + "author_account_age_days": 1866 }, "https://github.com/sipherxyz/comfyui-art-venture": { - "stars": 267, + "stars": 270, "last_update": "2025-06-04 14:13:31", - "author_account_age_days": 1464 + "author_account_age_days": 1472 }, "https://github.com/sipie800/ComfyUI-PuLID-Flux-Enhanced": { "stars": 209, "last_update": "2025-02-07 15:04:47", - "author_account_age_days": 2484 + "author_account_age_days": 2492 }, "https://github.com/sittere/ComfyUI-YK_Line-loading": { "stars": 2, "last_update": "2025-03-02 09:10:54", - "author_account_age_days": 1234 + "author_account_age_days": 1242 }, "https://github.com/sjh00/ComfyUI-LoadImageWithInfo": { "stars": 2, "last_update": "2025-06-05 15:46:52", - "author_account_age_days": 4120 + "author_account_age_days": 4128 }, "https://github.com/skfoo/ComfyUI-Coziness": { "stars": 30, "last_update": "2024-08-16 03:10:43", - "author_account_age_days": 2439 + "author_account_age_days": 2447 }, "https://github.com/skycoder182/comfyui-filename-tools": { "stars": 0, "last_update": "2025-05-20 18:06:04", - "author_account_age_days": 27 + "author_account_age_days": 35 }, "https://github.com/skycoder182/comfyui-skycoder-tools": { "stars": 1, "last_update": "2025-06-08 12:26:41", - "author_account_age_days": 27 + "author_account_age_days": 35 }, "https://github.com/slvslvslv/ComfyUI-SmartHelperNodes": { "stars": 2, "last_update": "2025-05-06 15:48:22", - "author_account_age_days": 334 + "author_account_age_days": 342 }, "https://github.com/slvslvslv/ComfyUI-SmartImageTools": { "stars": 0, "last_update": "2025-05-03 12:46:43", - "author_account_age_days": 334 + "author_account_age_days": 342 }, "https://github.com/slyt/comfyui-ollama-nodes": { "stars": 0, "last_update": "2024-07-31 13:52:27", - "author_account_age_days": 4296 + "author_account_age_days": 4304 }, "https://github.com/sm079/ComfyUI-Face-Detection": { "stars": 0, "last_update": "2025-06-03 14:37:55", - "author_account_age_days": 2042 + "author_account_age_days": 2050 }, "https://github.com/smagnetize/kb-comfyui-nodes": { "stars": 0, "last_update": "2024-06-14 12:00:45", - "author_account_age_days": 3071 + "author_account_age_days": 3079 }, "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API": { "stars": 23, "last_update": "2024-12-26 16:21:00", - "author_account_age_days": 3078 + "author_account_age_days": 3086 }, "https://github.com/smlbiobot/sml-comfyui-prompt-expansion": { "stars": 13, "last_update": "2025-01-27 13:33:49", - "author_account_age_days": 3078 + "author_account_age_days": 3086 }, "https://github.com/smthemex/ComfyUI_AnyDoor": { "stars": 63, "last_update": "2025-02-05 04:01:50", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_CSD_MT": { "stars": 19, "last_update": "2025-02-06 04:30:50", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_CSGO_Wrapper": { "stars": 16, "last_update": "2024-09-07 06:13:48", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_ChatGLM_API": { "stars": 23, "last_update": "2024-07-31 13:53:41", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_CustomNet": { - "stars": 9, + "stars": 10, "last_update": "2024-08-11 08:58:37", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_DICE_Talk": { - "stars": 24, + "stars": 25, "last_update": "2025-05-07 07:47:06", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_DeepFakeDefenders": { "stars": 41, "last_update": "2024-09-14 00:17:59", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Demucs": { "stars": 8, "last_update": "2025-03-12 05:22:24", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Diffree": { "stars": 31, "last_update": "2025-03-09 01:16:33", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_DiffuEraser": { - "stars": 157, + "stars": 161, "last_update": "2025-02-14 12:09:00", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_EchoMimic": { - "stars": 631, + "stars": 634, "last_update": "2025-04-05 12:23:33", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Face_Anon_Simple": { "stars": 16, "last_update": "2025-03-12 05:22:03", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_FoleyCrafter": { "stars": 61, "last_update": "2025-05-29 11:42:48", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_FollowYourEmoji": { "stars": 16, "last_update": "2025-04-11 13:45:15", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Hallo2": { "stars": 74, "last_update": "2025-03-12 05:22:46", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_HiDiffusion_Pro": { "stars": 52, "last_update": "2025-01-13 03:29:50", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_HunyuanAvatar_Sm": { - "stars": 28, - "last_update": "2025-06-16 00:37:13", - "author_account_age_days": 711 + "stars": 68, + "last_update": "2025-06-19 09:40:28", + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_ID_Animator": { "stars": 24, "last_update": "2024-07-31 13:53:27", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_InstantIR_Wrapper": { "stars": 235, "last_update": "2025-03-12 05:22:14", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_KV_Edit": { "stars": 58, "last_update": "2025-05-24 00:35:59", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Light_A_Video": { "stars": 81, "last_update": "2025-04-10 01:05:56", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Llama3_8B": { "stars": 26, "last_update": "2024-06-25 00:49:01", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_MS_Diffusion": { "stars": 59, "last_update": "2024-09-10 09:50:19", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_MangaNinjia": { - "stars": 52, + "stars": 53, "last_update": "2025-04-09 14:21:57", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_MooER": { "stars": 5, "last_update": "2025-03-09 01:15:38", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_OmniParser": { "stars": 39, "last_update": "2025-03-12 05:22:34", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_PBR_Maker": { "stars": 13, "last_update": "2025-03-12 05:21:53", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_ParlerTTS": { "stars": 44, "last_update": "2024-12-25 06:26:03", - "author_account_age_days": 711 + "author_account_age_days": 719 + }, + "https://github.com/smthemex/ComfyUI_PartPacker": { + "stars": 13, + "last_update": "2025-06-23 10:11:04", + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Personalize_Anything": { "stars": 43, "last_update": "2025-03-26 00:38:13", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_PhotoDoodle": { "stars": 96, "last_update": "2025-03-20 08:19:21", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Pic2Story": { "stars": 9, "last_update": "2024-12-06 12:12:19", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Pipeline_Tool": { "stars": 10, "last_update": "2024-08-05 06:14:57", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Pops": { "stars": 21, "last_update": "2024-08-12 09:11:49", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_SVFR": { "stars": 91, "last_update": "2025-03-12 05:21:23", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Sapiens": { "stars": 175, "last_update": "2025-03-12 05:22:59", - "author_account_age_days": 711 + "author_account_age_days": 719 + }, + "https://github.com/smthemex/ComfyUI_SongGeneration": { + "stars": 28, + "last_update": "2025-06-23 13:49:47", + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Sonic": { - "stars": 1026, + "stars": 1031, "last_update": "2025-05-22 00:46:49", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_StableAudio_Open": { "stars": 26, "last_update": "2024-08-10 03:45:47", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Stable_Makeup": { "stars": 96, "last_update": "2025-04-05 10:04:50", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_StoryDiffusion": { - "stars": 448, - "last_update": "2025-06-04 07:13:19", - "author_account_age_days": 711 + "stars": 449, + "last_update": "2025-06-21 07:40:36", + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_Streamv2v_Plus": { "stars": 10, "last_update": "2024-09-06 08:20:59", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_TRELLIS": { - "stars": 166, + "stars": 167, "last_update": "2025-04-22 00:28:27", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_VisualCloze": { "stars": 11, "last_update": "2025-05-21 08:56:45", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_YuE": { - "stars": 141, + "stars": 142, "last_update": "2025-02-24 12:02:41", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/sn0w12/ComfyUI-Sn0w-Scripts": { "stars": 11, "last_update": "2025-05-04 15:47:59", - "author_account_age_days": 1130 + "author_account_age_days": 1138 }, "https://github.com/sn0w12/ComfyUI-Syntax-Highlighting": { "stars": 0, "last_update": "2025-04-07 10:24:12", - "author_account_age_days": 1130 + "author_account_age_days": 1138 }, "https://github.com/sneccc/comfyui-snek-nodes": { "stars": 1, "last_update": "2025-05-13 19:18:37", - "author_account_age_days": 1924 + "author_account_age_days": 1932 }, - "https://github.com/somesomebody/comfyui-lorainfo-sidebar": { + "https://github.com/somesomebody/lorainfo-sidebar": { "stars": 2, "last_update": "2025-05-31 07:23:03", - "author_account_age_days": 48 + "author_account_age_days": 56 }, "https://github.com/souki202/ComfyUI-LoadImage-Advanced": { "stars": 1, "last_update": "2025-03-03 03:53:26", - "author_account_age_days": 3617 + "author_account_age_days": 3624 }, "https://github.com/sourceful-official/LoadLoraModelOnlyWithUrl": { "stars": 1, "last_update": "2024-12-04 12:14:51", - "author_account_age_days": 1840 + "author_account_age_days": 1848 }, "https://github.com/sousakujikken/ComfyUI-PixydustQuantizer": { "stars": 29, "last_update": "2025-03-30 15:07:02", - "author_account_age_days": 765 + "author_account_age_days": 773 }, "https://github.com/space-nuko/ComfyUI-Disco-Diffusion": { "stars": 54, "last_update": "2024-08-07 11:51:17", - "author_account_age_days": 3081 + "author_account_age_days": 3089 }, "https://github.com/space-nuko/ComfyUI-OpenPose-Editor": { - "stars": 212, + "stars": 213, "last_update": "2024-05-22 18:10:49", - "author_account_age_days": 3081 + "author_account_age_days": 3089 }, "https://github.com/space-nuko/nui-suite": { "stars": 11, "last_update": "2024-05-22 18:11:04", - "author_account_age_days": 3081 + "author_account_age_days": 3089 }, "https://github.com/spacepxl/ComfyUI-Depth-Pro": { - "stars": 185, + "stars": 186, "last_update": "2024-10-23 20:05:56", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-Florence-2": { "stars": 82, "last_update": "2024-07-20 19:44:33", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-HQ-Image-Save": { "stars": 57, "last_update": "2025-01-30 00:12:58", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-Image-Filters": { - "stars": 227, + "stars": 228, "last_update": "2025-05-21 21:27:56", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-LossTesting": { "stars": 2, "last_update": "2025-01-26 05:09:57", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-RAVE": { - "stars": 91, + "stars": 92, "last_update": "2024-05-22 20:56:19", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spacepxl/ComfyUI-StyleGan": { - "stars": 18, + "stars": 19, "last_update": "2024-06-10 20:16:34", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/spawner1145/CUI-Lumina2-TeaCache": { "stars": 6, "last_update": "2025-06-08 09:51:09", - "author_account_age_days": 295 + "author_account_age_days": 303 }, "https://github.com/spawner1145/comfyui-aichat": { - "stars": 1, + "stars": 2, "last_update": "2025-06-09 11:06:53", - "author_account_age_days": 295 + "author_account_age_days": 303 }, "https://github.com/spinagon/ComfyUI-seam-carving": { "stars": 22, "last_update": "2025-03-14 08:47:57", - "author_account_age_days": 5097 + "author_account_age_days": 5105 }, "https://github.com/spinagon/ComfyUI-seamless-tiling": { - "stars": 201, + "stars": 204, "last_update": "2025-03-14 08:48:11", - "author_account_age_days": 5097 + "author_account_age_days": 5105 }, "https://github.com/spro/comfyui-mirror": { "stars": 6, "last_update": "2024-05-22 20:50:25", - "author_account_age_days": 5588 + "author_account_age_days": 5596 }, "https://github.com/ssitu/ComfyUI_UltimateSDUpscale": { - "stars": 1200, + "stars": 1215, "last_update": "2025-06-05 01:53:42", - "author_account_age_days": 2046 + "author_account_age_days": 2054 }, "https://github.com/ssitu/ComfyUI_fabric": { "stars": 93, "last_update": "2024-05-22 18:10:19", - "author_account_age_days": 2046 + "author_account_age_days": 2054 }, "https://github.com/ssitu/ComfyUI_restart_sampling": { "stars": 89, "last_update": "2024-05-22 18:09:49", - "author_account_age_days": 2046 + "author_account_age_days": 2054 }, "https://github.com/ssitu/ComfyUI_roop": { "stars": 77, "last_update": "2024-05-22 18:10:03", - "author_account_age_days": 2046 + "author_account_age_days": 2054 }, "https://github.com/stavsap/comfyui-downloader": { "stars": 0, - "last_update": "2025-05-17 12:50:42", - "author_account_age_days": 4441 + "last_update": "2025-06-22 20:44:33", + "author_account_age_days": 4448 }, "https://github.com/stavsap/comfyui-kokoro": { "stars": 51, "last_update": "2025-05-17 13:23:49", - "author_account_age_days": 4441 + "author_account_age_days": 4448 }, "https://github.com/stavsap/comfyui-ollama": { - "stars": 564, + "stars": 568, "last_update": "2025-05-28 07:22:35", - "author_account_age_days": 4441 + "author_account_age_days": 4448 }, "https://github.com/stepfun-ai/ComfyUI-StepVideo": { "stars": 39, "last_update": "2025-03-27 07:52:26", - "author_account_age_days": 310 + "author_account_age_days": 318 }, "https://github.com/stevenwg/ComfyUI-VideoGrid": { "stars": 0, "last_update": "2025-05-26 06:51:21", - "author_account_age_days": 3656 + "author_account_age_days": 3663 }, "https://github.com/stormcenter/ComfyUI-AutoSplitGridImage": { - "stars": 31, + "stars": 32, "last_update": "2025-01-06 12:02:58", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/stormcenter/ComfyUI-LivePhotoCreator": { "stars": 24, "last_update": "2025-01-06 12:03:42", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/stormcenter/ComfyUI-SVGFullfill": { "stars": 10, "last_update": "2025-01-06 12:04:18", - "author_account_age_days": 4485 + "author_account_age_days": 4493 }, "https://github.com/storyicon/comfyui_musev_evolved": { "stars": 26, "last_update": "2024-06-14 11:02:40", - "author_account_age_days": 2909 + "author_account_age_days": 2916 }, "https://github.com/storyicon/comfyui_segment_anything": { - "stars": 964, + "stars": 969, "last_update": "2024-07-12 10:17:33", - "author_account_age_days": 2909 + "author_account_age_days": 2916 }, "https://github.com/strand1/ComfyUI-Autogen": { "stars": 3, "last_update": "2025-01-21 05:10:43", - "author_account_age_days": 4828 + "author_account_age_days": 4836 }, "https://github.com/strimmlarn/ComfyUI-Strimmlarns-Aesthetic-Score": { "stars": 34, "last_update": "2024-06-17 10:01:44", - "author_account_age_days": 2984 + "author_account_age_days": 2991 }, "https://github.com/styler00dollar/ComfyUI-deepcache": { "stars": 11, "last_update": "2024-05-22 22:18:18", - "author_account_age_days": 2203 + "author_account_age_days": 2210 }, "https://github.com/styler00dollar/ComfyUI-sudo-latent-upscale": { "stars": 39, "last_update": "2024-05-22 22:18:07", - "author_account_age_days": 2203 + "author_account_age_days": 2210 }, "https://github.com/subtleGradient/TinkerBot-tech-for-ComfyUI-Touchpad": { "stars": 38, "last_update": "2024-08-16 01:18:03", - "author_account_age_days": 6287 + "author_account_age_days": 6295 }, "https://github.com/sugarkwork/ComfyUI_AspectRatioToSize": { "stars": 2, "last_update": "2025-06-04 00:48:13", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/sugarkwork/comfyui-trtupscaler": { "stars": 1, "last_update": "2025-06-11 07:43:10", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/sugarkwork/comfyui_cohere": { "stars": 1, "last_update": "2025-06-11 04:29:08", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/sugarkwork/comfyui_tag_fillter": { - "stars": 50, + "stars": 51, "last_update": "2025-04-16 07:37:35", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/superyoman/comfyui_lumaAPI": { "stars": 21, "last_update": "2024-06-17 21:00:05", - "author_account_age_days": 805 + "author_account_age_days": 813 }, "https://github.com/surinder83singh/ComfyUI-compare-videos": { "stars": 1, "last_update": "2025-05-06 01:30:48", - "author_account_age_days": 4874 + "author_account_age_days": 4881 }, "https://github.com/svetozarov/AS_LLM_nodes": { "stars": 2, "last_update": "2025-03-23 12:05:43", - "author_account_age_days": 842 + "author_account_age_days": 850 }, "https://github.com/sweetndata/ComfyUI-Image-Harmonizer": { "stars": 2, "last_update": "2024-11-20 06:10:34", - "author_account_age_days": 1089 + "author_account_age_days": 1097 }, "https://github.com/sweetndata/ComfyUI-googletrans": { "stars": 3, "last_update": "2024-11-20 04:53:19", - "author_account_age_days": 1089 + "author_account_age_days": 1097 }, "https://github.com/sweetndata/ComfyUI_Sticker_Compositer": { "stars": 1, "last_update": "2025-01-02 06:54:51", - "author_account_age_days": 1089 + "author_account_age_days": 1097 }, "https://github.com/swhsiang/comfyui-3d-gs-renderer": { "stars": 1, "last_update": "2025-06-09 03:05:11", - "author_account_age_days": 3292 + "author_account_age_days": 3300 }, "https://github.com/syllebra/bilbox-comfyui": { "stars": 132, "last_update": "2024-12-06 23:51:55", - "author_account_age_days": 3493 + "author_account_age_days": 3500 }, "https://github.com/sylym/comfy_vid2vid": { "stars": 71, "last_update": "2024-05-22 17:53:40", - "author_account_age_days": 2255 + "author_account_age_days": 2263 }, "https://github.com/synthetai/ComfyUI-JM-KLing-API": { "stars": 1, "last_update": "2025-05-14 10:42:13", - "author_account_age_days": 308 + "author_account_age_days": 316 }, "https://github.com/synthetai/ComfyUI-JM-MiniMax-API": { "stars": 1, - "last_update": "2025-06-04 11:49:32", - "author_account_age_days": 308 + "last_update": "2025-06-24 02:00:05", + "author_account_age_days": 316 + }, + "https://github.com/synthetai/ComfyUI-JM-Volcengine-API": { + "stars": 0, + "last_update": "2025-06-24 08:11:39", + "author_account_age_days": 316 }, "https://github.com/synthetai/ComfyUI-ToolBox": { "stars": 0, "last_update": "2025-06-07 03:03:58", - "author_account_age_days": 308 + "author_account_age_days": 316 }, "https://github.com/synthetai/ComfyUI_FaceEnhancer": { "stars": 2, "last_update": "2025-04-17 00:34:39", - "author_account_age_days": 308 + "author_account_age_days": 316 }, "https://github.com/synthetai/ComfyUI_PromptBatcher": { "stars": 5, "last_update": "2025-04-14 04:42:03", - "author_account_age_days": 308 + "author_account_age_days": 316 }, "https://github.com/szhublox/ambw_comfyui": { "stars": 15, "last_update": "2024-05-22 18:04:57", - "author_account_age_days": 1364 + "author_account_age_days": 1372 }, "https://github.com/taabata/ComfyCanvas": { - "stars": 87, + "stars": 88, "last_update": "2024-12-15 00:59:25", - "author_account_age_days": 2040 + "author_account_age_days": 2047 }, "https://github.com/taabata/LCM_Inpaint_Outpaint_Comfy": { "stars": 260, "last_update": "2024-11-18 00:45:28", - "author_account_age_days": 2040 + "author_account_age_days": 2047 }, "https://github.com/taabata/SANA_LOWVRAM": { "stars": 5, "last_update": "2024-12-28 01:16:29", - "author_account_age_days": 2040 + "author_account_age_days": 2047 }, "https://github.com/taches-ai/comfyui-scene-composer": { "stars": 55, "last_update": "2025-05-28 07:30:03", - "author_account_age_days": 264 + "author_account_age_days": 272 }, "https://github.com/tachyon-beep/comfyui-simplefeed": { "stars": 10, "last_update": "2024-10-16 09:19:29", - "author_account_age_days": 5278 + "author_account_age_days": 5286 }, "https://github.com/takemetosiberia/ComfyUI-SAMURAI--SAM2-": { - "stars": 35, + "stars": 36, "last_update": "2024-12-01 13:06:02", - "author_account_age_days": 742 + "author_account_age_days": 750 }, "https://github.com/talesofai/comfyui-browser": { - "stars": 588, + "stars": 590, "last_update": "2024-11-11 01:42:30", - "author_account_age_days": 913 + "author_account_age_days": 920 }, "https://github.com/tanglaoya321/ComfyUI-StoryMaker": { "stars": 17, "last_update": "2024-10-01 01:20:00", - "author_account_age_days": 4328 + "author_account_age_days": 4336 }, "https://github.com/tatookan/comfyui_ssl_gemini_EXP": { "stars": 86, "last_update": "2025-03-19 15:54:44", - "author_account_age_days": 2088 + "author_account_age_days": 2096 }, "https://github.com/tavyra/ComfyUI_Curves": { - "stars": 1, + "stars": 2, "last_update": "2025-05-08 01:48:55", - "author_account_age_days": 2456 + "author_account_age_days": 2464 }, "https://github.com/tetsuoo-online/comfyui-too-xmp-metadata": { "stars": 4, "last_update": "2025-06-07 15:59:26", - "author_account_age_days": 2377 + "author_account_age_days": 2385 }, "https://github.com/teward/Comfy-Sentry": { "stars": 1, "last_update": "2024-07-31 21:37:42", - "author_account_age_days": 5455 + "author_account_age_days": 5463 }, "https://github.com/teward/ComfyUI-Helper-Nodes": { "stars": 6, "last_update": "2024-05-23 01:22:01", - "author_account_age_days": 5455 + "author_account_age_days": 5463 }, "https://github.com/thalismind/ComfyUI-Blend-Nodes": { "stars": 0, "last_update": "2025-06-02 02:22:19", - "author_account_age_days": 156 + "author_account_age_days": 164 }, "https://github.com/theAdamColton/ComfyUI-texflow-extension": { "stars": 1, "last_update": "2025-01-16 19:58:24", - "author_account_age_days": 1713 - }, - "https://github.com/theUpsider/ComfyUI-Logic": { - "stars": 192, - "last_update": "2025-06-13 16:15:06", - "author_account_age_days": 3079 + "author_account_age_days": 1721 }, "https://github.com/theUpsider/ComfyUI-Styles_CSV_Loader": { - "stars": 56, + "stars": 58, "last_update": "2025-05-16 11:01:23", - "author_account_age_days": 3079 + "author_account_age_days": 3087 }, "https://github.com/thecooltechguy/ComfyUI-ComfyWorkflows": { - "stars": 68, + "stars": 69, "last_update": "2024-05-22 21:33:47", - "author_account_age_days": 2779 + "author_account_age_days": 2787 }, "https://github.com/thecooltechguy/ComfyUI-MagicAnimate": { "stars": 223, "last_update": "2024-05-22 21:33:35", - "author_account_age_days": 2779 + "author_account_age_days": 2787 }, "https://github.com/thecooltechguy/ComfyUI-Stable-Video-Diffusion": { - "stars": 360, + "stars": 361, "last_update": "2024-05-24 22:14:42", - "author_account_age_days": 2779 + "author_account_age_days": 2787 }, "https://github.com/thedivergentai/divergent_nodes": { "stars": 0, - "last_update": "2025-05-23 10:52:07", - "author_account_age_days": 817 + "last_update": "2025-06-23 16:16:30", + "author_account_age_days": 825 }, "https://github.com/theshubzworld/ComfyUI-FaceCalloutNode": { "stars": 0, "last_update": "2025-05-09 14:38:15", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/theshubzworld/ComfyUI-SD3.5-Latent-Size-Picker": { "stars": 0, "last_update": "2024-12-25 14:09:38", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/theshubzworld/ComfyUI-TogetherVision": { "stars": 3, "last_update": "2025-05-31 09:39:17", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/theshubzworld/ComfyUI-ollama_killer": { "stars": 3, "last_update": "2025-06-09 09:14:55", - "author_account_age_days": 328 + "author_account_age_days": 336 }, "https://github.com/thezveroboy/ComfyUI-CSM-Nodes": { "stars": 35, "last_update": "2025-03-17 10:08:12", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/thezveroboy/ComfyUI-WAN-ClipSkip": { "stars": 1, "last_update": "2025-03-16 21:12:54", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/thezveroboy/ComfyUI-lut": { "stars": 2, "last_update": "2025-05-24 21:37:06", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/thezveroboy/ComfyUI_ACE-Step-zveroboy": { "stars": 1, "last_update": "2025-05-12 11:01:16", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/thezveroboy/comfyui-random-image-loader": { "stars": 1, "last_update": "2025-05-11 18:04:32", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/thoddnn/ComfyUI-MLX": { - "stars": 135, + "stars": 139, "last_update": "2024-10-22 06:41:22", - "author_account_age_days": 620 + "author_account_age_days": 628 }, "https://github.com/tianguanggliu/Utools": { "stars": 0, "last_update": "2024-08-29 09:45:03", - "author_account_age_days": 2697 + "author_account_age_days": 2705 }, "https://github.com/tiankuan93/ComfyUI-V-Express": { "stars": 112, "last_update": "2024-06-26 02:41:00", - "author_account_age_days": 3307 + "author_account_age_days": 3315 }, "https://github.com/tianlang0704/ComfyUI-StableProjectorzBridge": { "stars": 37, "last_update": "2024-12-01 11:46:58", - "author_account_age_days": 3682 + "author_account_age_days": 3690 }, "https://github.com/tianyuw/ComfyUI-LLM-API": { "stars": 6, "last_update": "2025-01-25 19:31:47", - "author_account_age_days": 3550 + "author_account_age_days": 3557 }, "https://github.com/tigeryy2/comfyui-structured-outputs": { "stars": 1, - "last_update": "2025-06-10 10:48:35", - "author_account_age_days": 2328 + "last_update": "2025-06-19 04:48:05", + "author_account_age_days": 2336 }, "https://github.com/tighug/comfyui-eagle-feeder": { "stars": 0, "last_update": "2025-05-09 14:26:15", - "author_account_age_days": 2468 + "author_account_age_days": 2476 }, "https://github.com/tighug/comfyui-rating-checker": { "stars": 1, "last_update": "2025-05-09 14:22:51", - "author_account_age_days": 2468 + "author_account_age_days": 2476 }, "https://github.com/tkreuziger/comfyui-claude": { "stars": 4, "last_update": "2025-04-10 18:23:35", - "author_account_age_days": 893 + "author_account_age_days": 901 }, "https://github.com/tmagara/ComfyUI-Prediction-Boost": { "stars": 1, "last_update": "2024-07-31 13:51:19", - "author_account_age_days": 4732 + "author_account_age_days": 4740 }, "https://github.com/tocubed/ComfyUI-AudioReactor": { "stars": 8, "last_update": "2024-05-22 22:21:57", - "author_account_age_days": 4216 + "author_account_age_days": 4224 }, "https://github.com/tocubed/ComfyUI-EvTexture": { "stars": 15, "last_update": "2025-01-05 23:21:23", - "author_account_age_days": 4216 + "author_account_age_days": 4224 }, "https://github.com/tomudo/ComfyUI-ascii-art": { "stars": 3, "last_update": "2024-11-21 05:24:12", - "author_account_age_days": 3260 + "author_account_age_days": 3267 }, "https://github.com/tooldigital/ComfyUI-Yolo-Cropper": { "stars": 9, "last_update": "2024-06-14 13:59:48", - "author_account_age_days": 4674 + "author_account_age_days": 4682 }, "https://github.com/toxicwind/ComfyUI-TTools": { "stars": 1, "last_update": "2024-07-04 20:07:35", - "author_account_age_days": 4727 + "author_account_age_days": 4735 }, "https://github.com/toyxyz/ComfyUI_rgbx_Wrapper": { "stars": 88, "last_update": "2025-04-03 08:17:10", - "author_account_age_days": 4006 + "author_account_age_days": 4014 }, "https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes": { "stars": 581, "last_update": "2025-06-10 14:20:31", - "author_account_age_days": 4006 + "author_account_age_days": 4014 }, "https://github.com/traugdor/ComfyUI-Riffusion": { "stars": 3, "last_update": "2025-05-30 20:15:05", - "author_account_age_days": 4177 + "author_account_age_days": 4185 }, "https://github.com/traugdor/ComfyUI-UltimateSDUpscale-GGUF": { "stars": 13, - "last_update": "2025-02-25 01:17:06", - "author_account_age_days": 4177 + "last_update": "2025-06-21 15:15:07", + "author_account_age_days": 4185 }, "https://github.com/traugdor/ComfyUI-quadMoons-nodes": { "stars": 14, - "last_update": "2025-02-26 02:01:36", - "author_account_age_days": 4177 + "last_update": "2025-06-23 15:18:42", + "author_account_age_days": 4185 }, "https://github.com/tritant/ComfyUI_CreaPrompt": { - "stars": 58, - "last_update": "2025-06-09 15:43:56", - "author_account_age_days": 3497 + "stars": 59, + "last_update": "2025-06-17 03:16:11", + "author_account_age_days": 3505 }, "https://github.com/tritant/ComfyUI_Flux_Block_Lora_Merger": { "stars": 1, "last_update": "2025-06-10 01:27:00", - "author_account_age_days": 3497 + "author_account_age_days": 3505 }, "https://github.com/tritant/ComfyUI_Flux_Lora_Merger": { "stars": 2, "last_update": "2025-05-09 04:39:16", - "author_account_age_days": 3497 + "author_account_age_days": 3505 }, "https://github.com/trojblue/trNodes": { "stars": 8, "last_update": "2024-05-22 18:04:36", - "author_account_age_days": 2614 + "author_account_age_days": 2622 }, "https://github.com/troyxmccall/ComfyUI-ScaleToTargetMegapixels": { "stars": 1, "last_update": "2024-11-11 00:07:25", - "author_account_age_days": 5746 + "author_account_age_days": 5754 }, "https://github.com/trumanwong/ComfyUI-NSFW-Detection": { "stars": 35, "last_update": "2025-04-21 05:38:12", - "author_account_age_days": 3317 + "author_account_age_days": 3325 }, "https://github.com/tsogzark/ComfyUI-load-image-from-url": { "stars": 20, "last_update": "2024-06-14 13:59:05", - "author_account_age_days": 1885 + "author_account_age_days": 1893 }, "https://github.com/ttulttul/ComfyUI-Iterative-Mixer": { "stars": 117, "last_update": "2025-03-10 03:33:02", - "author_account_age_days": 5114 + "author_account_age_days": 5122 }, "https://github.com/ttulttul/ComfyUI-Tensor-Operations": { "stars": 6, "last_update": "2025-02-03 16:57:00", - "author_account_age_days": 5114 + "author_account_age_days": 5122 }, "https://github.com/tungdop2/Comfyui_face_restorer": { "stars": 2, "last_update": "2024-11-21 15:53:59", - "author_account_age_days": 1781 + "author_account_age_days": 1789 }, "https://github.com/tungdop2/Comfyui_joy-caption-alpha-two": { "stars": 6, "last_update": "2025-04-19 06:00:23", - "author_account_age_days": 1781 + "author_account_age_days": 1789 }, "https://github.com/turkyden/ComfyUI-SmartCrop": { "stars": 3, "last_update": "2024-10-08 09:36:34", - "author_account_age_days": 3106 + "author_account_age_days": 3114 }, "https://github.com/tusharbhutt/Endless-Nodes": { - "stars": 25, - "last_update": "2025-06-16 04:05:42", - "author_account_age_days": 3022 + "stars": 41, + "last_update": "2025-06-24 05:32:32", + "author_account_age_days": 3030 }, "https://github.com/twri/sdxl_prompt_styler": { "stars": 856, "last_update": "2024-05-22 18:16:58", - "author_account_age_days": 4425 + "author_account_age_days": 4433 }, "https://github.com/txt2any/ComfyUI-PromptOrganizer": { "stars": 0, "last_update": "2024-05-23 01:10:33", - "author_account_age_days": 441 + "author_account_age_days": 449 }, "https://github.com/ty0x2333/ComfyUI-Dev-Utils": { "stars": 134, "last_update": "2024-10-03 23:26:45", - "author_account_age_days": 4059 + "author_account_age_days": 4067 }, "https://github.com/tzwm/comfyui-profiler": { - "stars": 158, + "stars": 157, "last_update": "2024-08-28 14:27:12", - "author_account_age_days": 5126 + "author_account_age_days": 5134 }, "https://github.com/uarefans/ComfyUI-Fans": { "stars": 17, "last_update": "2024-07-14 15:00:38", - "author_account_age_days": 1629 + "author_account_age_days": 1637 }, "https://github.com/uetuluk/comfyui-webcam-node": { "stars": 4, "last_update": "2024-06-14 08:25:13", - "author_account_age_days": 2671 + "author_account_age_days": 2679 }, "https://github.com/uihp/ComfyUI-String-Chain": { "stars": 0, "last_update": "2025-04-12 12:22:14", - "author_account_age_days": 1395 + "author_account_age_days": 1403 }, "https://github.com/umiyuki/comfyui-pad-to-eight": { "stars": 0, "last_update": "2025-01-07 09:58:36", - "author_account_age_days": 4111 + "author_account_age_days": 4118 }, "https://github.com/un-seen/comfyui-tensorops": { - "stars": 27, + "stars": 28, "last_update": "2024-10-26 00:04:07", - "author_account_age_days": 1673 + "author_account_age_days": 1681 }, "https://github.com/un-seen/comfyui_segment_anything_plus": { "stars": 8, "last_update": "2024-07-29 06:21:54", - "author_account_age_days": 1673 + "author_account_age_days": 1681 }, "https://github.com/unicough/comfy_openai_image_api": { "stars": 0, "last_update": "2025-05-02 04:24:34", - "author_account_age_days": 4067 + "author_account_age_days": 4075 }, "https://github.com/unwdef/unwdef-nodes-comfyui": { "stars": 5, "last_update": "2025-03-27 10:42:15", - "author_account_age_days": 430 + "author_account_age_days": 438 }, "https://github.com/usrname0/comfyui-holdup": { "stars": 0, "last_update": "2025-06-12 07:26:10", - "author_account_age_days": 2770 + "author_account_age_days": 2778 }, "https://github.com/vadimcro/VKRiez-Edge": { "stars": 7, "last_update": "2025-03-18 11:18:27", - "author_account_age_days": 2993 + "author_account_age_days": 3000 }, "https://github.com/vahidzxc/va-nodes": { "stars": 2, "last_update": "2025-03-22 01:50:08", - "author_account_age_days": 349 + "author_account_age_days": 357 }, "https://github.com/vahlok-alunmid/ComfyUI-ExtendIPAdapterClipVision": { "stars": 12, "last_update": "2025-02-09 04:06:34", - "author_account_age_days": 2744 + "author_account_age_days": 2752 }, "https://github.com/valofey/Openrouter-Node": { "stars": 5, "last_update": "2025-02-13 21:26:22", - "author_account_age_days": 1740 + "author_account_age_days": 1748 }, "https://github.com/vanche1212/ComfyUI-ZMG-Nodes": { "stars": 3, "last_update": "2024-06-25 04:48:19", - "author_account_age_days": 3315 + "author_account_age_days": 3322 }, "https://github.com/vanillacode314/SimpleWildcardsComfyUI": { "stars": 5, "last_update": "2025-04-02 04:56:25", - "author_account_age_days": 1214 + "author_account_age_days": 1222 }, "https://github.com/var1ableX/ComfyUI_Accessories": { "stars": 1, "last_update": "2025-02-09 14:31:19", - "author_account_age_days": 5121 + "author_account_age_days": 5129 }, "https://github.com/vault-developer/comfyui-image-blender": { "stars": 20, "last_update": "2025-04-02 19:37:15", - "author_account_age_days": 2970 + "author_account_age_days": 2978 }, "https://github.com/veighnsche/comfyui_gr85": { "stars": 1, "last_update": "2024-11-26 17:26:48", - "author_account_age_days": 3457 + "author_account_age_days": 3465 }, "https://github.com/vekitan55/SimpleFlux1Merger": { "stars": 0, "last_update": "2025-04-23 12:09:47", - "author_account_age_days": 687 + "author_account_age_days": 695 }, "https://github.com/victorchall/comfyui_webcamcapture": { "stars": 14, "last_update": "2025-04-16 20:39:32", - "author_account_age_days": 3502 + "author_account_age_days": 3510 }, "https://github.com/vienteck/ComfyUI-Chat-GPT-Integration": { "stars": 31, "last_update": "2024-05-22 22:11:14", - "author_account_age_days": 3784 + "author_account_age_days": 3792 }, "https://github.com/vincentfs/ComfyUI-ArchiGraph": { "stars": 2, "last_update": "2025-01-23 17:29:09", - "author_account_age_days": 4023 + "author_account_age_days": 4031 }, "https://github.com/violet-chen/comfyui-psd2png": { "stars": 20, "last_update": "2025-06-04 11:41:34", - "author_account_age_days": 1755 + "author_account_age_days": 1763 }, "https://github.com/violet0927/ComfyUI-HuggingFaceLoraUploader": { "stars": 0, "last_update": "2025-06-03 05:46:11", - "author_account_age_days": 137 + "author_account_age_days": 145 }, "https://github.com/viperyl/ComfyUI-RGT": { "stars": 8, "last_update": "2024-06-20 15:33:50", - "author_account_age_days": 2390 + "author_account_age_days": 2397 }, "https://github.com/vivax3794/ComfyUI-Sub-Nodes": { "stars": 163, "last_update": "2025-02-21 07:03:30", - "author_account_age_days": 2195 + "author_account_age_days": 2203 }, "https://github.com/vivax3794/ComfyUI-Vivax-Nodes": { "stars": 3, "last_update": "2024-09-07 18:42:27", - "author_account_age_days": 2195 + "author_account_age_days": 2203 }, "https://github.com/vivi-gomez/ComfyUI-fixnodetranslate": { "stars": 0, "last_update": "2025-06-01 08:42:50", - "author_account_age_days": 4705 + "author_account_age_days": 4713 }, "https://github.com/vkff5833/ComfyUI-MobileClient": { "stars": 4, "last_update": "2025-02-11 00:34:36", - "author_account_age_days": 652 + "author_account_age_days": 660 }, "https://github.com/vkff5833/ComfyUI-PromptConverter": { "stars": 2, "last_update": "2025-01-27 18:35:41", - "author_account_age_days": 652 + "author_account_age_days": 660 }, "https://github.com/vladpro3/ComfyUI_BishaNodes": { "stars": 1, "last_update": "2025-06-08 19:23:23", - "author_account_age_days": 2684 - }, - "https://github.com/vovler/comfyui-civitaihelper": { - "stars": 1, - "last_update": "2025-06-05 14:24:27", - "author_account_age_days": 2084 + "author_account_age_days": 2691 }, "https://github.com/vsevolod-oparin/comfyui-kandinsky22": { "stars": 10, "last_update": "2025-04-02 03:48:05", - "author_account_age_days": 5341 + "author_account_age_days": 5349 }, "https://github.com/vuongminh1907/ComfyUI_ZenID": { - "stars": 177, + "stars": 178, "last_update": "2025-03-27 00:11:23", - "author_account_age_days": 929 + "author_account_age_days": 937 }, "https://github.com/wTechArtist/ComfyUI-CustomNodes": { "stars": 2, "last_update": "2024-08-21 03:03:16", - "author_account_age_days": 1718 + "author_account_age_days": 1725 }, "https://github.com/wTechArtist/ComfyUI-StableDelight-weiweiliang": { "stars": 2, "last_update": "2025-03-23 07:52:36", - "author_account_age_days": 1718 + "author_account_age_days": 1725 }, "https://github.com/wTechArtist/ComfyUI_VVL_VideoCamera_Advanced": { "stars": 1, - "last_update": "2025-06-16 10:48:15", - "author_account_age_days": 1718 + "last_update": "2025-06-23 10:08:04", + "author_account_age_days": 1725 }, "https://github.com/wakattac/ComfyUI-AbstractImaGen": { "stars": 1, "last_update": "2025-05-09 22:37:03", - "author_account_age_days": 41 + "author_account_age_days": 49 }, "https://github.com/wallish77/wlsh_nodes": { "stars": 125, "last_update": "2024-06-19 12:01:29", - "author_account_age_days": 2577 + "author_account_age_days": 2585 }, "https://github.com/wandbrandon/comfyui-pixel": { "stars": 4, "last_update": "2024-06-14 07:07:09", - "author_account_age_days": 3740 + "author_account_age_days": 3748 }, "https://github.com/waterminer/ComfyUI-tagcomplete": { "stars": 11, "last_update": "2025-01-06 00:13:57", - "author_account_age_days": 2469 + "author_account_age_days": 2476 }, "https://github.com/web3nomad/ComfyUI_Invisible_Watermark": { "stars": 1, "last_update": "2024-05-23 01:16:54", - "author_account_age_days": 1324 + "author_account_age_days": 1332 }, "https://github.com/webfiltered/DebugNode-ComfyUI": { "stars": 8, "last_update": "2025-05-06 16:15:33", - "author_account_age_days": 331 + "author_account_age_days": 339 }, "https://github.com/wei30172/comfygen": { "stars": 7, "last_update": "2024-11-07 22:10:50", - "author_account_age_days": 1970 + "author_account_age_days": 1977 }, "https://github.com/weilin9999/WeiLin-Comfyui-Tools": { - "stars": 157, + "stars": 166, "last_update": "2025-05-08 04:25:11", - "author_account_age_days": 2265 + "author_account_age_days": 2272 }, "https://github.com/welltop-cn/ComfyUI-TeaCache": { - "stars": 824, - "last_update": "2025-06-15 09:40:18", - "author_account_age_days": 1929 + "stars": 830, + "last_update": "2025-06-22 07:43:14", + "author_account_age_days": 1936 }, "https://github.com/wentao-uw/ComfyUI-template-matching": { "stars": 1, "last_update": "2024-11-06 06:52:30", - "author_account_age_days": 2136 + "author_account_age_days": 2144 }, "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor": { - "stars": 55, - "last_update": "2025-06-15 10:43:23", - "author_account_age_days": 651 + "stars": 60, + "last_update": "2025-06-16 17:57:31", + "author_account_age_days": 659 }, "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator": { "stars": 12, "last_update": "2025-06-03 21:06:33", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render": { "stars": 8, "last_update": "2025-01-25 05:54:27", - "author_account_age_days": 651 + "author_account_age_days": 659 }, "https://github.com/whatbirdisthat/cyberdolphin": { "stars": 14, "last_update": "2024-07-31 13:40:12", - "author_account_age_days": 5844 + "author_account_age_days": 5852 }, "https://github.com/whmc76/ComfyUI-Openpose-Editor-Plus": { "stars": 38, "last_update": "2024-06-20 13:52:34", - "author_account_age_days": 809 + "author_account_age_days": 816 }, "https://github.com/whmc76/ComfyUI-RemoveBackgroundSuite": { "stars": 3, "last_update": "2025-06-11 10:11:09", - "author_account_age_days": 809 + "author_account_age_days": 816 }, "https://github.com/whmc76/ComfyUI-UniversalToolkit": { "stars": 0, - "last_update": "2025-06-16 12:12:59", - "author_account_age_days": 809 + "last_update": "2025-06-24 08:43:43", + "author_account_age_days": 816 }, "https://github.com/wildminder/000_ComfyUI-Optim": { - "stars": 3, + "stars": 4, "last_update": "2025-06-02 21:30:04", - "author_account_age_days": 4590 + "author_account_age_days": 4598 }, "https://github.com/wildminder/ComfyUI-Chatterbox": { - "stars": 22, + "stars": 28, "last_update": "2025-05-30 06:27:05", - "author_account_age_days": 4590 + "author_account_age_days": 4598 }, "https://github.com/wildminder/ComfyUI-KEEP": { "stars": 5, "last_update": "2025-05-30 21:03:54", - "author_account_age_days": 4590 + "author_account_age_days": 4598 }, "https://github.com/willchil/ComfyUI-Environment-Visualizer": { "stars": 12, "last_update": "2025-03-29 23:09:07", - "author_account_age_days": 2995 + "author_account_age_days": 3003 }, "https://github.com/willmiao/ComfyUI-Lora-Manager": { - "stars": 303, - "last_update": "2025-06-15 14:21:29", - "author_account_age_days": 3715 + "stars": 316, + "last_update": "2025-06-24 08:36:23", + "author_account_age_days": 3722 }, "https://github.com/windfancy/zsq_prompt": { "stars": 0, "last_update": "2024-12-15 14:58:52", - "author_account_age_days": 1894 + "author_account_age_days": 1902 }, "https://github.com/wings6407/ComfyUI_HBH-image_overlay": { "stars": 1, "last_update": "2025-05-12 02:52:38", - "author_account_age_days": 445 + "author_account_age_days": 453 }, "https://github.com/wirytiox/ComfyUI-SelectStringFromListWithIndex": { "stars": 1, "last_update": "2025-02-16 09:09:34", - "author_account_age_days": 1581 + "author_account_age_days": 1588 }, "https://github.com/withmpx/mpx-comfyui-nodes": { "stars": 2, "last_update": "2025-04-16 22:08:20", - "author_account_age_days": 86 + "author_account_age_days": 94 }, "https://github.com/without-ordinary/openoutpaint_comfyui_interface": { "stars": 0, "last_update": "2025-06-13 10:37:31", - "author_account_age_days": 3280 + "author_account_age_days": 3288 }, "https://github.com/wjl0313/ComfyUI_KimNodes": { - "stars": 32, + "stars": 33, "last_update": "2025-05-12 03:25:33", - "author_account_age_days": 2228 + "author_account_age_days": 2236 }, "https://github.com/wmatson/easy-comfy-nodes": { - "stars": 16, + "stars": 17, "last_update": "2025-04-17 16:26:02", - "author_account_age_days": 4474 + "author_account_age_days": 4482 }, "https://github.com/wmpmiles/comfyui-some-image-processing-stuff": { "stars": 4, "last_update": "2025-05-10 05:51:42", - "author_account_age_days": 3387 + "author_account_age_days": 3395 }, "https://github.com/wolfden/ComfyUi_PromptStylers": { "stars": 95, "last_update": "2025-02-15 18:38:12", - "author_account_age_days": 6078 + "author_account_age_days": 6086 }, "https://github.com/wolfden/ComfyUi_String_Function_Tree": { "stars": 10, "last_update": "2024-05-22 18:29:16", - "author_account_age_days": 6078 + "author_account_age_days": 6086 }, "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler": { "stars": 58, "last_update": "2024-08-17 21:12:43", - "author_account_age_days": 1925 + "author_account_age_days": 1932 }, "https://github.com/wqjuser/ComfyUI-Chat-Image": { "stars": 0, "last_update": "2024-12-26 07:00:30", - "author_account_age_days": 3291 + "author_account_age_days": 3298 }, "https://github.com/wu12023/ComfyUI-Image-Evaluation": { "stars": 9, "last_update": "2024-12-06 06:51:15", - "author_account_age_days": 674 + "author_account_age_days": 682 }, "https://github.com/wujm424606/ComfyUi-Ollama-YN": { "stars": 82, "last_update": "2024-09-17 13:20:02", - "author_account_age_days": 2619 + "author_account_age_days": 2627 }, "https://github.com/wutipong/ComfyUI-TextUtils": { "stars": 1, "last_update": "2024-06-14 09:34:31", - "author_account_age_days": 4542 + "author_account_age_days": 4550 }, "https://github.com/wwwins/ComfyUI-Simple-Aspect-Ratio": { "stars": 1, "last_update": "2024-05-22 22:22:25", - "author_account_age_days": 5407 + "author_account_age_days": 5415 }, "https://github.com/wywywywy/ComfyUI-pause": { - "stars": 15, + "stars": 16, "last_update": "2025-05-05 21:37:34", - "author_account_age_days": 3285 + "author_account_age_days": 3293 }, "https://github.com/xLegende/ComfyUI-Prompt-Formatter": { "stars": 2, "last_update": "2025-06-10 19:29:54", - "author_account_age_days": 1789 + "author_account_age_days": 1797 }, "https://github.com/xXAdonesXx/NodeGPT": { - "stars": 348, + "stars": 349, "last_update": "2024-06-20 11:41:30", - "author_account_age_days": 1836 + "author_account_age_days": 1843 }, "https://github.com/xfgexo/EXO-Custom-ComfyUI-Nodes": { "stars": 2, "last_update": "2024-12-24 14:07:18", - "author_account_age_days": 786 + "author_account_age_days": 794 }, "https://github.com/xhiroga/ComfyUI-FramePackWrapper_PlusOne": { - "stars": 18, + "stars": 19, "last_update": "2025-06-10 05:37:45", - "author_account_age_days": 3621 + "author_account_age_days": 3629 }, "https://github.com/xiaogui8dangjia/Comfyui-imagetoSTL": { "stars": 2, "last_update": "2025-06-06 04:08:30", - "author_account_age_days": 2024 + "author_account_age_days": 2032 }, "https://github.com/xiaowc-lib/comfyui-dynamic-params": { "stars": 0, "last_update": "2025-06-09 08:56:11", - "author_account_age_days": 3236 + "author_account_age_days": 3244 }, "https://github.com/xiaoxiaodesha/hd_node": { "stars": 15, "last_update": "2024-06-11 02:36:48", - "author_account_age_days": 3231 + "author_account_age_days": 3239 }, "https://github.com/xingBaGan/ComfyUI-connect-ui": { "stars": 1, "last_update": "2025-04-07 09:54:46", - "author_account_age_days": 2152 - }, - "https://github.com/xl0/latent-tools": { - "stars": 2, - "last_update": "2025-06-16 11:21:53", - "author_account_age_days": 5358 + "author_account_age_days": 2160 }, "https://github.com/xlinx/ComfyUI-decadetw-auto-messaging-realtime": { "stars": 8, "last_update": "2024-08-30 17:38:52", - "author_account_age_days": 4856 + "author_account_age_days": 4863 }, "https://github.com/xlinx/ComfyUI-decadetw-auto-prompt-llm": { "stars": 24, "last_update": "2025-02-01 18:36:52", - "author_account_age_days": 4856 + "author_account_age_days": 4863 }, "https://github.com/xlinx/ComfyUI-decadetw-spout-syphon-im-vj": { "stars": 12, "last_update": "2024-09-03 08:55:08", - "author_account_age_days": 4856 + "author_account_age_days": 4863 }, "https://github.com/xliry/ComfyUI_SendDiscord": { "stars": 0, "last_update": "2024-05-23 02:21:38", - "author_account_age_days": 1630 + "author_account_age_days": 1638 }, "https://github.com/xmarre/TorchCompileModel_LoRASafe": { "stars": 3, "last_update": "2025-06-06 18:40:09", - "author_account_age_days": 2112 + "author_account_age_days": 2120 }, "https://github.com/xobiomesh/ComfyUI_xObiomesh": { "stars": 2, "last_update": "2024-11-08 17:10:40", - "author_account_age_days": 2046 + "author_account_age_days": 2054 }, "https://github.com/xs315431/Comfyui_Get_promptId": { "stars": 1, "last_update": "2024-12-02 09:30:53", - "author_account_age_days": 1632 + "author_account_age_days": 1639 }, "https://github.com/xuhongming251/ComfyUI-GPEN": { "stars": 4, "last_update": "2025-04-16 21:37:02", - "author_account_age_days": 4463 + "author_account_age_days": 4471 }, "https://github.com/xuhongming251/ComfyUI-Jimeng": { "stars": 1, "last_update": "2025-06-11 09:39:59", - "author_account_age_days": 4463 + "author_account_age_days": 4471 }, "https://github.com/xuhongming251/ComfyUI-MuseTalkUtils": { "stars": 21, "last_update": "2025-04-16 21:36:46", - "author_account_age_days": 4463 + "author_account_age_days": 4471 }, "https://github.com/xuhongming251/ComfyUI_Camera": { "stars": 3, "last_update": "2025-05-05 18:30:40", - "author_account_age_days": 4463 + "author_account_age_days": 4471 }, "https://github.com/yanhuifair/comfyui-janus": { "stars": 4, "last_update": "2025-04-08 09:13:57", - "author_account_age_days": 3919 + "author_account_age_days": 3927 }, "https://github.com/yanlang0123/ComfyUI_Lam": { - "stars": 43, + "stars": 44, "last_update": "2025-05-24 12:20:05", - "author_account_age_days": 3165 + "author_account_age_days": 3173 }, "https://github.com/yasser-baalla/comfyUI-SemanticImageFetch": { "stars": 0, "last_update": "2025-03-22 11:04:33", - "author_account_age_days": 1754 + "author_account_age_days": 1761 }, "https://github.com/ycchanau/ComfyUI_Preview_Magnifier": { "stars": 2, "last_update": "2024-07-31 13:59:12", - "author_account_age_days": 2474 + "author_account_age_days": 2482 }, "https://github.com/ycyy/ComfyUI-YCYY-LoraInfo": { "stars": 5, "last_update": "2024-09-30 02:33:25", - "author_account_age_days": 3781 + "author_account_age_days": 3789 }, "https://github.com/yffyhk/comfyui_auto_danbooru": { "stars": 1, "last_update": "2024-05-22 23:23:03", - "author_account_age_days": 4078 + "author_account_age_days": 4086 }, "https://github.com/yhayano-ponotech/ComfyUI-Fal-API-Flux": { "stars": 56, "last_update": "2025-01-16 08:47:22", - "author_account_age_days": 927 + "author_account_age_days": 935 }, "https://github.com/yhayano-ponotech/comfyui-save-image-local": { "stars": 4, "last_update": "2025-01-15 12:30:50", - "author_account_age_days": 927 + "author_account_age_days": 935 }, "https://github.com/yhayano-ponotech/comfyui-stability-ai-api": { "stars": 0, "last_update": "2025-02-19 00:38:33", - "author_account_age_days": 927 + "author_account_age_days": 935 }, "https://github.com/yichengup/ComfyUI-LinearTransition": { "stars": 1, "last_update": "2025-05-10 14:50:25", - "author_account_age_days": 481 - }, - "https://github.com/yichengup/ComfyUI-VideoBlender": { - "stars": 37, - "last_update": "2025-02-18 14:31:51", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/ComfyUI-YCNodes": { - "stars": 20, + "stars": 23, "last_update": "2025-06-08 17:30:52", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/ComfyUI_Yc_JanusPro": { "stars": 7, "last_update": "2025-01-29 22:26:38", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/Comfyui-Deepseek": { "stars": 31, "last_update": "2025-02-23 19:36:53", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/Comfyui-Ycanvas": { "stars": 72, "last_update": "2024-12-22 01:26:50", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/Comfyui_Flux_Style_Adjust": { - "stars": 294, + "stars": 295, "last_update": "2025-02-19 05:08:27", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/Comfyui_Redux_Advanced": { - "stars": 97, + "stars": 98, "last_update": "2025-04-10 18:36:47", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/comfyui-face-liquify": { "stars": 1, "last_update": "2025-05-08 17:59:05", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yiwangsimple/ComfyUI_DW_Chat": { "stars": 88, "last_update": "2025-02-06 03:34:59", - "author_account_age_days": 909 + "author_account_age_days": 916 }, "https://github.com/yiwangsimple/florence_dw": { "stars": 47, "last_update": "2025-02-13 01:52:15", - "author_account_age_days": 909 + "author_account_age_days": 916 }, "https://github.com/yogurt7771/ComfyUI-YogurtNodes": { "stars": 0, - "last_update": "2025-06-13 08:53:28", - "author_account_age_days": 3187 + "last_update": "2025-06-24 06:49:47", + "author_account_age_days": 3194 }, "https://github.com/yolain/ComfyUI-Easy-Use": { - "stars": 1670, - "last_update": "2025-06-14 06:23:29", - "author_account_age_days": 1697 + "stars": 1689, + "last_update": "2025-06-23 08:22:23", + "author_account_age_days": 1705 }, "https://github.com/yolanother/ComfyUI-Save16bitPng": { "stars": 3, "last_update": "2024-12-23 01:50:04", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIComfyImageSubmit": { "stars": 1, "last_update": "2024-09-25 04:40:23", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIComfyLoaders": { "stars": 1, "last_update": "2024-11-18 09:35:46", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIComfyPromptAgent": { "stars": 5, "last_update": "2024-05-22 18:14:18", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIComfyQRCodes": { "stars": 4, "last_update": "2024-05-22 18:15:09", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIComfyVariables": { "stars": 12, "last_update": "2024-05-22 18:15:21", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yolanother/DTAIImageToTextNode": { "stars": 19, "last_update": "2024-05-22 18:14:31", - "author_account_age_days": 5220 + "author_account_age_days": 5228 }, "https://github.com/yondonfu/ComfyUI-Background-Edit": { - "stars": 21, + "stars": 22, "last_update": "2024-12-31 23:15:33", - "author_account_age_days": 4232 + "author_account_age_days": 4240 }, "https://github.com/yondonfu/ComfyUI-Torch-Compile": { "stars": 4, "last_update": "2025-04-30 18:46:47", - "author_account_age_days": 4232 + "author_account_age_days": 4240 }, "https://github.com/yorkane/ComfyUI-KYNode": { "stars": 7, "last_update": "2025-06-12 16:16:02", - "author_account_age_days": 3746 + "author_account_age_days": 3754 }, "https://github.com/younyokel/comfyui_prompt_formatter": { "stars": 3, "last_update": "2025-05-16 16:33:11", - "author_account_age_days": 2151 + "author_account_age_days": 2159 }, "https://github.com/youyegit/tdxh_node_comfyui": { "stars": 2, "last_update": "2025-03-17 08:22:16", - "author_account_age_days": 785 + "author_account_age_days": 793 }, "https://github.com/yuan199696/add_text_2_img": { "stars": 7, "last_update": "2025-03-27 14:40:27", - "author_account_age_days": 2800 + "author_account_age_days": 2807 }, "https://github.com/yuan199696/chinese_clip_encode": { "stars": 9, "last_update": "2025-03-27 14:39:40", - "author_account_age_days": 2800 + "author_account_age_days": 2807 }, "https://github.com/yushan777/ComfyUI-Y7-SBS-2Dto3D": { "stars": 3, "last_update": "2025-06-13 18:44:06", - "author_account_age_days": 874 + "author_account_age_days": 882 }, "https://github.com/yushan777/ComfyUI-Y7Nodes": { "stars": 3, "last_update": "2025-06-14 19:55:01", - "author_account_age_days": 874 + "author_account_age_days": 882 }, "https://github.com/yuvraj108c/ComfyUI-Depth-Anything-Tensorrt": { - "stars": 104, + "stars": 105, "last_update": "2025-05-20 08:34:27", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt": { - "stars": 30, + "stars": 31, "last_update": "2025-05-03 19:32:24", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-FLOAT": { - "stars": 179, + "stars": 188, "last_update": "2025-05-28 07:27:16", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Facerestore-Tensorrt": { - "stars": 19, + "stars": 20, "last_update": "2024-09-22 13:07:19", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-PiperTTS": { "stars": 28, "last_update": "2024-05-22 23:17:27", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Pronodes": { "stars": 3, "last_update": "2025-01-05 10:06:31", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Rife-Tensorrt": { "stars": 17, "last_update": "2024-10-04 10:23:26", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Thera": { "stars": 35, "last_update": "2025-05-01 07:52:54", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Upscaler-Tensorrt": { - "stars": 133, + "stars": 134, "last_update": "2025-05-03 17:15:09", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Video-Depth-Anything": { - "stars": 27, + "stars": 28, "last_update": "2025-05-01 09:04:25", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Vsgan": { "stars": 3, "last_update": "2024-05-22 23:17:02", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-Whisper": { - "stars": 114, + "stars": 115, "last_update": "2025-05-02 07:59:15", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI-YoloNasPose-Tensorrt": { "stars": 13, "last_update": "2024-06-28 15:59:14", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yuvraj108c/ComfyUI_InvSR": { - "stars": 209, + "stars": 210, "last_update": "2025-04-30 08:19:02", - "author_account_age_days": 2509 + "author_account_age_days": 2517 }, "https://github.com/yvann-ba/ComfyUI_Yvann-Nodes": { - "stars": 437, + "stars": 441, "last_update": "2025-06-02 12:11:14", - "author_account_age_days": 1256 + "author_account_age_days": 1264 }, "https://github.com/za-wa-n-go/ComfyUI_Zwng_Nodes": { "stars": 7, "last_update": "2025-03-27 23:13:16", - "author_account_age_days": 945 + "author_account_age_days": 953 }, "https://github.com/zaheenrahman/ComfyUI-ColorCorrection": { "stars": 1, "last_update": "2025-03-21 09:52:29", - "author_account_age_days": 2717 + "author_account_age_days": 2725 }, "https://github.com/zakantonio/AvatarGen-experience": { "stars": 0, "last_update": "2025-03-26 20:58:18", - "author_account_age_days": 4133 + "author_account_age_days": 4141 }, "https://github.com/zccrs/comfyui-dci": { "stars": 1, "last_update": "2025-06-13 07:35:50", - "author_account_age_days": 3617 + "author_account_age_days": 3625 }, "https://github.com/zcfrank1st/Comfyui-Toolbox": { "stars": 6, "last_update": "2024-05-22 22:08:07", - "author_account_age_days": 4772 + "author_account_age_days": 4780 }, "https://github.com/zcfrank1st/Comfyui-Yolov8": { "stars": 25, "last_update": "2024-06-14 07:08:40", - "author_account_age_days": 4772 + "author_account_age_days": 4780 }, "https://github.com/zcfrank1st/comfyui_visual_anagrams": { "stars": 8, "last_update": "2024-06-14 07:07:27", - "author_account_age_days": 4772 + "author_account_age_days": 4780 }, "https://github.com/zentrocdot/ComfyUI-RealESRGAN_Upscaler": { "stars": 6, "last_update": "2025-02-09 18:27:16", - "author_account_age_days": 567 + "author_account_age_days": 575 }, "https://github.com/zentrocdot/ComfyUI-Simple_Image_To_Prompt": { "stars": 1, "last_update": "2025-02-20 06:30:19", - "author_account_age_days": 567 + "author_account_age_days": 575 }, "https://github.com/zentrocdot/ComfyUI_Circle_Detection": { "stars": 1, "last_update": "2025-02-07 17:32:46", - "author_account_age_days": 567 + "author_account_age_days": 575 }, "https://github.com/zer0TF/cute-comfy": { "stars": 35, "last_update": "2024-05-22 21:18:53", - "author_account_age_days": 3027 + "author_account_age_days": 3035 }, "https://github.com/zer0thgear/zer0-comfy-utils": { "stars": 0, "last_update": "2025-01-26 19:33:59", - "author_account_age_days": 473 + "author_account_age_days": 481 }, "https://github.com/zeroxoxo/ComfyUI-Fast-Style-Transfer": { "stars": 71, "last_update": "2025-04-07 05:52:19", - "author_account_age_days": 2800 + "author_account_age_days": 2808 }, "https://github.com/zfkun/ComfyUI_zfkun": { "stars": 21, "last_update": "2025-06-03 23:57:53", - "author_account_age_days": 5220 + "author_account_age_days": 5227 }, "https://github.com/zhangp365/ComfyUI-utils-nodes": { - "stars": 75, - "last_update": "2025-06-13 07:44:46", - "author_account_age_days": 648 + "stars": 77, + "last_update": "2025-06-24 08:35:19", + "author_account_age_days": 656 }, "https://github.com/zhangp365/ComfyUI_photomakerV2_native": { - "stars": 9, + "stars": 10, "last_update": "2025-04-07 10:58:52", - "author_account_age_days": 648 + "author_account_age_days": 656 }, "https://github.com/zhilemann/ComfyUI-moondream2": { "stars": 1, "last_update": "2024-12-29 13:17:31", - "author_account_age_days": 650 + "author_account_age_days": 658 }, "https://github.com/zhiselfly/ComfyUI-Alimama-ControlNet-compatible": { "stars": 18, "last_update": "2024-09-14 13:46:05", - "author_account_age_days": 3706 + "author_account_age_days": 3714 }, "https://github.com/zhongpei/ComfyUI-InstructIR": { "stars": 71, "last_update": "2024-05-22 23:19:43", - "author_account_age_days": 3816 + "author_account_age_days": 3824 }, "https://github.com/zhuanqianfish/ComfyUI-EasyNode": { "stars": 67, "last_update": "2024-06-14 07:10:18", - "author_account_age_days": 4592 + "author_account_age_days": 4599 }, "https://github.com/zhulu111/ComfyUI_Bxb": { - "stars": 1400, + "stars": 1407, "last_update": "2025-02-05 10:33:45", - "author_account_age_days": 396 + "author_account_age_days": 404 }, "https://github.com/zichongc/ComfyUI-Attention-Distillation": { "stars": 110, "last_update": "2025-03-18 02:48:42", - "author_account_age_days": 854 + "author_account_age_days": 862 }, "https://github.com/ziwang-com/comfyui-deepseek-r1": { "stars": 60, "last_update": "2025-02-02 14:24:35", - "author_account_age_days": 3733 + "author_account_age_days": 3741 }, "https://github.com/zmwv823/ComfyUI_Anytext": { - "stars": 81, + "stars": 82, "last_update": "2025-05-28 01:02:37", - "author_account_age_days": 3626 + "author_account_age_days": 3634 }, "https://github.com/zohac/ComfyUI_ZC_DrawShape": { "stars": 3, "last_update": "2024-06-25 15:05:28", - "author_account_age_days": 3018 + "author_account_age_days": 3026 }, "https://github.com/zombieyang/sd-ppp": { - "stars": 1508, - "last_update": "2025-06-08 15:09:14", - "author_account_age_days": 4274 + "stars": 1520, + "last_update": "2025-06-19 14:40:11", + "author_account_age_days": 4282 }, "https://github.com/zubenelakrab/ComfyUI-ASV-Nodes": { "stars": 1, "last_update": "2024-11-04 00:51:29", - "author_account_age_days": 5318 + "author_account_age_days": 5326 }, "https://github.com/zygion/comfyui-zygion-util-nodes": { "stars": 0, "last_update": "2025-04-26 05:11:35", - "author_account_age_days": 163 + "author_account_age_days": 171 }, "https://github.com/zzubnik/TT_TextTools": { "stars": 0, "last_update": "2025-04-02 23:40:24", - "author_account_age_days": 3082 + "author_account_age_days": 3090 }, "https://github.com/zzw5516/ComfyUI-zw-tools": { "stars": 1, "last_update": "2025-04-16 08:24:48", - "author_account_age_days": 4499 + "author_account_age_days": 4507 } } \ No newline at end of file diff --git a/node_db/dev/custom-node-list.json b/node_db/dev/custom-node-list.json index 3f451e83..a183b110 100644 --- a/node_db/dev/custom-node-list.json +++ b/node_db/dev/custom-node-list.json @@ -1,5 +1,245 @@ { "custom_nodes": [ + { + "author": "diogod", + "title": "Comfy Inpainting Works [WIP]", + "reference": "https://github.com/diodiogod/Comfy-Inpainting-Works", + "files": [ + "https://github.com/diodiogod/Comfy-Inpainting-Works" + ], + "install_type": "git-clone", + "description": "Go to the top menu>Workflow>Browse Templates. This is a collection of my Inpainting workflows for Flux (expanded and COMPACT) + others. Previously called: 'Proper Flux Control-Net inpainting and/or outpainting with batch size - Alimama or Flux Fill'. By installing this 'node' you can always keep them up to date by updating on the manager. This is not a new custom node. You will still need to install all other custom nodes used on the workflows. You will also find my 'Flux LoRA Block Weights Preset Tester' here as well.\nNOTE: The files in the repo are not organized." + }, + { + "author": "Malloc-pix", + "title": "comfyui-QwenVL", + "reference": "https://github.com/Malloc-pix/comfyui-QwenVL", + "files": [ + "https://github.com/Malloc-pix/comfyui-QwenVL" + ], + "install_type": "git-clone", + "description": "NODES: Qwen2.5VL, Qwen2.5" + }, + { + "author": "artifyfun", + "title": "ComfyUI-JS [UNSAFE]", + "reference": "https://github.com/artifyfun/ComfyUI-JS", + "files": [ + "https://github.com/artifyfun/ComfyUI-JS" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node capable of executing JavaScript code: it takes JavaScript code as input and outputs the execution result.[w/This extension has an XSS vulnerability that can be triggered through workflow execution.]" + }, + { + "author": "OgreLemonSoup", + "title": "ComfyUI-Notes-manager", + "reference": "https://github.com/OgreLemonSoup/ComfyUI-Notes-manager", + "files": [ + "https://github.com/OgreLemonSoup/ComfyUI-Notes-manager" + ], + "install_type": "git-clone", + "description": "This extension provides the note feature." + }, + { + "author": "WozStudios", + "title": "ComfyUI-WozNodes", + "reference": "https://github.com/WozStudios/ComfyUI-WozNodes", + "files": [ + "https://github.com/WozStudios/ComfyUI-WozNodes" + ], + "install_type": "git-clone", + "description": "NODES: Trim Image Batch, Create Image Batch, Select Image Batch by Mask" + }, + { + "author": "DDDDEEP", + "title": "ComfyUI-DDDDEEP", + "reference": "https://github.com/DDDDEEP/ComfyUI-DDDDEEP", + "files": [ + "https://github.com/DDDDEEP/ComfyUI-DDDDEEP" + ], + "install_type": "git-clone", + "description": "NODES: AutoWidthHeight, ReturnIntSeed, OppositeBool, PromptItemCollection" + }, + { + "author": "stalkervr", + "title": "comfyui-custom-path-nodes [UNSAFE]", + "reference": "https://github.com/stalkervr/comfyui-custom-path-nodes", + "files": [ + "https://github.com/stalkervr/comfyui-custom-path-nodes" + ], + "install_type": "git-clone", + "description": "Nodes for path handling and image cropping.[w/This nodepack has a vulnerability that allows remote access to arbitrary file paths.]" + }, + { + "author": "vovler", + "title": "comfyui-vovlertools", + "reference": "https://github.com/vovler/ComfyUI-vovlerTools", + "files": [ + "https://github.com/vovler/ComfyUI-vovlerTools" + ], + "install_type": "git-clone", + "description": "Advanced ComfyUI nodes for WD14 tagging, image filtering, and CLIP to TensorRT conversion" + }, + { + "author": "ELiZswe", + "title": "ComfyUI-ELiZTools", + "reference": "https://github.com/ELiZswe/ComfyUI-ELiZTools", + "files": [ + "https://github.com/ELiZswe/ComfyUI-ELiZTools" + ], + "install_type": "git-clone", + "description": "ELIZ Tools" + }, + { + "author": "yamanacn", + "title": "comfyui_qwenbbox", + "reference": "https://github.com/yamanacn/comfyui_qwenbbox", + "files": [ + "https://github.com/yamanacn/comfyui_qwenbbox" + ], + "install_type": "git-clone", + "description": "NODES: Load Qwen Model (v2), Qwen Bbox Detection, Prepare BBox for SAM (v2)" + }, + { + "author": "mikheys", + "title": "ComfyUI-mikheys", + "reference": "https://github.com/mikheys/ComfyUI-mikheys", + "files": [ + "https://github.com/mikheys/ComfyUI-mikheys" + ], + "install_type": "git-clone", + "description": "NODES: WAN Optimal Resolution Selector, WAN Show Image Dimensions" + }, + { + "author": "iacoposk8", + "title": "ComfyUI XOR Pickle Nodes", + "reference": "https://github.com/iacoposk8/xor_pickle_nodes", + "files": [ + "https://github.com/iacoposk8/xor_pickle_nodes" + ], + "install_type": "git-clone", + "description": "Two custom nodes for ComfyUI that allow you to encrypt and decrypt Python objects using simple XOR encryption with pickle." + }, + { + "author": "Aryan185", + "title": "ComfyUI-ReplicateFluxKontext", + "reference": "https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext", + "files": [ + "https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext" + ], + "install_type": "git-clone", + "description": "ComfyUI node for Flux Kontext Pro and Max models from Replicate" + }, + { + "author": "yamanacn", + "title": "comfyui_qwen_object [WIP]", + "reference": "https://github.com/yamanacn/comfyui_qwen_object", + "files": [ + "https://github.com/yamanacn/comfyui_qwen_object" + ], + "install_type": "git-clone", + "description": "This is a custom node for ComfyUI that integrates the Qwen vision model for tasks such as object detection.\nNOTE: The files in the repo are not organized." + }, + { + "author": "neverbiasu", + "title": "ComfyUI-Show-o [WIP]", + "reference": "https://github.com/neverbiasu/ComfyUI-Show-o", + "files": [ + "https://github.com/neverbiasu/ComfyUI-Show-o" + ], + "install_type": "git-clone", + "description": "NODES: Show-o Model Loader, Show-o Text to Image, Show-o Image Captioning, Show-o Image Inpainting" + }, + { + "author": "visualbruno", + "title": "ComfyUI-Hunyuan3d-2-1", + "reference": "https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1", + "files": [ + "https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1" + ], + "install_type": "git-clone", + "description": "NODES: Hunyuan 3D 2.1 Mesh Generator, Hunyuan 3D 2.1 MultiViews Generator, Hunyuan 3D 2.1 Bake MultiViews, Hunyuan 3D 2.1 InPaint, Hunyuan 3D 2.1 Camera Config" + }, + { + "author": "zyquon", + "title": "ComfyUI Stash", + "reference": "https://github.com/zyquon/ComfyUI-Stash", + "files": [ + "https://github.com/zyquon/ComfyUI-Stash" + ], + "install_type": "git-clone", + "description": "Nodes to use Stash within Comfy workflows" + }, + { + "author": "tankenyuen-ola", + "title": "comfyui-env-variable-reader [UNSAFE]", + "reference": "https://github.com/tankenyuen-ola/comfyui-env-variable-reader", + "files": [ + "https://github.com/tankenyuen-ola/comfyui-env-variable-reader" + ], + "install_type": "git-clone", + "description": "NODES: Environment Variable Reader [w/Installing this node may expose environment variables that contain sensitive information such as API keys.]" + }, + { + "author": "ftf001-tech", + "title": "ComfyUI-Lucian [WIP]", + "reference": "https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector", + "files": [ + "https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector" + ], + "install_type": "git-clone", + "description": "These nodes allow you to configure LLM API connections, send images with custom prompts, and convert the LLM's JSON bounding box responses into a format compatible with segmentation nodes like SAM2\nNOTE: The files in the repo are not organized." + }, + { + "author": "LucianGnn", + "title": "ComfyUI-Lucian [WIP]", + "reference": "https://github.com/LucianGnn/ComfyUI-Lucian", + "files": [ + "https://github.com/LucianGnn/ComfyUI-Lucian" + ], + "install_type": "git-clone", + "description": "NODES: Audio Duration Calculator\nNOTE: The files in the repo are not organized." + }, + { + "author": "akatz-ai", + "title": "ComfyUI-Execution-Inversion", + "reference": "https://github.com/akatz-ai/ComfyUI-Execution-Inversion", + "files": [ + "https://github.com/akatz-ai/ComfyUI-Execution-Inversion" + ], + "install_type": "git-clone", + "description": "Contains nodes related to the new execution inversion engine in ComfyUI. Node pack originally from [a/https://github.com/BadCafeCode/execution-inversion-demo-comfyui](https://github.com/BadCafeCode/execution-inversion-demo-comfyui)" + }, + { + "author": "mamorett", + "title": "comfyui_minicpm_vision", + "reference": "https://github.com/mamorett/comfyui_minicpm_vision", + "files": [ + "https://github.com/mamorett/comfyui_minicpm_vision" + ], + "install_type": "git-clone", + "description": "NODES: MiniCPM Vision GGUF" + }, + { + "author": "BigStationW", + "title": "flowmatch_scheduler-comfyui", + "reference": "https://github.com/BigStationW/flowmatch_scheduler-comfyui", + "files": [ + "https://github.com/BigStationW/flowmatch_scheduler-comfyui" + ], + "install_type": "git-clone", + "description": "NODES: FlowMatchSigmas" + }, + { + "author": "casterpollux", + "title": "MiniMax-bmo", + "reference": "https://github.com/casterpollux/MiniMax-bmo", + "files": [ + "https://github.com/casterpollux/MiniMax-bmo" + ], + "install_type": "git-clone", + "description": "ComfyUI MiniMax Remover Node" + }, { "author": "franky519", "title": "ComfyUI Face Four Image Matcher [WIP]", @@ -13,9 +253,9 @@ { "author": "bleash-dev", "title": "Comfyui-Iddle-Checker", - "reference": "https://github.com/bleash-dev/Comfyui-Iddle-Checker", + "reference": "https://github.com/bleash-dev/Comfyui-Idle-Checker", "files": [ - "https://github.com/bleash-dev/Comfyui-Iddle-Checker" + "https://github.com/bleash-dev/Comfyui-Idle-Checker" ], "install_type": "git-clone", "description": "front extension for idle checker" @@ -68,7 +308,7 @@ "https://github.com/xzuyn/ComfyUI-xzuynodes" ], "install_type": "git-clone", - "description": "NODES: Last Frame Extractor" + "description": "NODES: First/Last Frame (XZ), Resize Image (Original KJ), Resize Image (XZ), CLIP Text Encode (XZ), Load CLIP (XZ), TripleCLIPLoader (XZ), WanImageToVideo (XZ)" }, { "author": "gilons", @@ -970,16 +1210,6 @@ "install_type": "git-clone", "description": "Compare and save unique workflows, count tokens in prompt, and other utility." }, - { - "author": "Maxed-Out-99", - "title": "ComfyUI-MaxedOut", - "reference": "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut", - "files": [ - "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut" - ], - "install_type": "git-clone", - "description": "Custom ComfyUI nodes used in Maxed Out workflows (SDXL, Flux, etc.)" - }, { "author": "VictorLopes643", "title": "ComfyUI-Video-Dataset-Tools [WIP]", @@ -2021,16 +2251,6 @@ "install_type": "git-clone", "description": "A lightweight node pack for ComfyUI that adds a few handy nodes that I use in my workflows" }, - { - "author": "markuryy", - "title": "ComfyUI Spiritparticle Nodes [WIP]", - "reference": "https://github.com/markuryy/comfyui-spiritparticle", - "files": [ - "https://github.com/markuryy/comfyui-spiritparticle" - ], - "install_type": "git-clone", - "description": "A node pack by spiritparticle." - }, { "author": "CeeVeeR", "title": "ComfyUi-Text-Tiler", @@ -2835,13 +3055,13 @@ }, { "author": "HuangYuChuh", - "title": "ComfyUI-DeepSeek-Toolkit [WIP]", - "reference": "https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit", + "title": "ComfyUI-LLMs-Toolkit [WIP]", + "reference": "https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit", "files": [ - "https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit" + "https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit" ], "install_type": "git-clone", - "description": "ComfyUI-DeepSeek-Toolkit is a deep learning toolkit for ComfyUI that integrates the DeepSeek Janus model, offering functionalities for image generation and image understanding.\nNOTE: The files in the repo are not organized." + "description": "Enhance your ComfyUI workflows with powerful LLMs! This custom node suite integrates DeepSeek, Qwen, and other leading Chinese LLMs directly into your ComfyUI environment. Create innovative AI-powered applications with a range of useful nodes designed to leverage the advanced capabilities of these LLMs for image generation, understanding, and more.\nNOTE: The files in the repo are not organized." }, { "author": "comfyuiblog", @@ -4027,8 +4247,8 @@ "files": [ "https://github.com/suncat2ps/ComfyUI-SaveImgNextcloud" ], - "description": "NODES:Save Image to Nextcloud", - "install_type": "git-clone" + "install_type": "git-clone", + "description": "NODES: Save Image to Nextcloud" }, { "author": "KoreTeknology", diff --git a/node_db/dev/extension-node-map.json b/node_db/dev/extension-node-map.json index 8f975d89..46fe3c44 100644 --- a/node_db/dev/extension-node-map.json +++ b/node_db/dev/extension-node-map.json @@ -148,29 +148,38 @@ ], "https://github.com/1hew/ComfyUI-1hewNodes": [ [ - "CoordinateExtract", "ImageAddLabel", - "ImageBBoxCrop", - "ImageBBoxPaste", + "ImageBatchToList", "ImageBlendModesByAlpha", "ImageBlendModesByCSS", + "ImageCropByMaskAlpha", "ImageCropEdge", "ImageCropSquare", - "ImageCropWithBBox", + "ImageCropWithBBoxMask", "ImageDetailHLFreqSeparation", "ImageEditStitch", + "ImageListAppend", + "ImageListToBatch", "ImageLumaMatte", + "ImagePasteByBBoxMask", "ImagePlot", "ImageResizeUniversal", "ImageSolid", "ImageTileMerge", "ImageTileSplit", - "MaskBBoxCrop", + "ListCustomFloat", + "ListCustomInt", + "ListCustomString", "MaskBatchMathOps", + "MaskBatchToList", + "MaskCropByBBoxMask", + "MaskListToBatch", "MaskMathOps", - "PathSelect", - "PromptExtract", - "SliderValueRangeMapping" + "PathBuild", + "RangeMapping", + "StringCoordinateToBBoxMask", + "StringCoordinateToBBoxes", + "TextCustomExtract" ], { "title_aux": "ComfyUI-1hewNodes [WIP]" @@ -293,6 +302,7 @@ "PDIMAGE_LongerSize", "PDIMAGE_Rename", "PDImageConcante", + "PDImageResize", "PDJSON_BatchJsonIncremental", "PDJSON_Group", "PD_CustomImageProcessor", @@ -300,6 +310,7 @@ "PD_ImageBatchSplitter", "PD_ImageInfo", "PD_Image_Crop_Location", + "PD_Image_Rotate_v1", "PD_Image_centerCrop", "PD_MASK_SELECTION", "PD_RemoveColorWords", @@ -666,7 +677,10 @@ "TS Files Downloader", "TS Qwen2.5", "TS Youtube Chapters", + "TSCropToMask", + "TSRestoreFromCrop", "TSWhisper", + "TS_DeflickerNode", "TS_FilePathLoader", "TS_Free_Video_Memory", "TS_ImageResize", @@ -758,6 +772,15 @@ "title_aux": "comfyui-face-remap [WIP]" } ], + "https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext": [ + [ + "FluxKontextMaxNode", + "FluxKontextProNode" + ], + { + "title_aux": "ComfyUI-ReplicateFluxKontext" + } + ], "https://github.com/BadCafeCode/execution-inversion-demo-comfyui": [ [ "AccumulateNode", @@ -845,6 +868,14 @@ "title_aux": "ComfyUI-Movie-Tools [WIP]" } ], + "https://github.com/BigStationW/flowmatch_scheduler-comfyui": [ + [ + "FlowMatchSigmas" + ], + { + "title_aux": "flowmatch_scheduler-comfyui" + } + ], "https://github.com/BinglongLi/ComfyUI_ToolsForAutomask": [ [ "Closing Mask", @@ -962,6 +993,7 @@ "https://github.com/Chargeuk/ComfyUI-vts-nodes": [ [ "VTS Add Text To list", + "VTS Calculate Upscale Amount", "VTS Clean Text", "VTS Clean Text List", "VTS Clear Ram", @@ -971,6 +1003,7 @@ "VTS Count Characters", "VTS Create Character Mask", "VTS Fix Image Tags", + "VTS Image Upscale With Model", "VTS Images Crop From Masks", "VTS Images Scale", "VTS Images Scale To Min", @@ -1615,17 +1648,27 @@ "title_aux": "ComfyUI-Extend-Resolution" } ], + "https://github.com/ELiZswe/ComfyUI-ELiZTools": [ + [ + "ELiZMeshUVWrap" + ], + { + "title_aux": "ComfyUI-ELiZTools" + } + ], "https://github.com/EQXai/ComfyUI_EQX": [ [ "CountFaces_EQX", "Extract Filename - EQX", "Extract LORA name - EQX", + "FaceDetectOut", "File Image Selector", "Load Prompt From File - EQX", "LoadRetinaFace_EQX", "LoraStackEQX_random", "NSFW Detector EQX", - "SaveImage_EQX" + "SaveImage_EQX", + "WorkFlow Check" ], { "title_aux": "ComfyUI_EQX" @@ -1889,7 +1932,7 @@ "title_aux": "This n that (Hapse)" } ], - "https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit": [ + "https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit": [ [ "DeepSeekImageAnalyst", "DeepSeekImageGeneration", @@ -1900,7 +1943,7 @@ "VideoFileUploader" ], { - "title_aux": "ComfyUI-DeepSeek-Toolkit [WIP]" + "title_aux": "ComfyUI-LLMs-Toolkit [WIP]" } ], "https://github.com/IfnotFr/ComfyUI-Ifnot-Pack": [ @@ -2219,6 +2262,14 @@ "title_aux": "ComfyUI simple ChatGPT completion [UNSAFE]" } ], + "https://github.com/LucianGnn/ComfyUI-Lucian": [ + [ + "AudioDurationCalculator" + ], + { + "title_aux": "ComfyUI-Lucian [WIP]" + } + ], "https://github.com/LyazS/ComfyUI-aznodes": [ [ "CrossFadeImageSequence", @@ -2330,6 +2381,7 @@ ], "https://github.com/MakkiShizu/ComfyUI-MakkiTools": [ [ + "AnyImageStitch", "AutoLoop_create_pseudo_loop_video", "Environment_INFO", "GetImageNthCount", @@ -2338,12 +2390,23 @@ "ImageHeigthStitch", "ImageWidthStitch", "MergeImageChannels", + "random_any", + "translator_m2m100", "translators" ], { "title_aux": "ComfyUI-MakkiTools" } ], + "https://github.com/Malloc-pix/comfyui-QwenVL": [ + [ + "Qwen2.5", + "Qwen2.5VL" + ], + { + "title_aux": "comfyui-QwenVL" + } + ], "https://github.com/ManuShamil/ComfyUI_BodyEstimation_Nodes": [ [ "CogitareLabsPoseIDExtractor" @@ -2362,18 +2425,6 @@ "title_aux": "ComfyUI-MoviePy" } ], - "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": [ - [ - "Flux Empty Latent Image", - "Flux Image Scale To Total Pixels (Flux Safe)", - "Image Scale To Total Pixels (SDXL Safe)", - "Prompt With Guidance (Flux)", - "Sdxl Empty Latent Image" - ], - { - "title_aux": "ComfyUI-MaxedOut" - } - ], "https://github.com/Maxim-Dey/ComfyUI-MaksiTools": [ [ "\ud83d\udd22 Return Boolean", @@ -3095,6 +3146,7 @@ "SDVN Pipe Out All", "SDVN QuadrupleCLIP Download", "SDVN Quick Menu", + "SDVN RGBA to RGB", "SDVN Run Python Code", "SDVN Run Test", "SDVN Save Text", @@ -3381,6 +3433,16 @@ "title_aux": "visuallabs_comfyui_nodes" } ], + "https://github.com/WozStudios/ComfyUI-WozNodes": [ + [ + "CreateImageBatch", + "ImageBatchSelectByMask", + "ImageBatchTrim" + ], + { + "title_aux": "ComfyUI-WozNodes" + } + ], "https://github.com/Yeonri/ComfyUI_LLM_Are_You_Listening": [ [ "AYL_API_Node", @@ -3522,6 +3584,7 @@ "PipemindSDXL15AspectRatio", "PipemindSaveImageWTxt", "PipemindShowText", + "PipemindShowTextFind", "PipemindTokenCounter", "RandomLineFromDropdown", "SelectLineFromDropdown", @@ -3535,6 +3598,7 @@ [ "Add Noise Module (Bending)", "Add Scalar Module (Bending)", + "Compute PCA", "ConditioningApplyOperation", "Custom Code Module", "Dilation Module (Bending)", @@ -3554,9 +3618,9 @@ "Model Bending (SD Layers)", "Model Inspector", "Model VAE Bending", + "Model VAE Inspector", "Multiply Scalar Module (Bending)", "NoiseVariations", - "PCAPrep", "Rotate Module (Bending)", "Scale Module (Bending)", "Sobel Module (Bending)", @@ -3584,6 +3648,36 @@ "title_aux": "etm_comfyui_nodes" } ], + "https://github.com/akatz-ai/ComfyUI-Execution-Inversion": [ + [ + "AccumulateNode", + "AccumulationGetItemNode", + "AccumulationGetLengthNode", + "AccumulationHeadNode", + "AccumulationSetItemNode", + "AccumulationTailNode", + "AccumulationToListNode", + "DebugPrint", + "ExecutionBlocker", + "ForLoopClose", + "ForLoopOpen", + "GetFloatFromList", + "GetIntFromList", + "IntegerListGeneratorNode", + "LazyConditional", + "LazyIndexSwitch", + "LazyMixImages", + "LazySwitch", + "ListToAccumulationNode", + "MakeListNode", + "WhileLoopClose", + "WhileLoopOpen", + "_ForLoopCounter" + ], + { + "title_aux": "ComfyUI-Execution-Inversion" + } + ], "https://github.com/aklevecz/ComfyUI-AutoPrompt": [ [ "OllamaChat", @@ -3605,12 +3699,15 @@ ], "https://github.com/alexgenovese/ComfyUI-Reica": [ [ - "InsertAnythingNode", "ReicaGCPReadImageNode", "ReicaGCPWriteImageNode", "ReicaHTTPNotification", - "ReicaReadImageUrl", + "ReicaInsertAnythingNode", + "ReicaLoadLoopImagesFromURLs", + "ReicaLoadLoopImagesFromURLsSkipErrors", "ReicaTextImageDisplay", + "ReicaTryOffDiffGenerator", + "ReicaTryOffDiffLoader", "ReicaURLImageLoader" ], { @@ -3760,6 +3857,14 @@ "title_aux": "ComfyUI Video Processing Nodes [WIP]" } ], + "https://github.com/artifyfun/ComfyUI-JS": [ + [ + "JavascriptExecutor" + ], + { + "title_aux": "ComfyUI-JS [UNSAFE]" + } + ], "https://github.com/artisanalcomputing/ComfyUI-Custom-Nodes": [ [ "RandomVideoMixer", @@ -4161,6 +4266,14 @@ "title_aux": "ComfyUI Signal Processing [WIP]" } ], + "https://github.com/casterpollux/MiniMax-bmo": [ + [ + "MinimaxRemoverBMO" + ], + { + "title_aux": "MiniMax-bmo" + } + ], "https://github.com/catboxanon/ComfyUI-Pixelsmith": [ [ "Pixelsmith" @@ -4506,6 +4619,8 @@ "ModelMergeBlocks", "ModelMergeCosmos14B", "ModelMergeCosmos7B", + "ModelMergeCosmosPredict2_14B", + "ModelMergeCosmosPredict2_2B", "ModelMergeFlux1", "ModelMergeLTXV", "ModelMergeMochiPreview", @@ -4589,6 +4704,7 @@ "RepeatImageBatch", "RepeatLatentBatch", "RescaleCFG", + "ResizeAndPadImage", "Rodin3D_Detail", "Rodin3D_Regular", "Rodin3D_Sketch", @@ -5200,6 +5316,16 @@ "title_aux": "ComfyUI-NovaKit-Pack" } ], + "https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector": [ + [ + "ExternalLLMDetectorBboxesConvert", + "ExternalLLMDetectorMainProcess", + "ExternalLLMDetectorSettings" + ], + { + "title_aux": "ComfyUI-Lucian [WIP]" + } + ], "https://github.com/gabe-init/ComfyUI-LM-Studio": [ [ "LMStudioNode" @@ -5417,9 +5543,9 @@ "XIS_INT_Slider", "XIS_IPAStyleSettings", "XIS_IfDataIsNone", + "XIS_ImageManager", "XIS_ImageMaskMirror", "XIS_ImageStitcher", - "XIS_ImagesToCanvas", "XIS_InvertMask", "XIS_IsThereAnyData", "XIS_KSamplerSettingsNode", @@ -5429,8 +5555,10 @@ "XIS_LoadImage", "XIS_MaskBatchProcessor", "XIS_MaskCompositeOperation", + "XIS_MergePackImages", "XIS_MultiPromptSwitch", "XIS_PSDLayerExtractor", + "XIS_PackImages", "XIS_PromptProcessor", "XIS_PromptsWithSwitches", "XIS_ReorderImageMaskGroups", @@ -5770,6 +5898,15 @@ "title_aux": "comfyui-copilot" } ], + "https://github.com/iacoposk8/xor_pickle_nodes": [ + [ + "Load XOR Pickle From File", + "Save XOR Pickle To File" + ], + { + "title_aux": "ComfyUI XOR Pickle Nodes" + } + ], "https://github.com/if-ai/ComfyUI-IF_Zonos": [ [ "IF_ZonosTTS" @@ -6369,7 +6506,9 @@ "WanVideoLoopArgs", "WanVideoLoraBlockEdit", "WanVideoLoraSelect", + "WanVideoLoraSelectMulti", "WanVideoMagCache", + "WanVideoMiniMaxRemoverEmbeds", "WanVideoModelLoader", "WanVideoPhantomEmbeds", "WanVideoReCamMasterCameraEmbed", @@ -6978,6 +7117,14 @@ "title_aux": "ComfyUI-SmolVLM [WIP]" } ], + "https://github.com/mamorett/comfyui_minicpm_vision": [ + [ + "MiniCPMVisionGGUF" + ], + { + "title_aux": "comfyui_minicpm_vision" + } + ], "https://github.com/marcueberall/ComfyUI-BuildPath": [ [ "Build Path Adv" @@ -7002,14 +7149,6 @@ "title_aux": "comfyui-marnodes" } ], - "https://github.com/markuryy/comfyui-spiritparticle": [ - [ - "FolderImageSelector" - ], - { - "title_aux": "ComfyUI Spiritparticle Nodes [WIP]" - } - ], "https://github.com/maruhidd/ComfyUI_Transparent-Background": [ [ "FillTransparentNode", @@ -7095,6 +7234,16 @@ "title_aux": "LaserCutterFull and Deptherize Nodes" } ], + "https://github.com/mikheys/ComfyUI-mikheys": [ + [ + "WanImageDimensions", + "WanOptimalResolution", + "\u0418\u043c\u044f\u0414\u043b\u044fComfyUI" + ], + { + "title_aux": "ComfyUI-mikheys" + } + ], "https://github.com/minhtuannhn/comfyui-gemini-studio": [ [ "GetFileNameFromURL" @@ -7168,10 +7317,12 @@ ], "https://github.com/moonwhaler/comfyui-moonpack": [ [ + "DynamicLoraStack", + "DynamicStringConcat", "ProportionalDimension", "RegexStringReplace", "SimpleStringReplace", - "VACELooperFrameScheduler" + "VACELooperFrameMaskCreator" ], { "title_aux": "comfyui-moonpack" @@ -7284,6 +7435,17 @@ "title_aux": "ComfyUI-DeepSeek" } ], + "https://github.com/neverbiasu/ComfyUI-Show-o": [ + [ + "ShowoImageCaptioning", + "ShowoImageInpainting", + "ShowoModelLoader", + "ShowoTextToImage" + ], + { + "title_aux": "ComfyUI-Show-o [WIP]" + } + ], "https://github.com/neverbiasu/ComfyUI-StereoCrafter": [ [ "DepthSplattingModelLoader", @@ -7367,6 +7529,7 @@ "Ino_IntEqual", "Ino_NotBoolean", "Ino_ParseFilePath", + "Ino_RandomCharacterPrompt", "Ino_SaveFile", "Ino_SaveImage", "Ino_VideoConvert" @@ -7699,6 +7862,10 @@ "TextMultiSave" ], { + "author": "kierdran", + "description": "Tools for agentic testing", + "nickname": "ai_tools", + "title": "AI_Tools", "title_aux": "ComfyUI-AI_Tools [UNSAFE]" } ], @@ -8119,6 +8286,7 @@ "InpaintCropImprovedGPU", "InpaintStitchImprovedGPU", "LoadStitcherFromFile", + "LogCRec709Convert", "SaveStitcherToFile", "SmoothTemporalMask", "WanVideoVACEExtend" @@ -8244,6 +8412,25 @@ "title_aux": "comfyui-lingshang" } ], + "https://github.com/stalkervr/comfyui-custom-path-nodes": [ + [ + "BatchImageCrop", + "ContextPipeIn", + "ContextPipeOut", + "ContextPipeReroute", + "ImageGridCropper", + "PathPipeIn", + "PathPipeOut", + "PathPipeReroute", + "PromptPartConcatenation", + "PromptPartJoin", + "SavePath", + "StringConcatenation" + ], + { + "title_aux": "comfyui-custom-path-nodes [UNSAFE]" + } + ], "https://github.com/steelan9199/ComfyUI-Teeth": [ [ "teeth FindContours", @@ -8334,6 +8521,14 @@ "title_aux": "ComfyUI-Rpg-Architect [WIP]" } ], + "https://github.com/tankenyuen-ola/comfyui-env-variable-reader": [ + [ + "EnvironmentVariableNode" + ], + { + "title_aux": "comfyui-env-variable-reader [UNSAFE]" + } + ], "https://github.com/tanmoy-it/comfyuiCustomNode": [ [ "DownloadImageDataUrl" @@ -8633,6 +8828,23 @@ "title_aux": "comfyui-virallover" } ], + "https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1": [ + [ + "Hy3D21CameraConfig", + "Hy3D21LoadImageWithTransparency", + "Hy3D21ResizeImages", + "Hy3D21VAEConfig", + "Hy3D21VAEDecode", + "Hy3D21VAELoader", + "Hy3DBakeMultiViews", + "Hy3DInPaint", + "Hy3DMeshGenerator", + "Hy3DMultiViewsGenerator" + ], + { + "title_aux": "ComfyUI-Hunyuan3d-2-1" + } + ], "https://github.com/vladp0727/Comfyui-with-Furniture": [ [ "GetMaskFromAlpha", @@ -8642,6 +8854,17 @@ "title_aux": "ComfyUI Simple Image Tools [WIP]" } ], + "https://github.com/vovler/ComfyUI-vovlerTools": [ + [ + "WD14BlackListLoader", + "WD14TaggerAndImageFilterer", + "WD14TensorRTModelLoader", + "WDTaggerONNXtoTENSORRT" + ], + { + "title_aux": "comfyui-vovlertools" + } + ], "https://github.com/wTechArtist/ComfyUI_VVL_SAM2": [ [ "SAM1AutoEverything", @@ -8912,7 +9135,13 @@ ], "https://github.com/xzuyn/ComfyUI-xzuynodes": [ [ - "LastFrameNode" + "CLIPLoaderXZ", + "CLIPTextEncodeXZ", + "FirstLastFrameXZ", + "ImageResizeKJ", + "ImageResizeXZ", + "TripleCLIPLoaderXZ", + "WanImageToVideoXZ" ], { "title_aux": "xzuynodes-ComfyUI" @@ -8927,6 +9156,27 @@ "title_aux": "ComfyUI-Direct3DS2 [WIP]" } ], + "https://github.com/yamanacn/comfyui_qwen_object": [ + [ + "BBoxToSAM", + "DetectObject", + "LoadQwenModel", + "SortBBox" + ], + { + "title_aux": "comfyui_qwen_object [WIP]" + } + ], + "https://github.com/yamanacn/comfyui_qwenbbox": [ + [ + "BBoxToSAM_v2", + "LoadQwenModel_v2", + "QwenBbox" + ], + { + "title_aux": "comfyui_qwenbbox" + } + ], "https://github.com/yanhuifair/ComfyUI-FairLab": [ [ "AppendTagsNode", @@ -9101,6 +9351,7 @@ ], "https://github.com/zackabrams/ComfyUI-KeySyncWrapper": [ [ + "KeySyncAdvanced", "KeySyncWrapper" ], { diff --git a/node_db/dev/github-stats.json b/node_db/dev/github-stats.json index f4ed2f5c..41575905 100644 --- a/node_db/dev/github-stats.json +++ b/node_db/dev/github-stats.json @@ -2,3201 +2,3316 @@ "https://github.com/123jimin/ComfyUI-MobileForm": { "stars": 9, "last_update": "2025-04-06 13:36:29", - "author_account_age_days": 5122 + "author_account_age_days": 5130 }, "https://github.com/17Retoucher/ComfyUI_Fooocus": { "stars": 57, "last_update": "2024-02-24 07:33:29", - "author_account_age_days": 528 + "author_account_age_days": 536 }, "https://github.com/1hew/ComfyUI-1hewNodes": { "stars": 3, - "last_update": "2025-06-14 10:38:47", - "author_account_age_days": 805 + "last_update": "2025-06-24 09:34:18", + "author_account_age_days": 813 }, "https://github.com/3dmindscapper/ComfyUI-PartField": { "stars": 30, "last_update": "2025-05-01 02:50:39", - "author_account_age_days": 761 + "author_account_age_days": 769 }, "https://github.com/3dmindscapper/ComfyUI-Sam-Mesh": { - "stars": 30, + "stars": 31, "last_update": "2025-05-07 12:42:13", - "author_account_age_days": 761 + "author_account_age_days": 769 }, "https://github.com/438443467/ComfyUI-SanMian-Nodes": { "stars": 27, "last_update": "2025-04-29 10:29:07", - "author_account_age_days": 771 + "author_account_age_days": 779 }, "https://github.com/5x00/ComfyUI-Prompt-Plus": { "stars": 1, "last_update": "2025-01-08 15:54:08", - "author_account_age_days": 1328 + "author_account_age_days": 1336 }, "https://github.com/7BEII/Comfyui_PDuse": { "stars": 5, - "last_update": "2025-06-15 03:25:34", - "author_account_age_days": 170 + "last_update": "2025-06-16 13:56:22", + "author_account_age_days": 178 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": { "stars": 1, "last_update": "2024-12-30 10:45:23", - "author_account_age_days": 829 + "author_account_age_days": 837 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod": { "stars": 0, - "last_update": "2025-06-14 14:12:28", - "author_account_age_days": 829 + "last_update": "2025-06-23 23:42:45", + "author_account_age_days": 837 }, "https://github.com/A719689614/ComfyUI_AC_FUNV8Beta1": { "stars": 13, - "last_update": "2024-03-08 10:11:44", - "author_account_age_days": 671 + "last_update": "2025-06-17 02:04:04", + "author_account_age_days": 679 }, "https://github.com/AICodeFactory/ComfyUI-Viva": { "stars": 1, "last_update": "2025-05-15 08:07:12", - "author_account_age_days": 425 + "author_account_age_days": 433 }, "https://github.com/AIFSH/ComfyUI-OpenDIT": { "stars": 0, "last_update": "2024-06-30 09:33:55", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/ComfyUI-ViViD": { "stars": 5, "last_update": "2024-06-25 08:16:53", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/HivisionIDPhotos-ComfyUI": { - "stars": 148, + "stars": 149, "last_update": "2024-09-16 14:16:06", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/IMAGDressing-ComfyUI": { "stars": 61, "last_update": "2024-11-14 01:44:02", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/UltralightDigitalHuman-ComfyUI": { "stars": 128, "last_update": "2024-11-25 11:39:23", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AIFSH/UtilNodes-ComfyUI": { - "stars": 13, + "stars": 14, "last_update": "2024-12-19 06:44:25", - "author_account_age_days": 588 + "author_account_age_days": 596 }, "https://github.com/AJO-reading/ComfyUI-AjoNodes": { - "stars": 3, + "stars": 7, "last_update": "2025-06-16 08:10:10", - "author_account_age_days": 206 + "author_account_age_days": 214 }, "https://github.com/ALatentPlace/ComfyUI_yanc": { "stars": 63, "last_update": "2025-01-22 14:44:17", - "author_account_age_days": 1816 + "author_account_age_days": 1825 }, "https://github.com/APZmedia/comfyui-textools": { "stars": 4, "last_update": "2024-09-02 09:17:36", - "author_account_age_days": 2834 + "author_account_age_days": 2842 }, "https://github.com/AhBumm/ComfyUI-Upscayl": { "stars": 0, "last_update": "2025-02-19 09:41:02", - "author_account_age_days": 1166 + "author_account_age_days": 1174 }, "https://github.com/AhBumm/ComfyUI_MangaLineExtraction-hf": { "stars": 0, "last_update": "2025-05-02 18:47:09", - "author_account_age_days": 1166 + "author_account_age_days": 1174 }, "https://github.com/AkiEvansDev/ComfyUI-Tools": { "stars": 0, "last_update": "2025-06-01 19:15:57", - "author_account_age_days": 2675 + "author_account_age_days": 2683 }, "https://github.com/Alazuaka/comfyui-lora-stack-node": { "stars": 0, "last_update": "2025-06-12 23:14:31", - "author_account_age_days": 1143 + "author_account_age_days": 1151 }, "https://github.com/AlejandroTuzzi/TUZZI-ByPass": { "stars": 5, "last_update": "2025-05-13 14:04:56", - "author_account_age_days": 1601 + "author_account_age_days": 1609 }, "https://github.com/AlexXi19/ComfyUI-OpenAINode": { "stars": 1, "last_update": "2025-01-13 18:43:22", - "author_account_age_days": 1787 + "author_account_age_days": 1795 }, "https://github.com/AlexYez/comfyui-timesaver": { "stars": 0, - "last_update": "2025-06-15 10:45:02", - "author_account_age_days": 1512 + "last_update": "2025-06-23 09:07:06", + "author_account_age_days": 1520 }, "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes": { "stars": 3, "last_update": "2025-06-12 23:48:01", - "author_account_age_days": 2462 + "author_account_age_days": 2470 }, "https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds": { "stars": 0, "last_update": "2025-01-11 21:13:41", - "author_account_age_days": 4058 + "author_account_age_days": 4066 }, "https://github.com/Anonymzx/ComfyUI-Indonesia-TTS": { "stars": 0, "last_update": "2025-05-07 14:33:50", - "author_account_age_days": 2186 + "author_account_age_days": 2194 }, "https://github.com/Anze-/ComfyUI-OIDN": { "stars": 8, "last_update": "2024-11-27 18:05:41", - "author_account_age_days": 4311 + "author_account_age_days": 4319 }, "https://github.com/Anze-/ComfyUI_deepDeband": { "stars": 3, "last_update": "2024-11-12 19:13:59", - "author_account_age_days": 4311 + "author_account_age_days": 4319 }, "https://github.com/ArmandAlbert/Kwai_font_comfyui": { "stars": 1, "last_update": "2025-01-14 04:02:21", - "author_account_age_days": 2349 + "author_account_age_days": 2357 }, "https://github.com/ArthusLiang/comfyui-face-remap": { "stars": 4, "last_update": "2024-11-30 12:34:28", - "author_account_age_days": 4373 + "author_account_age_days": 4381 + }, + "https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext": { + "stars": 0, + "last_update": "2025-06-20 06:02:51", + "author_account_age_days": 1537 }, "https://github.com/AustinMroz/ComfyUI-MinCache": { "stars": 2, "last_update": "2024-12-25 18:52:07", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/AustinMroz/ComfyUI-WorkflowCheckpointing": { "stars": 11, "last_update": "2024-10-17 19:59:40", - "author_account_age_days": 4431 + "author_account_age_days": 4439 }, "https://github.com/BadCafeCode/execution-inversion-demo-comfyui": { - "stars": 69, + "stars": 73, "last_update": "2025-03-09 00:44:37", - "author_account_age_days": 787 + "author_account_age_days": 795 }, "https://github.com/BaronVonBoolean/ComfyUI-FileOps": { "stars": 0, "last_update": "2024-12-22 18:04:20", - "author_account_age_days": 195 + "author_account_age_days": 203 }, "https://github.com/Beinsezii/comfyui-amd-go-fast": { - "stars": 42, + "stars": 41, "last_update": "2025-04-21 19:37:22", - "author_account_age_days": 2583 + "author_account_age_days": 2591 }, "https://github.com/BenjaMITM/ComfyUI_On_The_Fly_Wildcards": { "stars": 0, "last_update": "2024-11-20 06:17:53", - "author_account_age_days": 304 + "author_account_age_days": 312 }, "https://github.com/BetaDoggo/ComfyUI-LogicGates": { "stars": 3, "last_update": "2024-07-21 06:31:25", - "author_account_age_days": 1154 + "author_account_age_days": 1162 }, "https://github.com/Big-Idea-Technology/ComfyUI-Movie-Tools": { - "stars": 2, + "stars": 3, "last_update": "2024-11-29 11:13:57", - "author_account_age_days": 1228 + "author_account_age_days": 1236 + }, + "https://github.com/BigStationW/flowmatch_scheduler-comfyui": { + "stars": 11, + "last_update": "2025-06-17 13:31:03", + "author_account_age_days": 51 }, "https://github.com/BinglongLi/ComfyUI_ToolsForAutomask": { "stars": 1, "last_update": "2025-06-04 11:56:53", - "author_account_age_days": 2042 + "author_account_age_days": 2050 }, "https://github.com/BlueDangerX/ComfyUI-BDXNodes": { "stars": 1, "last_update": "2023-12-10 04:01:19", - "author_account_age_days": 603 + "author_account_age_days": 611 }, "https://github.com/BobRandomNumber/ComfyUI-DiaTTS": { - "stars": 7, + "stars": 8, "last_update": "2025-06-02 03:02:19", - "author_account_age_days": 200 + "author_account_age_days": 208 }, "https://github.com/Brandelan/ComfyUI_bd_customNodes": { "stars": 2, "last_update": "2024-09-08 01:04:38", - "author_account_age_days": 4508 + "author_account_age_days": 4516 }, "https://github.com/BuffMcBigHuge/ComfyUI-Buff-Nodes": { "stars": 2, "last_update": "2025-05-21 02:59:22", - "author_account_age_days": 3269 + "author_account_age_days": 3277 }, "https://github.com/Burgstall-labs/ComfyUI-BS_FalAi-API-Video": { "stars": 3, - "last_update": "2025-05-27 14:05:44", - "author_account_age_days": 148 + "last_update": "2025-06-19 06:47:25", + "author_account_age_days": 156 }, "https://github.com/COcisuts/CObot-ComfyUI-WhisperToTranscription": { "stars": 0, "last_update": "2025-06-08 13:32:25", - "author_account_age_days": 2973 + "author_account_age_days": 2981 }, "https://github.com/CY-CHENYUE/ComfyUI-FramePack-HY": { "stars": 18, "last_update": "2025-05-08 09:38:09", - "author_account_age_days": 555 + "author_account_age_days": 563 }, "https://github.com/CeeVeeR/ComfyUi-Text-Tiler": { "stars": 0, "last_update": "2025-03-25 20:26:18", - "author_account_age_days": 1430 + "author_account_age_days": 1438 }, "https://github.com/Chargeuk/ComfyUI-vts-nodes": { "stars": 0, - "last_update": "2025-06-15 16:05:55", - "author_account_age_days": 4464 + "last_update": "2025-06-22 17:05:09", + "author_account_age_days": 4472 }, "https://github.com/Charonartist/ComfyUI-send-eagle-pro_2": { "stars": 0, "last_update": "2025-05-26 12:12:47", - "author_account_age_days": 351 + "author_account_age_days": 359 }, "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File": { "stars": 3, - "last_update": "2024-09-02 02:30:05", - "author_account_age_days": 2769 + "last_update": "2025-06-19 03:10:17", + "author_account_age_days": 2777 }, "https://github.com/Clelstyn/ComfyUI-Inpaint_with_Detailer": { "stars": 1, "last_update": "2024-11-02 12:04:53", - "author_account_age_days": 675 + "author_account_age_days": 683 }, "https://github.com/Clybius/ComfyUI-FluxDeCLIP": { "stars": 1, "last_update": "2024-11-17 20:06:29", - "author_account_age_days": 2090 + "author_account_age_days": 2098 }, "https://github.com/Comfy-Org/ComfyUI_devtools": { "stars": 19, "last_update": "2025-05-10 16:23:35", - "author_account_age_days": 432 + "author_account_age_days": 440 }, "https://github.com/ComfyUI-Workflow/ComfyUI-OpenAI": { - "stars": 25, + "stars": 26, "last_update": "2024-10-07 08:25:18", - "author_account_age_days": 254 + "author_account_age_days": 262 }, "https://github.com/D1-3105/ComfyUI-VideoStream": { "stars": 0, "last_update": "2025-02-17 04:02:01", - "author_account_age_days": 1860 + "author_account_age_days": 1868 + }, + "https://github.com/DDDDEEP/ComfyUI-DDDDEEP": { + "stars": 0, + "last_update": "2025-06-22 03:03:32", + "author_account_age_days": 2868 }, "https://github.com/DataCTE/ComfyUI-DataVoid-nodes": { "stars": 0, "last_update": "2024-11-20 14:20:31", - "author_account_age_days": 1134 + "author_account_age_days": 1142 }, "https://github.com/DeTK/ComfyUI-Switch": { "stars": 0, "last_update": "2024-03-04 11:52:04", - "author_account_age_days": 2388 + "author_account_age_days": 2396 }, "https://github.com/DoctorDiffusion/ComfyUI-Flashback": { "stars": 0, "last_update": "2024-11-11 01:37:43", - "author_account_age_days": 698 + "author_account_age_days": 706 }, "https://github.com/DonutsDelivery/ComfyUI-DonutNodes": { "stars": 6, - "last_update": "2025-06-15 10:57:50", - "author_account_age_days": 82 + "last_update": "2025-06-17 17:36:23", + "author_account_age_days": 90 }, "https://github.com/DrMWeigand/ComfyUI_LineBreakInserter": { "stars": 0, "last_update": "2024-04-19 11:37:19", - "author_account_age_days": 1389 + "author_account_age_days": 1397 }, "https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": { - "stars": 4, + "stars": 5, "last_update": "2025-06-09 19:31:11", - "author_account_age_days": 1730 + "author_account_age_days": 1738 }, "https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes": { "stars": 0, "last_update": "2025-06-14 06:14:05", - "author_account_age_days": 1223 + "author_account_age_days": 1231 }, "https://github.com/Dreamshot-io/ComfyUI-Extend-Resolution": { "stars": 0, "last_update": "2025-06-02 07:15:00", - "author_account_age_days": 209 + "author_account_age_days": 217 + }, + "https://github.com/ELiZswe/ComfyUI-ELiZTools": { + "stars": 0, + "last_update": "2025-06-24 06:14:44", + "author_account_age_days": 2188 }, "https://github.com/EQXai/ComfyUI_EQX": { "stars": 0, - "last_update": "2025-06-15 22:22:12", - "author_account_age_days": 384 + "last_update": "2025-06-18 14:21:53", + "author_account_age_days": 392 }, "https://github.com/Eagle-CN/ComfyUI-Addoor": { "stars": 50, "last_update": "2025-04-25 01:03:58", - "author_account_age_days": 2984 + "author_account_age_days": 2992 }, "https://github.com/Elawphant/ComfyUI-MusicGen": { "stars": 6, "last_update": "2024-05-11 13:33:24", - "author_account_age_days": 2945 + "author_account_age_days": 2953 }, "https://github.com/Elypha/ComfyUI-Prompt-Helper": { "stars": 0, "last_update": "2025-03-03 21:42:14", - "author_account_age_days": 2889 + "author_account_age_days": 2897 }, "https://github.com/EmanueleUniroma2/ComfyUI-FLAC-to-WAV": { "stars": 0, "last_update": "2025-01-26 11:25:43", - "author_account_age_days": 3002 + "author_account_age_days": 3010 }, "https://github.com/EmilioPlumed/ComfyUI-Math": { "stars": 1, "last_update": "2025-01-11 14:28:42", - "author_account_age_days": 2335 + "author_account_age_days": 2343 }, "https://github.com/EricRollei/Comfy-Metadata-System": { "stars": 0, "last_update": "2025-04-28 23:42:26", - "author_account_age_days": 1251 + "author_account_age_days": 1259 }, "https://github.com/ExponentialML/ComfyUI_LiveDirector": { "stars": 37, "last_update": "2024-04-09 19:01:49", - "author_account_age_days": 1980 + "author_account_age_days": 1988 }, "https://github.com/Extraltodeus/Conditioning-token-experiments-for-ComfyUI": { "stars": 18, "last_update": "2024-03-10 01:04:02", - "author_account_age_days": 3506 + "author_account_age_days": 3514 }, "https://github.com/FaberVS/MultiModel": { "stars": 1, "last_update": "2025-05-06 14:27:08", - "author_account_age_days": 2128 + "author_account_age_days": 2136 }, "https://github.com/Fannovel16/ComfyUI-AppIO": { "stars": 0, "last_update": "2024-12-01 16:37:19", - "author_account_age_days": 3488 + "author_account_age_days": 3497 }, "https://github.com/FinetunersAI/comfyui-fast-group-link": { "stars": 0, "last_update": "2024-12-09 17:35:50", - "author_account_age_days": 378 + "author_account_age_days": 386 }, "https://github.com/FinetunersAI/finetuners": { "stars": 1, "last_update": "2025-01-06 16:29:33", - "author_account_age_days": 378 + "author_account_age_days": 386 }, "https://github.com/FoundD-oka/ComfyUI-kisekae-OOTD": { "stars": 0, "last_update": "2024-06-02 06:13:42", - "author_account_age_days": 794 + "author_account_age_days": 802 }, "https://github.com/Fucci-Mateo/ComfyUI-Airtable": { "stars": 1, "last_update": "2024-06-25 13:35:18", - "author_account_age_days": 1235 + "author_account_age_days": 1243 }, "https://github.com/GalactusX31/ComfyUI-FileBrowserAPI": { "stars": 4, "last_update": "2025-06-13 20:53:11", - "author_account_age_days": 2683 + "author_account_age_days": 2691 }, "https://github.com/GentlemanHu/ComfyUI-Notifier": { "stars": 4, "last_update": "2024-07-14 15:38:44", - "author_account_age_days": 2740 + "author_account_age_days": 2748 }, "https://github.com/George0726/ComfyUI-video-accessory": { "stars": 1, "last_update": "2025-05-19 14:18:22", - "author_account_age_days": 2608 + "author_account_age_days": 2616 }, "https://github.com/Good-Dream-Studio/ComfyUI-Connect": { "stars": 15, "last_update": "2025-05-18 09:30:10", - "author_account_age_days": 93 + "author_account_age_days": 101 }, "https://github.com/Grant-CP/ComfyUI-LivePortraitKJ-MPS": { "stars": 12, "last_update": "2024-07-11 22:04:16", - "author_account_age_days": 1530 + "author_account_age_days": 1538 }, "https://github.com/Grey3016/Save2Icon": { "stars": 2, "last_update": "2025-01-06 15:18:57", - "author_account_age_days": 685 + "author_account_age_days": 693 }, "https://github.com/GrindHouse66/ComfyUI-GH_Tools": { "stars": 0, "last_update": "2024-03-10 13:27:14", - "author_account_age_days": 981 + "author_account_age_days": 989 }, "https://github.com/Hapseleg/ComfyUI-This-n-That": { "stars": 0, "last_update": "2025-06-03 20:26:27", - "author_account_age_days": 3652 + "author_account_age_days": 3660 }, "https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit": { "stars": 12, - "last_update": "2025-03-06 08:27:47", - "author_account_age_days": 421 + "last_update": "2025-06-23 09:42:46", + "author_account_age_days": 429 + }, + "https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit": { + "stars": 12, + "last_update": "2025-06-23 09:42:46", + "author_account_age_days": 429 }, "https://github.com/IfnotFr/ComfyUI-Ifnot-Pack": { "stars": 1, "last_update": "2025-02-05 08:51:23", - "author_account_age_days": 4941 + "author_account_age_days": 4949 }, "https://github.com/IgPoly/ComfyUI-igTools": { "stars": 0, "last_update": "2024-09-11 08:48:57", - "author_account_age_days": 284 + "author_account_age_days": 292 }, "https://github.com/IsItDanOrAi/ComfyUI-exLoadout": { "stars": 0, "last_update": "2025-06-09 23:35:57", - "author_account_age_days": 468 + "author_account_age_days": 476 }, "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": { - "stars": 182, + "stars": 183, "last_update": "2025-04-02 16:32:54", - "author_account_age_days": 768 + "author_account_age_days": 776 }, "https://github.com/IvanZhd/comfyui-codeformer": { "stars": 0, "last_update": "2023-12-02 20:51:52", - "author_account_age_days": 2935 + "author_account_age_days": 2943 }, "https://github.com/Jaxkr/comfyui-terminal-command": { "stars": 1, "last_update": "2023-12-03 10:31:40", - "author_account_age_days": 4984 + "author_account_age_days": 4992 }, "https://github.com/JayLyu/ComfyUI_BaiKong_Node": { "stars": 8, "last_update": "2025-03-31 14:22:51", - "author_account_age_days": 3625 + "author_account_age_days": 3633 }, "https://github.com/Jiffies-64/ComfyUI-SaveImagePlus": { "stars": 0, "last_update": "2024-04-01 10:52:59", - "author_account_age_days": 1248 + "author_account_age_days": 1256 }, "https://github.com/Jingwen-genies/comfyui-genies-nodes": { "stars": 0, "last_update": "2025-05-13 19:36:45", - "author_account_age_days": 690 + "author_account_age_days": 698 }, "https://github.com/JissiChoi/ComfyUI-Jissi-List": { "stars": 0, "last_update": "2024-12-24 08:24:27", - "author_account_age_days": 2575 + "author_account_age_days": 2583 }, "https://github.com/JoeAu/ComfyUI-PythonNode": { "stars": 3, "last_update": "2025-03-16 13:05:38", - "author_account_age_days": 4543 + "author_account_age_days": 4551 }, "https://github.com/Jordach/comfy-consistency-vae": { "stars": 69, "last_update": "2023-11-06 20:50:40", - "author_account_age_days": 4869 + "author_account_age_days": 4878 }, "https://github.com/Junst/ComfyUI-PNG2SVG2PNG": { "stars": 0, "last_update": "2024-12-04 02:25:04", - "author_account_age_days": 2895 + "author_account_age_days": 2903 }, "https://github.com/KERRY-YUAN/ComfyUI_Python_Executor": { "stars": 1, "last_update": "2025-04-07 07:49:03", - "author_account_age_days": 1611 + "author_account_age_days": 1619 }, "https://github.com/Kayarte/Time-Series-Nodes-for-ComfyUI": { "stars": 1, "last_update": "2025-01-29 02:33:25", - "author_account_age_days": 410 + "author_account_age_days": 418 }, "https://github.com/KihongK/comfyui-roysnodes": { "stars": 0, "last_update": "2025-01-23 09:11:02", - "author_account_age_days": 1919 + "author_account_age_days": 1927 }, "https://github.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack": { "stars": 10, "last_update": "2024-11-24 15:55:30", - "author_account_age_days": 3547 + "author_account_age_days": 3555 }, "https://github.com/Krish-701/RK_Comfyui": { "stars": 0, "last_update": "2025-04-17 17:18:52", - "author_account_age_days": 213 + "author_account_age_days": 221 }, "https://github.com/Kur0butiMegane/Comfyui-StringUtils2": { "stars": 0, "last_update": "2025-05-04 16:34:13", - "author_account_age_days": 2009 + "author_account_age_days": 2018 }, "https://github.com/KurtHokke/ComfyUI_KurtHokke_Nodes": { "stars": 1, "last_update": "2025-03-27 19:04:42", - "author_account_age_days": 182 + "author_account_age_days": 190 }, "https://github.com/LAOGOU-666/Comfyui_StartPatch": { "stars": 47, "last_update": "2025-02-24 17:22:34", - "author_account_age_days": 452 + "author_account_age_days": 460 }, "https://github.com/LLMCoder2023/ComfyUI-LLMCoder2023Nodes": { "stars": 0, "last_update": "2025-04-30 02:42:58", - "author_account_age_days": 3364 + "author_account_age_days": 3372 }, "https://github.com/LZpenguin/ComfyUI-Text": { "stars": 23, "last_update": "2024-06-20 13:38:16", - "author_account_age_days": 2336 - }, - "https://github.com/LargeModGames/comfyui-lora-auto-downloader": { - "stars": 1, - "last_update": "2025-06-12 08:40:31", - "author_account_age_days": 1489 + "author_account_age_days": 2344 }, "https://github.com/LarryJane491/ComfyUI-ModelUnloader": { "stars": 4, "last_update": "2024-01-14 08:22:39", - "author_account_age_days": 521 + "author_account_age_days": 529 }, "https://github.com/Laser-one/ComfyUI-align-pose": { "stars": 0, "last_update": "2024-11-01 09:34:31", - "author_account_age_days": 1189 + "author_account_age_days": 1197 }, "https://github.com/Lilien86/Comfyui_Latent_Interpolation": { "stars": 1, "last_update": "2024-09-03 21:00:49", - "author_account_age_days": 850 + "author_account_age_days": 859 }, "https://github.com/Linsoo/ComfyUI-Linsoo-Custom-Nodes": { "stars": 0, "last_update": "2025-04-25 09:23:18", - "author_account_age_days": 4448 + "author_account_age_days": 4456 }, "https://github.com/Looking-Glass/LKG-ComfyUI": { "stars": 4, "last_update": "2024-10-30 17:02:54", - "author_account_age_days": 3342 + "author_account_age_days": 3350 }, "https://github.com/LotzF/ComfyUI-Simple-Chat-GPT-completion": { "stars": 0, "last_update": "2025-02-27 15:07:36", - "author_account_age_days": 1286 + "author_account_age_days": 1294 + }, + "https://github.com/LucianGnn/ComfyUI-Lucian": { + "stars": 0, + "last_update": "2025-06-18 06:47:37", + "author_account_age_days": 2244 }, "https://github.com/LucipherDev/ComfyUI-Sentinel": { - "stars": 27, + "stars": 29, "last_update": "2025-04-07 14:53:13", - "author_account_age_days": 1854 + "author_account_age_days": 1862 }, "https://github.com/LyazS/ComfyUI-aznodes": { "stars": 0, "last_update": "2025-06-03 14:57:29", - "author_account_age_days": 3214 + "author_account_age_days": 3222 }, "https://github.com/LykosAI/ComfyUI-Inference-Core-Nodes": { "stars": 34, "last_update": "2025-04-05 22:22:31", - "author_account_age_days": 735 + "author_account_age_days": 743 }, "https://github.com/M4lF3s/comfy-tif-support": { "stars": 0, "last_update": "2025-02-12 09:29:11", - "author_account_age_days": 3581 + "author_account_age_days": 3589 }, "https://github.com/MakkiShizu/ComfyUI-MakkiTools": { - "stars": 1, - "last_update": "2025-06-12 16:35:02", - "author_account_age_days": 669 + "stars": 2, + "last_update": "2025-06-23 22:43:19", + "author_account_age_days": 677 + }, + "https://github.com/Malloc-pix/comfyui-QwenVL": { + "stars": 0, + "last_update": "2025-06-24 09:35:32", + "author_account_age_days": 13 }, "https://github.com/ManuShamil/ComfyUI_BodyEstimation_Nodes": { "stars": 0, "last_update": "2025-02-28 19:23:24", - "author_account_age_days": 2510 + "author_account_age_days": 2518 }, "https://github.com/Matrix-King-Studio/ComfyUI-MoviePy": { "stars": 0, "last_update": "2024-12-10 01:50:42", - "author_account_age_days": 1820 - }, - "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": { - "stars": 1, - "last_update": "2025-06-11 23:19:33", - "author_account_age_days": 37 + "author_account_age_days": 1828 }, "https://github.com/Maxim-Dey/ComfyUI-MaksiTools": { "stars": 3, "last_update": "2025-02-08 08:04:03", - "author_account_age_days": 769 + "author_account_age_days": 777 }, "https://github.com/Mervent/comfyui-telegram-send": { "stars": 0, "last_update": "2025-05-22 17:57:36", - "author_account_age_days": 3176 + "author_account_age_days": 3184 }, "https://github.com/Mervent/comfyui-yaml-prompt": { "stars": 0, "last_update": "2025-06-01 06:55:16", - "author_account_age_days": 3176 + "author_account_age_days": 3184 }, "https://github.com/MickeyJ/ComfyUI_mickster_nodes": { "stars": 0, "last_update": "2025-02-07 02:29:12", - "author_account_age_days": 3571 + "author_account_age_days": 3579 }, "https://github.com/MockbaTheBorg/ComfyUI-Mockba": { "stars": 0, "last_update": "2025-05-20 17:39:21", - "author_account_age_days": 3436 + "author_account_age_days": 3444 }, "https://github.com/MrAdamBlack/CheckProgress": { "stars": 1, "last_update": "2024-01-10 08:02:18", - "author_account_age_days": 3077 + "author_account_age_days": 3085 }, "https://github.com/MuAIGC/ComfyUI-DMXAPI_mmx": { "stars": 2, "last_update": "2025-05-26 06:58:45", - "author_account_age_days": 279 + "author_account_age_days": 287 }, "https://github.com/MythicalChu/ComfyUI-APG_ImYourCFGNow": { "stars": 32, "last_update": "2024-11-29 17:45:03", - "author_account_age_days": 1851 + "author_account_age_days": 1859 }, "https://github.com/NEZHA625/ComfyUI-tools-by-dong": { "stars": 1, "last_update": "2025-06-05 03:40:06", - "author_account_age_days": 815 + "author_account_age_days": 823 }, "https://github.com/Nambi24/ComfyUI-Save_Image": { "stars": 0, "last_update": "2025-05-05 15:05:27", - "author_account_age_days": 1242 + "author_account_age_days": 1250 }, "https://github.com/NicholasKao1029/comfyui-hook": { "stars": 0, "last_update": "2024-03-07 05:50:56", - "author_account_age_days": 2387 + "author_account_age_days": 2395 }, "https://github.com/Northerner1/ComfyUI_North_Noise": { "stars": 1, "last_update": "2025-03-01 12:32:29", - "author_account_age_days": 798 + "author_account_age_days": 806 }, "https://github.com/Novavision0313/ComfyUI-NVVS": { "stars": 1, "last_update": "2025-06-12 03:27:13", - "author_account_age_days": 25 + "author_account_age_days": 33 }, "https://github.com/OSAnimate/ComfyUI-SpriteSheetMaker": { "stars": 0, "last_update": "2025-03-12 04:22:34", - "author_account_age_days": 803 + "author_account_age_days": 811 }, "https://github.com/Oct7/ComfyUI-LaplaMask": { "stars": 0, "last_update": "2025-06-03 07:45:26", - "author_account_age_days": 1959 + "author_account_age_days": 1967 + }, + "https://github.com/OgreLemonSoup/ComfyUI-Notes-manager": { + "stars": 0, + "last_update": "2025-06-23 09:15:12", + "author_account_age_days": 318 }, "https://github.com/PATATAJEC/Patatajec-Nodes": { "stars": 2, "last_update": "2025-02-26 16:26:39", - "author_account_age_days": 2292 + "author_account_age_days": 2300 }, "https://github.com/Pablerdo/ComfyUI-Sa2VAWrapper": { "stars": 3, "last_update": "2025-03-27 22:58:39", - "author_account_age_days": 3157 + "author_account_age_days": 3165 }, "https://github.com/PabloGrant/comfyui-giraffe-test-panel": { "stars": 0, "last_update": "2025-05-18 16:38:09", - "author_account_age_days": 643 + "author_account_age_days": 651 }, "https://github.com/Poseidon-fan/ComfyUI-fileCleaner": { "stars": 1, "last_update": "2024-11-19 02:42:29", - "author_account_age_days": 939 + "author_account_age_days": 947 }, "https://github.com/Poukpalaova/ComfyUI-FRED-Nodes": { "stars": 4, "last_update": "2025-06-08 17:29:57", - "author_account_age_days": 678 + "author_account_age_days": 687 }, "https://github.com/QingLuanWithoutHeart/comfyui-file-image-utils": { "stars": 1, "last_update": "2025-04-08 11:13:50", - "author_account_age_days": 2382 + "author_account_age_days": 2390 }, "https://github.com/Quasimondo/ComfyUI-QuasimondoNodes": { "stars": 13, "last_update": "2025-06-09 08:58:42", - "author_account_age_days": 5632 + "author_account_age_days": 5640 }, "https://github.com/RLW-Chars/comfyui-promptbymood": { "stars": 1, "last_update": "2025-01-25 11:21:59", - "author_account_age_days": 142 + "author_account_age_days": 150 }, "https://github.com/RUFFY-369/ComfyUI-FeatureBank": { "stars": 0, "last_update": "2025-03-07 19:30:55", - "author_account_age_days": 1834 + "author_account_age_days": 1842 }, "https://github.com/Raidez/comfyui-kuniklo-collection": { "stars": 0, "last_update": "2025-05-02 19:44:45", - "author_account_age_days": 4031 + "author_account_age_days": 4039 }, "https://github.com/RicherdLee/comfyui-oss-image-save": { "stars": 0, "last_update": "2024-12-10 09:08:39", - "author_account_age_days": 4000 + "author_account_age_days": 4008 }, "https://github.com/RobeSantoro/ComfyUI-RobeNodes": { "stars": 0, "last_update": "2025-06-14 10:29:07", - "author_account_age_days": 4973 + "author_account_age_days": 4981 }, "https://github.com/RoyKillington/miscomfy-nodes": { "stars": 0, "last_update": "2025-03-06 19:36:33", - "author_account_age_days": 2762 + "author_account_age_days": 2770 }, "https://github.com/S4MUEL-404/ComfyUI-Folder-Images-Preview": { "stars": 3, "last_update": "2025-03-09 11:29:04", - "author_account_age_days": 3444 + "author_account_age_days": 3452 }, "https://github.com/SKBv0/ComfyUI-RetroEngine": { "stars": 4, "last_update": "2025-05-10 14:29:43", - "author_account_age_days": 1912 + "author_account_age_days": 1920 }, "https://github.com/SS-snap/ComfyUI-Snap_Processing": { "stars": 61, "last_update": "2025-04-25 04:54:44", - "author_account_age_days": 657 + "author_account_age_days": 665 }, "https://github.com/SS-snap/Comfyui_SSsnap_pose-Remapping": { "stars": 21, - "last_update": "2025-05-09 08:13:38", - "author_account_age_days": 657 + "last_update": "2025-06-18 07:25:25", + "author_account_age_days": 665 }, "https://github.com/SXQBW/ComfyUI-Qwen3": { "stars": 0, "last_update": "2025-04-18 06:06:49", - "author_account_age_days": 3149 + "author_account_age_days": 3157 }, "https://github.com/SadaleNet/ComfyUI-Prompt-To-Prompt": { "stars": 23, "last_update": "2024-03-17 04:30:01", - "author_account_age_days": 4396 + "author_account_age_days": 4405 }, "https://github.com/Sai-ComfyUI/ComfyUI-MS-Nodes": { "stars": 2, "last_update": "2024-02-22 08:34:44", - "author_account_age_days": 566 + "author_account_age_days": 574 }, "https://github.com/Sakura-nee/ComfyUI_Save2Discord": { "stars": 0, "last_update": "2024-08-27 19:01:46", - "author_account_age_days": 1668 + "author_account_age_days": 1676 }, "https://github.com/SanDiegoDude/ComfyUI-HiDream-Sampler": { "stars": 97, "last_update": "2025-05-09 15:17:23", - "author_account_age_days": 988 + "author_account_age_days": 996 }, "https://github.com/Scaryplasmon/ComfTrellis": { "stars": 7, "last_update": "2025-02-18 11:34:33", - "author_account_age_days": 1382 + "author_account_age_days": 1390 }, "https://github.com/SeedV/ComfyUI-SeedV-Nodes": { "stars": 1, "last_update": "2025-04-25 07:37:36", - "author_account_age_days": 1482 + "author_account_age_days": 1491 }, "https://github.com/Sephrael/comfyui_caption-around-image": { "stars": 0, "last_update": "2025-06-02 19:16:34", - "author_account_age_days": 820 + "author_account_age_days": 828 }, "https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": { "stars": 0, "last_update": "2025-05-03 08:29:40", - "author_account_age_days": 767 + "author_account_age_days": 775 }, "https://github.com/Shinsplat/ComfyUI-Shinsplat": { - "stars": 44, + "stars": 45, "last_update": "2025-03-15 00:02:11", - "author_account_age_days": 1381 + "author_account_age_days": 1389 }, "https://github.com/ShmuelRonen/ComfyUI-FreeMemory": { - "stars": 106, + "stars": 108, "last_update": "2025-03-20 11:25:12", - "author_account_age_days": 1562 + "author_account_age_days": 1570 }, "https://github.com/Simlym/comfyui-prompt-helper": { - "stars": 1, + "stars": 2, "last_update": "2025-04-17 15:20:34", - "author_account_age_days": 2539 + "author_account_age_days": 2547 }, "https://github.com/SirVeggie/comfyui-sv-nodes": { "stars": 5, "last_update": "2025-05-03 19:46:49", - "author_account_age_days": 2817 + "author_account_age_days": 2825 }, "https://github.com/Slix-M-Lestragg/comfyui-enhanced": { "stars": 0, "last_update": "2025-04-11 21:32:23", - "author_account_age_days": 1671 + "author_account_age_days": 1679 }, "https://github.com/SoftMeng/ComfyUI-PIL": { "stars": 6, "last_update": "2024-10-13 10:02:17", - "author_account_age_days": 3880 + "author_account_age_days": 3888 }, "https://github.com/Solankimayursinh/PMSnodes": { "stars": 0, "last_update": "2025-04-26 07:47:15", - "author_account_age_days": 222 + "author_account_age_days": 230 }, "https://github.com/Sophylax/ComfyUI-ReferenceMerge": { "stars": 0, "last_update": "2025-04-30 21:48:18", - "author_account_age_days": 4302 + "author_account_age_days": 4310 }, "https://github.com/Soppatorsk/comfyui_img_to_ascii": { "stars": 0, "last_update": "2024-09-07 15:39:28", - "author_account_age_days": 1497 + "author_account_age_days": 1505 }, "https://github.com/SpaceWarpStudio/ComfyUI_Remaker_FaceSwap": { "stars": 0, "last_update": "2024-07-15 11:57:20", - "author_account_age_days": 3312 + "author_account_age_days": 3321 }, "https://github.com/Stable-X/ComfyUI-Hi3DGen": { - "stars": 162, + "stars": 163, "last_update": "2025-04-04 03:48:36", - "author_account_age_days": 379 + "author_account_age_days": 387 }, "https://github.com/StableDiffusionVN/SDVN_Comfy_node": { - "stars": 47, - "last_update": "2025-06-13 18:15:42", - "author_account_age_days": 315 + "stars": 48, + "last_update": "2025-06-24 06:18:46", + "author_account_age_days": 323 }, "https://github.com/StaffsGull/comfyui_scene_builder": { "stars": 0, "last_update": "2025-04-27 12:40:57", - "author_account_age_days": 3297 + "author_account_age_days": 3305 }, "https://github.com/StartHua/Comfyui_CSDMT_CXH": { "stars": 20, "last_update": "2024-07-11 15:36:03", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_CXH_CRM": { "stars": 45, "last_update": "2024-06-06 14:15:14", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_CXH_joy_caption": { - "stars": 581, + "stars": 582, "last_update": "2025-02-06 02:35:10", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_Flux_Style_Ctr": { - "stars": 96, + "stars": 97, "last_update": "2024-11-22 09:25:11", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StartHua/Comfyui_leffa": { - "stars": 226, + "stars": 227, "last_update": "2024-12-18 03:04:54", - "author_account_age_days": 3192 + "author_account_age_days": 3200 }, "https://github.com/StoryWalker/comfyui_flux_collection_advanced": { "stars": 0, "last_update": "2025-04-28 02:49:48", - "author_account_age_days": 167 + "author_account_age_days": 175 }, "https://github.com/Symbiomatrix/Comfyui-Sort-Files": { "stars": 1, "last_update": "2025-04-22 22:24:00", - "author_account_age_days": 2531 + "author_account_age_days": 2539 }, "https://github.com/TSFSean/ComfyUI-TSFNodes": { "stars": 6, "last_update": "2024-05-18 00:59:06", - "author_account_age_days": 3829 + "author_account_age_days": 3837 }, "https://github.com/Tawbaware/ComfyUI-Tawbaware": { "stars": 1, "last_update": "2025-04-20 22:23:11", - "author_account_age_days": 1628 + "author_account_age_days": 1636 }, "https://github.com/Temult/TWanSigmaSampler": { "stars": 2, "last_update": "2025-04-17 08:53:41", - "author_account_age_days": 623 + "author_account_age_days": 631 }, "https://github.com/ThatGlennD/ComfyUI-Image-Analysis-Tools": { "stars": 11, "last_update": "2025-05-27 11:49:48", - "author_account_age_days": 3202 + "author_account_age_days": 3210 }, "https://github.com/TheJorseman/IntrinsicCompositingClean-ComfyUI": { "stars": 0, "last_update": "2025-05-07 17:07:51", - "author_account_age_days": 3639 + "author_account_age_days": 3647 }, "https://github.com/ThisModernDay/ComfyUI-InstructorOllama": { "stars": 7, "last_update": "2024-08-20 00:30:24", - "author_account_age_days": 4086 + "author_account_age_days": 4094 }, "https://github.com/V-woodpecker-V/comfyui-stiffy-nodes": { "stars": 1, "last_update": "2025-04-12 22:36:51", - "author_account_age_days": 1613 + "author_account_age_days": 1621 }, "https://github.com/Velour-Fog/comfy-latent-nodes": { - "stars": 4, + "stars": 5, "last_update": "2025-02-24 00:34:41", - "author_account_age_days": 1318 + "author_account_age_days": 1326 }, "https://github.com/VictorLopes643/ComfyUI-Video-Dataset-Tools": { "stars": 1, "last_update": "2025-05-09 22:47:52", - "author_account_age_days": 2666 + "author_account_age_days": 2674 }, "https://github.com/Video3DGenResearch/comfyui-batch-input-node": { "stars": 1, "last_update": "2024-04-28 15:21:17", - "author_account_age_days": 463 + "author_account_age_days": 471 }, "https://github.com/VisionExp/ve_custom_comfyui_nodes": { "stars": 0, "last_update": "2024-07-17 11:51:54", - "author_account_age_days": 362 + "author_account_age_days": 370 }, "https://github.com/WASasquatch/ASTERR": { "stars": 30, "last_update": "2024-10-27 01:48:56", - "author_account_age_days": 4982 + "author_account_age_days": 4990 }, "https://github.com/WSJUSA/Comfyui-StableSR": { - "stars": 49, + "stars": 50, "last_update": "2023-10-18 12:40:30", - "author_account_age_days": 1781 + "author_account_age_days": 1789 }, "https://github.com/WaiyanLing/ComfyUI-Tracking": { "stars": 1, "last_update": "2025-04-18 04:36:33", - "author_account_age_days": 4478 + "author_account_age_days": 4486 }, "https://github.com/WilliamStanford/ComfyUI-VisualLabs": { "stars": 1, "last_update": "2024-04-16 21:53:02", - "author_account_age_days": 2126 + "author_account_age_days": 2135 + }, + "https://github.com/WozStudios/ComfyUI-WozNodes": { + "stars": 0, + "last_update": "2025-06-22 18:16:08", + "author_account_age_days": 4474 }, "https://github.com/Yeonri/ComfyUI_LLM_Are_You_Listening": { "stars": 0, "last_update": "2025-02-21 00:35:03", - "author_account_age_days": 894 + "author_account_age_days": 902 }, "https://github.com/Yukinoshita-Yukinoe/ComfyUI-KontextOfficialNode": { "stars": 2, "last_update": "2025-06-06 09:23:19", - "author_account_age_days": 1763 + "author_account_age_days": 1771 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-AuraSR-ZHO": { - "stars": 94, + "stars": 95, "last_update": "2024-07-11 07:33:30", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO": { - "stars": 351, + "stars": 352, "last_update": "2024-07-30 23:24:24", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Llama-3-2": { "stars": 18, "last_update": "2024-09-26 18:08:01", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PuLID-ZHO": { "stars": 235, "last_update": "2024-05-22 13:38:23", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen": { "stars": 110, "last_update": "2024-09-20 21:27:47", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Wan-ZHO": { "stars": 10, "last_update": "2025-02-26 05:46:42", - "author_account_age_days": 696 + "author_account_age_days": 705 }, "https://github.com/ZenAI-Vietnam/ComfyUI-gemini-IG": { "stars": 1, "last_update": "2025-03-26 14:49:13", - "author_account_age_days": 540 + "author_account_age_days": 548 }, "https://github.com/ZenAI-Vietnam/ComfyUI_InfiniteYou": { - "stars": 228, + "stars": 230, "last_update": "2025-03-31 07:56:02", - "author_account_age_days": 540 + "author_account_age_days": 548 }, "https://github.com/a-One-Fan/ComfyUI-Blenderesque-Nodes": { "stars": 3, "last_update": "2025-05-22 12:36:15", - "author_account_age_days": 1212 + "author_account_age_days": 1220 }, "https://github.com/a-und-b/ComfyUI_Output_as_Input": { "stars": 2, "last_update": "2025-05-08 08:35:02", - "author_account_age_days": 797 + "author_account_age_days": 805 }, "https://github.com/aa-parky/pipemind-comfyui": { "stars": 0, - "last_update": "2025-06-15 16:43:48", - "author_account_age_days": 2201 + "last_update": "2025-06-22 10:12:27", + "author_account_age_days": 2209 }, "https://github.com/abuzreq/ComfyUI-Model-Bending": { - "stars": 10, - "last_update": "2025-05-16 18:16:42", - "author_account_age_days": 4213 + "stars": 11, + "last_update": "2025-06-20 04:31:48", + "author_account_age_days": 4221 }, "https://github.com/aiden1020/ComfyUI_Artcoder": { "stars": 2, "last_update": "2025-01-11 08:31:32", - "author_account_age_days": 826 + "author_account_age_days": 834 }, "https://github.com/ainanoha/etm_comfyui_nodes": { "stars": 0, "last_update": "2024-10-31 05:45:59", - "author_account_age_days": 4611 + "author_account_age_days": 4619 + }, + "https://github.com/akatz-ai/ComfyUI-Execution-Inversion": { + "stars": 1, + "last_update": "2025-06-18 04:06:55", + "author_account_age_days": 400 }, "https://github.com/aklevecz/ComfyUI-AutoPrompt": { "stars": 0, "last_update": "2025-05-26 18:36:34", - "author_account_age_days": 2629 + "author_account_age_days": 2637 }, "https://github.com/alexgenovese/ComfyUI-Diffusion-4k": { "stars": 6, "last_update": "2025-05-22 20:48:23", - "author_account_age_days": 5371 + "author_account_age_days": 5379 }, "https://github.com/alexgenovese/ComfyUI-Reica": { "stars": 0, - "last_update": "2025-06-12 15:38:48", - "author_account_age_days": 5371 + "last_update": "2025-06-20 17:08:23", + "author_account_age_days": 5379 }, "https://github.com/alexisrolland/ComfyUI-AuraSR": { "stars": 28, "last_update": "2025-04-01 14:20:42", - "author_account_age_days": 3643 + "author_account_age_days": 3651 }, "https://github.com/alt-key-project/comfyui-dream-painter": { "stars": 2, "last_update": "2025-02-23 10:19:26", - "author_account_age_days": 1017 + "author_account_age_days": 1025 }, "https://github.com/alt-key-project/comfyui-dream-video-batches": { - "stars": 71, + "stars": 72, "last_update": "2025-02-23 10:28:40", - "author_account_age_days": 1017 + "author_account_age_days": 1025 }, "https://github.com/amamisonlyuser/MixvtonComfyui": { "stars": 0, "last_update": "2025-05-31 14:14:10", - "author_account_age_days": 792 + "author_account_age_days": 800 }, "https://github.com/ammahmoudi/ComfyUI-Legendary-Nodes": { "stars": 0, "last_update": "2025-03-15 07:26:17", - "author_account_age_days": 1299 + "author_account_age_days": 1307 }, "https://github.com/animEEEmpire/ComfyUI-Animemory-Loader": { "stars": 2, "last_update": "2025-01-20 08:02:58", - "author_account_age_days": 202 + "author_account_age_days": 210 }, "https://github.com/apetitbois/nova_utils": { "stars": 0, "last_update": "2025-04-02 20:01:49", - "author_account_age_days": 3454 + "author_account_age_days": 3462 }, "https://github.com/aria1th/ComfyUI-CairoSVG": { "stars": 0, "last_update": "2025-01-07 19:40:19", - "author_account_age_days": 2702 + "author_account_age_days": 2710 }, "https://github.com/aria1th/ComfyUI-SkipCFGSigmas": { "stars": 3, "last_update": "2025-03-05 07:50:45", - "author_account_age_days": 2702 + "author_account_age_days": 2710 }, "https://github.com/aria1th/ComfyUI-camietagger-onnx": { "stars": 0, "last_update": "2025-03-06 01:55:51", - "author_account_age_days": 2702 + "author_account_age_days": 2710 + }, + "https://github.com/armandgw84/comfyui-custom-v6": { + "stars": 0, + "last_update": "2025-06-23 20:24:34", + "author_account_age_days": 815 }, "https://github.com/artem-konevskikh/comfyui-split-merge-video": { "stars": 3, "last_update": "2024-11-19 00:11:17", - "author_account_age_days": 4728 + "author_account_age_days": 4736 + }, + "https://github.com/artifyfun/ComfyUI-JS": { + "stars": 2, + "last_update": "2025-06-23 15:19:20", + "author_account_age_days": 456 }, "https://github.com/artisanalcomputing/ComfyUI-Custom-Nodes": { "stars": 0, "last_update": "2024-10-13 05:55:33", - "author_account_age_days": 2632 + "author_account_age_days": 2640 }, "https://github.com/ashishsaini/comfyui-segment-clothing-sleeves": { "stars": 2, "last_update": "2024-09-23 19:09:15", - "author_account_age_days": 4305 + "author_account_age_days": 4313 }, "https://github.com/ashllay/ComfyUI_MoreComfy": { "stars": 0, "last_update": "2025-04-14 12:27:22", - "author_account_age_days": 4327 + "author_account_age_days": 4335 }, "https://github.com/avocadori/ComfyUI-AudioAmplitudeConverter": { "stars": 0, "last_update": "2025-05-29 07:57:22", - "author_account_age_days": 430 + "author_account_age_days": 438 }, "https://github.com/ayaoayaoayaoaya/ComfyUI-KLUT-DeepSeek-API": { "stars": 0, "last_update": "2025-03-27 15:38:59", - "author_account_age_days": 376 + "author_account_age_days": 384 }, "https://github.com/backearth1/Comfyui-MiniMax-Video": { "stars": 19, "last_update": "2025-03-12 15:26:35", - "author_account_age_days": 609 + "author_account_age_days": 617 }, "https://github.com/badmike/comfyui-prompt-factory": { "stars": 0, "last_update": "2025-02-18 09:28:53", - "author_account_age_days": 5037 + "author_account_age_days": 5045 }, "https://github.com/baicai99/ComfyUI-FrameSkipping": { - "stars": 9, - "last_update": "2024-12-03 09:26:50", - "author_account_age_days": 1188 + "stars": 10, + "last_update": "2025-06-23 02:50:12", + "author_account_age_days": 1196 }, "https://github.com/bananasss00/Comfyui-PyExec": { "stars": 1, "last_update": "2025-02-26 12:01:18", - "author_account_age_days": 2891 + "author_account_age_days": 2899 }, "https://github.com/bandido37/comfyui-kaggle-local-save": { "stars": 0, "last_update": "2025-04-23 16:20:30", - "author_account_age_days": 2099 + "author_account_age_days": 2107 }, "https://github.com/barakapa/barakapa-nodes": { "stars": 0, "last_update": "2025-05-13 20:47:52", - "author_account_age_days": 37 + "author_account_age_days": 45 }, "https://github.com/benda1989/WaterMarkRemover_ComfyUI": { "stars": 1, "last_update": "2025-05-01 22:31:19", - "author_account_age_days": 2470 + "author_account_age_days": 2478 }, "https://github.com/benmizrahi/ComfyGCS": { "stars": 1, "last_update": "2025-05-05 15:18:40", - "author_account_age_days": 3599 + "author_account_age_days": 3607 }, "https://github.com/beyastard/ComfyUI_BeySoft": { "stars": 0, "last_update": "2024-05-26 22:44:55", - "author_account_age_days": 4643 + "author_account_age_days": 4651 }, "https://github.com/bheins/ComfyUI-glb-to-stl": { "stars": 0, "last_update": "2025-05-31 17:41:31", - "author_account_age_days": 4021 + "author_account_age_days": 4029 }, "https://github.com/birnam/ComfyUI-GenData-Pack": { "stars": 0, "last_update": "2024-03-25 01:25:23", - "author_account_age_days": 5366 + "author_account_age_days": 5374 }, - "https://github.com/bleash-dev/Comfyui-Iddle-Checker": { + "https://github.com/bleash-dev/Comfyui-Idle-Checker": { "stars": 0, - "last_update": "2025-06-16 06:08:04", - "author_account_age_days": 1420 + "last_update": "2025-06-21 21:44:47", + "author_account_age_days": 1428 }, "https://github.com/blib-la/ComfyUI-Captain-Extensions": { "stars": 0, "last_update": "2024-05-17 23:27:25", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/blueraincoatli/ComfyUI-Model-Cleaner": { "stars": 1, "last_update": "2025-05-29 08:55:38", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/blurymind/cozy-fireplace": { "stars": 4, "last_update": "2024-11-08 19:42:20", - "author_account_age_days": 4160 + "author_account_age_days": 4168 }, "https://github.com/bmad4ever/comfyui_bmad_nodes": { "stars": 63, "last_update": "2025-03-17 14:50:46", - "author_account_age_days": 3893 + "author_account_age_days": 3901 }, "https://github.com/brace-great/comfyui-eim": { "stars": 0, "last_update": "2025-05-14 06:09:18", - "author_account_age_days": 1445 + "author_account_age_days": 1453 }, "https://github.com/brace-great/comfyui-mc": { "stars": 0, "last_update": "2025-06-12 07:56:33", - "author_account_age_days": 1445 + "author_account_age_days": 1453 }, "https://github.com/bruce007lee/comfyui-cleaner": { "stars": 3, "last_update": "2024-04-20 15:36:03", - "author_account_age_days": 4869 + "author_account_age_days": 4877 }, "https://github.com/bruce007lee/comfyui-tiny-utils": { "stars": 1, "last_update": "2024-08-31 13:34:57", - "author_account_age_days": 4869 + "author_account_age_days": 4877 }, "https://github.com/brycegoh/comfyui-custom-nodes": { "stars": 0, "last_update": "2024-06-05 09:30:06", - "author_account_age_days": 3465 + "author_account_age_days": 3473 }, "https://github.com/bulldog68/ComfyUI_FMJ": { "stars": 4, - "last_update": "2025-06-11 17:56:18", - "author_account_age_days": 461 + "last_update": "2025-06-21 13:54:04", + "author_account_age_days": 469 }, "https://github.com/c0ffymachyne/ComfyUI_SignalProcessing": { "stars": 11, "last_update": "2025-05-14 01:41:00", - "author_account_age_days": 4872 + "author_account_age_days": 4880 + }, + "https://github.com/casterpollux/MiniMax-bmo": { + "stars": 30, + "last_update": "2025-06-21 07:37:32", + "author_account_age_days": 38 }, "https://github.com/catboxanon/ComfyUI-Pixelsmith": { "stars": 4, "last_update": "2025-01-22 03:02:05", - "author_account_age_days": 888 + "author_account_age_days": 896 }, "https://github.com/celll1/cel_sampler": { "stars": 1, "last_update": "2024-11-20 13:04:54", - "author_account_age_days": 587 + "author_account_age_days": 595 }, "https://github.com/cesilk10/cesilk-comfyui-nodes": { "stars": 0, - "last_update": "2025-06-08 13:40:40", - "author_account_age_days": 40 + "last_update": "2025-06-20 08:20:32", + "author_account_age_days": 48 }, "https://github.com/chaojie/ComfyUI-DynamiCrafter": { "stars": 129, "last_update": "2024-06-14 10:23:59", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chaojie/ComfyUI-mobvoi-openapi": { "stars": 2, "last_update": "2024-05-29 09:02:52", - "author_account_age_days": 5190 + "author_account_age_days": 5198 }, "https://github.com/chenbaiyujason/ComfyUI_StepFun": { "stars": 6, "last_update": "2024-12-05 14:45:27", - "author_account_age_days": 2091 + "author_account_age_days": 2099 }, "https://github.com/chengzeyi/Comfy-WaveSpeed": { - "stars": 1061, + "stars": 1069, "last_update": "2025-03-27 08:10:29", - "author_account_age_days": 3134 + "author_account_age_days": 3142 }, "https://github.com/chetusangolgi/Comfyui-supabase": { "stars": 0, "last_update": "2025-04-30 12:33:21", - "author_account_age_days": 750 + "author_account_age_days": 758 }, "https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI": { "stars": 4, "last_update": "2024-08-29 03:54:28", - "author_account_age_days": 3475 + "author_account_age_days": 3483 }, "https://github.com/christian-byrne/infinite-zoom-parallax-nodes": { "stars": 5, "last_update": "2024-07-08 15:07:05", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/christian-byrne/python-interpreter-node": { - "stars": 57, + "stars": 58, "last_update": "2025-04-02 02:06:27", - "author_account_age_days": 1705 + "author_account_age_days": 1713 }, "https://github.com/chuge26/ComfyUI_seal_migration": { "stars": 0, "last_update": "2025-04-21 07:23:45", - "author_account_age_days": 2723 + "author_account_age_days": 2731 }, "https://github.com/cidiro/cid-node-pack": { "stars": 0, "last_update": "2025-03-23 23:26:00", - "author_account_age_days": 1986 + "author_account_age_days": 1994 }, "https://github.com/ciga2011/ComfyUI-AppGen": { "stars": 2, "last_update": "2025-01-02 17:00:32", - "author_account_age_days": 4556 + "author_account_age_days": 4564 }, "https://github.com/comfyanonymous/ComfyUI": { - "stars": 79813, - "last_update": "2025-06-16 11:52:12", - "author_account_age_days": 906 + "stars": 80633, + "last_update": "2025-06-24 09:17:25", + "author_account_age_days": 914 }, "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4": { "stars": 409, "last_update": "2024-08-16 18:06:10", - "author_account_age_days": 906 + "author_account_age_days": 914 }, "https://github.com/comfypod/ComfyUI-Comflow": { "stars": 0, "last_update": "2024-06-17 08:44:08", - "author_account_age_days": 380 + "author_account_age_days": 388 }, "https://github.com/comfyuiblog/deepseek_prompt_generator_comfyui": { "stars": 2, "last_update": "2025-01-28 21:28:11", - "author_account_age_days": 247 + "author_account_age_days": 255 }, "https://github.com/corbin-hayden13/ComfyUI-Better-Dimensions": { "stars": 7, "last_update": "2024-06-12 17:45:21", - "author_account_age_days": 2172 + "author_account_age_days": 2180 }, "https://github.com/cubiq/Comfy_Dungeon": { - "stars": 258, + "stars": 259, "last_update": "2024-04-26 11:00:58", - "author_account_age_days": 5368 + "author_account_age_days": 5376 }, "https://github.com/cwebbi1/VoidCustomNodes": { "stars": 0, "last_update": "2024-10-07 02:23:02", - "author_account_age_days": 362 + "author_account_age_days": 370 }, "https://github.com/cyberhirsch/seb_nodes": { "stars": 0, "last_update": "2025-06-12 18:30:24", - "author_account_age_days": 2223 + "author_account_age_days": 2232 }, "https://github.com/daracazamea/comfyUI-DCNodes": { "stars": 0, "last_update": "2025-04-03 14:38:27", - "author_account_age_days": 2316 + "author_account_age_days": 2324 }, "https://github.com/denislov/Comfyui_AutoSurvey": { "stars": 1, "last_update": "2024-08-03 06:50:57", - "author_account_age_days": 2344 + "author_account_age_days": 2352 }, "https://github.com/dfl/comfyui-stylegan": { "stars": 0, "last_update": "2024-12-29 18:35:27", - "author_account_age_days": 6331 + "author_account_age_days": 6339 }, "https://github.com/dhpdong/ComfyUI-IPAdapter-Flux-Repair": { "stars": 4, "last_update": "2025-05-23 08:51:34", - "author_account_age_days": 2267 + "author_account_age_days": 2275 }, "https://github.com/dihan/comfyui-random-kps": { - "stars": 2, + "stars": 3, "last_update": "2025-01-01 22:48:11", - "author_account_age_days": 4653 + "author_account_age_days": 4661 + }, + "https://github.com/diodiogod/Comfy-Inpainting-Works": { + "stars": 24, + "last_update": "2025-06-24 01:23:56", + "author_account_age_days": 493 }, "https://github.com/dogcomplex/ComfyUI-LOKI": { "stars": 1, "last_update": "2025-05-07 08:10:12", - "author_account_age_days": 4423 + "author_account_age_days": 4431 }, "https://github.com/doucx/ComfyUI_WcpD_Utility_Kit": { "stars": 1, "last_update": "2024-01-06 19:07:45", - "author_account_age_days": 2680 + "author_account_age_days": 2688 }, "https://github.com/dowands/ComfyUI-AddMaskForICLora": { "stars": 1, "last_update": "2024-11-26 09:40:06", - "author_account_age_days": 2896 + "author_account_age_days": 2904 }, "https://github.com/downlifted/ComfyUI_BWiZ_Nodes": { "stars": 1, "last_update": "2024-12-27 17:03:52", - "author_account_age_days": 2604 + "author_account_age_days": 2612 }, "https://github.com/eigenpunk/ComfyUI-audio": { "stars": 88, "last_update": "2024-03-03 21:14:14", - "author_account_age_days": 1282 + "author_account_age_days": 1290 }, "https://github.com/ejektaflex/ComfyUI-Ty": { "stars": 0, "last_update": "2024-06-12 16:08:16", - "author_account_age_days": 3129 + "author_account_age_days": 3137 }, "https://github.com/emranemran/ComfyUI-FasterLivePortrait": { "stars": 0, "last_update": "2024-12-18 20:03:19", - "author_account_age_days": 4542 + "author_account_age_days": 4550 }, "https://github.com/endman100/ComfyUI-SaveAndLoadPromptCondition": { "stars": 0, "last_update": "2024-07-03 09:35:02", - "author_account_age_days": 2830 + "author_account_age_days": 2838 }, "https://github.com/endman100/ComfyUI-augmentation": { "stars": 0, "last_update": "2024-07-23 09:06:24", - "author_account_age_days": 2830 + "author_account_age_days": 2838 }, "https://github.com/ericbeyer/guidance_interval": { "stars": 2, "last_update": "2024-04-16 03:24:01", - "author_account_age_days": 2951 + "author_account_age_days": 2959 }, "https://github.com/erosDiffusion/ComfyUI-enricos-json-file-load-and-value-selector": { "stars": 2, "last_update": "2025-06-04 16:32:17", - "author_account_age_days": 353 + "author_account_age_days": 362 }, "https://github.com/esciron/ComfyUI-HunyuanVideoWrapper-Extended": { "stars": 4, "last_update": "2025-01-04 22:27:09", - "author_account_age_days": 3351 + "author_account_age_days": 3359 }, "https://github.com/etng/ComfyUI-Heartbeat": { "stars": 2, "last_update": "2025-06-03 09:32:40", - "author_account_age_days": 1421 + "author_account_age_days": 1429 }, "https://github.com/exectails/comfyui-et_scripting": { "stars": 1, "last_update": "2024-11-29 17:23:07", - "author_account_age_days": 4275 + "author_account_age_days": 4283 }, "https://github.com/eyekayem/comfyui_runway_gen3": { "stars": 0, "last_update": "2025-01-27 06:59:45", - "author_account_age_days": 969 + "author_account_age_days": 977 }, "https://github.com/fablestudio/ComfyUI-Showrunner-Utils": { "stars": 0, "last_update": "2025-06-04 04:34:09", - "author_account_age_days": 2405 + "author_account_age_days": 2413 }, "https://github.com/facok/ComfyUI-FokToolset": { "stars": 5, "last_update": "2025-04-24 19:29:57", - "author_account_age_days": 815 + "author_account_age_days": 823 }, "https://github.com/fangg2000/ComfyUI-SenseVoice": { "stars": 0, "last_update": "2025-05-06 06:42:52", - "author_account_age_days": 785 + "author_account_age_days": 793 }, "https://github.com/fangg2000/ComfyUI-StableAudioFG": { "stars": 0, "last_update": "2025-06-15 11:49:34", - "author_account_age_days": 785 + "author_account_age_days": 793 }, "https://github.com/fangziheng2321/comfyuinode_chopmask": { "stars": 0, "last_update": "2025-02-17 03:16:50", - "author_account_age_days": 1529 + "author_account_age_days": 1537 }, "https://github.com/filipemeneses/ComfyUI_html": { "stars": 0, "last_update": "2025-06-10 10:53:55", - "author_account_age_days": 3833 - }, - "https://github.com/flamacore/ComfyUI-YouTubeUploader": { - "stars": 1, - "last_update": "2025-06-14 22:11:33", - "author_account_age_days": 3666 + "author_account_age_days": 3841 }, "https://github.com/flowtyone/comfyui-flowty-lcm": { "stars": 63, "last_update": "2023-10-23 12:08:55", - "author_account_age_days": 630 + "author_account_age_days": 638 }, "https://github.com/flyingdogsoftware/gyre_for_comfyui": { "stars": 1, "last_update": "2024-11-18 22:35:37", - "author_account_age_days": 2370 + "author_account_age_days": 2378 }, "https://github.com/foglerek/comfyui-cem-tools": { "stars": 1, "last_update": "2024-01-13 23:22:07", - "author_account_age_days": 4395 + "author_account_age_days": 4403 }, "https://github.com/franky519/comfyui-redux-style": { "stars": 0, "last_update": "2025-02-13 10:04:45", - "author_account_age_days": 634 + "author_account_age_days": 642 }, "https://github.com/franky519/comfyui_fnckc_Face_analysis": { "stars": 0, "last_update": "2025-06-16 02:09:00", - "author_account_age_days": 633 + "author_account_age_days": 642 }, "https://github.com/fritzprix/ComfyUI-LLM-Utils": { "stars": 1, "last_update": "2025-01-04 23:25:38", - "author_account_age_days": 5084 + "author_account_age_days": 5092 }, "https://github.com/ftechmax/ComfyUI-NovaKit-Pack": { "stars": 0, "last_update": "2025-04-26 13:27:06", - "author_account_age_days": 2935 + "author_account_age_days": 2943 + }, + "https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector": { + "stars": 1, + "last_update": "2025-06-22 03:43:09", + "author_account_age_days": 2061 }, "https://github.com/futureversecom/ComfyUI-JEN": { "stars": 1, "last_update": "2024-08-06 00:24:56", - "author_account_age_days": 1076 + "author_account_age_days": 1084 }, "https://github.com/fuzr0dah/comfyui-sceneassembly": { "stars": 0, "last_update": "2025-05-18 12:27:05", - "author_account_age_days": 3461 + "author_account_age_days": 3469 }, "https://github.com/gabe-init/ComfyUI-LM-Studio": { "stars": 0, "last_update": "2025-05-26 22:10:36", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gabe-init/ComfyUI-Repo-Eater": { "stars": 0, "last_update": "2025-05-27 01:09:24", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gabe-init/comfyui_ui_render": { - "stars": 0, + "stars": 1, "last_update": "2025-05-27 00:27:32", - "author_account_age_days": 21 + "author_account_age_days": 29 }, "https://github.com/gagaprince/ComfyUI_gaga_utils": { "stars": 0, "last_update": "2025-05-12 09:54:34", - "author_account_age_days": 4217 + "author_account_age_days": 4225 }, "https://github.com/galoreware/ComfyUI-GaloreNodes": { "stars": 0, "last_update": "2024-10-24 05:47:23", - "author_account_age_days": 1782 + "author_account_age_days": 1790 }, "https://github.com/gameltb/ComfyUI_paper_playground": { "stars": 10, "last_update": "2025-05-14 16:18:43", - "author_account_age_days": 4412 + "author_account_age_days": 4420 }, "https://github.com/gameltb/ComfyUI_stable_fast": { "stars": 208, "last_update": "2024-08-04 09:25:33", - "author_account_age_days": 4412 + "author_account_age_days": 4420 }, "https://github.com/gameltb/io_comfyui": { "stars": 6, "last_update": "2025-02-04 15:14:01", - "author_account_age_days": 4412 + "author_account_age_days": 4420 }, "https://github.com/gamtruliar/ComfyUI-N_SwapInput": { "stars": 0, "last_update": "2025-05-08 19:08:30", - "author_account_age_days": 4481 + "author_account_age_days": 4489 }, "https://github.com/gilons/ComfyUI-GoogleDrive-Downloader": { "stars": 0, "last_update": "2025-06-13 20:43:59", - "author_account_age_days": 2905 + "author_account_age_days": 2913 }, "https://github.com/gioferreira/ComfyUI-Molde-Utils": { "stars": 0, "last_update": "2025-02-27 20:53:33", - "author_account_age_days": 3317 + "author_account_age_days": 3325 }, "https://github.com/gitadmini/comfyui_extractstoryboards": { "stars": 1, "last_update": "2025-06-11 02:01:24", - "author_account_age_days": 3399 + "author_account_age_days": 3407 }, "https://github.com/githubYiheng/comfyui_median_filter": { "stars": 0, "last_update": "2024-07-03 11:38:39", - "author_account_age_days": 4260 + "author_account_age_days": 4268 }, "https://github.com/gitmylo/FlowNodes": { "stars": 11, "last_update": "2025-04-03 08:17:47", - "author_account_age_days": 2664 + "author_account_age_days": 2672 }, "https://github.com/glamorfleet0i/ComfyUI-Firewall": { "stars": 0, "last_update": "2024-12-30 02:14:57", - "author_account_age_days": 175 + "author_account_age_days": 183 }, "https://github.com/gmorks/ComfyUI-Animagine-Prompt": { "stars": 9, "last_update": "2025-02-21 08:34:05", - "author_account_age_days": 2652 + "author_account_age_days": 2660 }, "https://github.com/go-package-lab/ComfyUI-Tools-Video-Combine": { "stars": 1, "last_update": "2024-09-24 03:54:00", - "author_account_age_days": 1741 + "author_account_age_days": 1749 }, "https://github.com/godric8/ComfyUI_Step1X-Edit": { "stars": 0, "last_update": "2025-06-02 12:14:14", - "author_account_age_days": 1801 + "author_account_age_days": 1809 }, "https://github.com/gold24park/loki-comfyui-node": { "stars": 0, "last_update": "2025-02-07 01:55:07", - "author_account_age_days": 3647 + "author_account_age_days": 3655 }, "https://github.com/gondar-software/ComfyUI-Affine-Transform": { "stars": 3, "last_update": "2024-10-05 17:42:40", - "author_account_age_days": 316 + "author_account_age_days": 324 }, "https://github.com/gondar-software/ComfyUI-Simple-Image-Tools": { "stars": 0, "last_update": "2024-10-12 18:29:58", - "author_account_age_days": 316 + "author_account_age_days": 324 }, "https://github.com/gordon123/ComfyUI_DreamBoard": { - "stars": 1, + "stars": 2, "last_update": "2025-05-18 09:53:50", - "author_account_age_days": 5452 + "author_account_age_days": 5460 }, "https://github.com/gordon123/ComfyUI_srt2speech": { "stars": 3, "last_update": "2025-04-27 13:00:13", - "author_account_age_days": 5452 + "author_account_age_days": 5460 }, "https://github.com/grimli333/ComfyUI_Grim": { "stars": 0, "last_update": "2024-12-01 18:10:07", - "author_account_age_days": 5121 + "author_account_age_days": 5129 }, "https://github.com/grinlau18/ComfyUI_XISER_Nodes": { - "stars": 14, - "last_update": "2025-06-05 07:16:10", - "author_account_age_days": 661 + "stars": 15, + "last_update": "2025-06-24 06:24:13", + "author_account_age_days": 669 }, "https://github.com/grokuku/ComfyUI-Holaf": { "stars": 1, "last_update": "2025-06-10 13:53:54", - "author_account_age_days": 2814 + "author_account_age_days": 2822 }, "https://github.com/grokuku/ComfyUI-Holaf-Utilities": { "stars": 1, - "last_update": "2025-06-14 21:58:38", - "author_account_age_days": 2814 + "last_update": "2025-06-23 20:56:44", + "author_account_age_days": 2822 }, "https://github.com/hananbeer/node_dev": { "stars": 6, "last_update": "2024-08-19 08:08:39", - "author_account_age_days": 1901 + "author_account_age_days": 1909 }, "https://github.com/haodman/ComfyUI_Rain": { "stars": 1, "last_update": "2024-09-01 10:41:20", - "author_account_age_days": 2496 + "author_account_age_days": 2505 }, "https://github.com/haofanwang/ComfyUI-InstantStyle": { "stars": 8, "last_update": "2024-05-23 16:11:13", - "author_account_age_days": 3334 + "author_account_age_days": 3342 }, "https://github.com/haomole/Comfyui-SadTalker": { "stars": 19, "last_update": "2024-08-05 02:44:26", - "author_account_age_days": 658 + "author_account_age_days": 666 }, "https://github.com/hay86/ComfyUI_AceNodes": { "stars": 62, "last_update": "2025-05-01 03:08:58", - "author_account_age_days": 5024 + "author_account_age_days": 5032 }, "https://github.com/hayden-fr/ComfyUI-Image-Browsing": { "stars": 16, "last_update": "2025-04-21 02:35:46", - "author_account_age_days": 2294 + "author_account_age_days": 2302 }, "https://github.com/hdfhssg/ComfyUI_pxtool": { "stars": 4, "last_update": "2025-03-02 06:23:44", - "author_account_age_days": 1601 + "author_account_age_days": 1609 }, "https://github.com/hdfhssg/comfyui_EvoSearch": { "stars": 6, "last_update": "2025-06-15 11:05:48", - "author_account_age_days": 1601 + "author_account_age_days": 1609 }, "https://github.com/hiusdev/ComfyUI_Lah_Toffee": { "stars": 0, "last_update": "2025-02-14 12:40:14", - "author_account_age_days": 1701 + "author_account_age_days": 1709 }, "https://github.com/hnmr293/ComfyUI-SamOne": { "stars": 0, "last_update": "2025-04-16 08:07:42", - "author_account_age_days": 912 + "author_account_age_days": 920 }, "https://github.com/horidream/ComfyUI-Horidream": { "stars": 0, "last_update": "2024-09-08 08:57:57", - "author_account_age_days": 5400 + "author_account_age_days": 5408 }, "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector": { "stars": 0, "last_update": "2024-07-23 14:36:35", - "author_account_age_days": 333 + "author_account_age_days": 342 }, "https://github.com/hotpot-killer/ComfyUI_AlexNodes": { "stars": 0, "last_update": "2024-12-06 09:09:03", - "author_account_age_days": 2583 + "author_account_age_days": 2591 }, "https://github.com/houdinii/comfy-magick": { "stars": 5, "last_update": "2024-03-11 06:40:54", - "author_account_age_days": 3877 + "author_account_age_days": 3885 }, "https://github.com/huizhang0110/ComfyUI_Easy_Nodes_hui": { "stars": 2, "last_update": "2024-02-27 08:22:49", - "author_account_age_days": 2812 + "author_account_age_days": 2820 }, "https://github.com/hunterssl/ComfyUI_SSLNodes": { "stars": 0, "last_update": "2025-01-20 07:23:52", - "author_account_age_days": 3193 + "author_account_age_days": 3201 }, "https://github.com/hunzmusic/ComfyUI-Hunyuan3DTools": { "stars": 4, - "last_update": "2025-04-03 12:44:07", - "author_account_age_days": 85 + "last_update": "2025-06-19 18:11:36", + "author_account_age_days": 93 }, "https://github.com/hunzmusic/Comfyui-CraftsMan3DWrapper": { "stars": 14, "last_update": "2025-05-09 10:46:59", - "author_account_age_days": 85 + "author_account_age_days": 93 }, "https://github.com/hunzmusic/comfyui-hnznodes": { "stars": 1, "last_update": "2025-03-24 21:53:50", - "author_account_age_days": 85 + "author_account_age_days": 93 }, "https://github.com/hy134300/comfyui-hb-node": { "stars": 0, "last_update": "2024-04-09 09:56:22", - "author_account_age_days": 2118 + "author_account_age_days": 2126 }, "https://github.com/hy134300/comfyui-hydit": { "stars": 9, "last_update": "2024-06-07 09:52:15", - "author_account_age_days": 2118 + "author_account_age_days": 2126 }, "https://github.com/hylarucoder/comfyui-copilot": { "stars": 26, "last_update": "2024-06-28 04:43:18", - "author_account_age_days": 4270 + "author_account_age_days": 4278 + }, + "https://github.com/iacoposk8/xor_pickle_nodes": { + "stars": 0, + "last_update": "2025-06-20 07:10:27", + "author_account_age_days": 4519 }, "https://github.com/if-ai/ComfyUI-IF_Zonos": { "stars": 1, "last_update": "2025-02-18 01:28:04", - "author_account_age_days": 3219 + "author_account_age_days": 3227 }, "https://github.com/ilovejohnwhite/Tracer": { "stars": 0, "last_update": "2024-11-26 03:39:33", - "author_account_age_days": 1230 + "author_account_age_days": 1238 }, "https://github.com/immersiveexperience/ie-comfyui-color-nodes": { "stars": 2, "last_update": "2024-06-18 10:54:55", - "author_account_age_days": 626 + "author_account_age_days": 634 }, "https://github.com/io-club/ComfyUI-LuminaNext": { "stars": 0, "last_update": "2024-09-23 12:02:22", - "author_account_age_days": 996 + "author_account_age_days": 1004 }, "https://github.com/jammyfu/ComfyUI_PaintingCoderUtils": { "stars": 12, "last_update": "2025-02-26 05:03:05", - "author_account_age_days": 4835 + "author_account_age_days": 4843 }, "https://github.com/jax-explorer/ComfyUI-DreamO": { "stars": 66, "last_update": "2025-05-22 08:07:02", - "author_account_age_days": 933 + "author_account_age_days": 942 }, "https://github.com/jcomeme/ComfyUI-AsunaroTools": { "stars": 1, "last_update": "2025-03-21 03:57:39", - "author_account_age_days": 5207 + "author_account_age_days": 5215 }, "https://github.com/jerryname2022/ComfyUI-Real-ESRGAN": { "stars": 0, "last_update": "2025-04-19 10:54:34", - "author_account_age_days": 3636 + "author_account_age_days": 3644 }, "https://github.com/jgbrblmd/ComfyUI-ComfyFluxSize": { "stars": 0, "last_update": "2024-08-30 06:42:39", - "author_account_age_days": 813 + "author_account_age_days": 821 }, "https://github.com/jgbyte/ComfyUI-RandomCube": { "stars": 0, "last_update": "2025-02-19 23:13:05", - "author_account_age_days": 312 + "author_account_age_days": 320 }, "https://github.com/jimmm-ai/TimeUi-a-ComfyUi-Timeline-Node": { - "stars": 228, + "stars": 227, "last_update": "2024-07-04 11:44:03", - "author_account_age_days": 377 + "author_account_age_days": 385 }, "https://github.com/jimstudt/ComfyUI-Jims-Nodes": { "stars": 0, "last_update": "2025-01-21 17:36:29", - "author_account_age_days": 5304 + "author_account_age_days": 5312 }, "https://github.com/jinchanz/ComfyUI-AliCloud-Bailian": { "stars": 1, "last_update": "2025-06-06 11:50:34", - "author_account_age_days": 2422 + "author_account_age_days": 2430 }, "https://github.com/jn-jairo/jn_node_suite_comfyui": { "stars": 6, "last_update": "2024-06-08 05:15:33", - "author_account_age_days": 4341 + "author_account_age_days": 4349 }, "https://github.com/jordancoult/ComfyUI_HelpfulNodes": { "stars": 0, "last_update": "2025-05-17 01:04:37", - "author_account_age_days": 2782 + "author_account_age_days": 2790 }, "https://github.com/jschoormans/Comfy-InterestingPixels": { "stars": 1, "last_update": "2025-02-05 08:34:17", - "author_account_age_days": 3896 + "author_account_age_days": 3904 }, "https://github.com/jtscmw01/ComfyUI-DiffBIR": { - "stars": 283, + "stars": 285, "last_update": "2024-05-21 05:28:34", - "author_account_age_days": 859 + "author_account_age_days": 867 }, "https://github.com/jtydhr88/ComfyUI-Unique3D": { "stars": 212, "last_update": "2024-10-18 10:37:10", - "author_account_age_days": 5110 + "author_account_age_days": 5118 }, "https://github.com/jtydhr88/ComfyUI_frontend_vue_basic": { - "stars": 2, + "stars": 3, "last_update": "2025-06-13 00:22:50", - "author_account_age_days": 5110 + "author_account_age_days": 5118 }, "https://github.com/kadirnar/ComfyUI-Adapter": { "stars": 3, "last_update": "2024-04-03 12:05:39", - "author_account_age_days": 2686 + "author_account_age_days": 2694 }, "https://github.com/kandy/ComfyUI-KAndy": { "stars": 0, "last_update": "2025-04-08 01:42:33", - "author_account_age_days": 5830 + "author_account_age_days": 5838 }, "https://github.com/kappa54m/ComfyUI_Usability": { "stars": 0, "last_update": "2024-08-08 15:31:47", - "author_account_age_days": 1868 + "author_account_age_days": 1876 }, "https://github.com/karthikg-09/ComfyUI-3ncrypt": { "stars": 0, "last_update": "2024-12-27 09:09:07", - "author_account_age_days": 552 + "author_account_age_days": 561 }, "https://github.com/kevin314/ComfyUI-FastVideo": { - "stars": 1, + "stars": 2, "last_update": "2025-05-25 10:25:28", - "author_account_age_days": 2489 + "author_account_age_days": 2497 }, "https://github.com/kijai/ComfyUI-CV-VAE": { "stars": 11, "last_update": "2024-06-03 21:46:49", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-DeepSeek-VL": { "stars": 46, "last_update": "2024-05-21 16:43:40", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-DiffSynthWrapper": { "stars": 61, "last_update": "2024-06-22 00:16:46", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-DiffusersSD3Wrapper": { "stars": 10, "last_update": "2024-06-17 13:03:43", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-EasyAnimateWrapper": { "stars": 85, "last_update": "2024-08-14 02:20:18", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper": { "stars": 63, "last_update": "2025-04-18 10:50:26", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-FramePackWrapper": { - "stars": 1324, + "stars": 1352, "last_update": "2025-06-03 21:48:59", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-Hunyuan3DWrapper": { - "stars": 739, + "stars": 757, "last_update": "2025-06-15 09:52:41", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-HunyuanVideoWrapper": { - "stars": 2472, + "stars": 2486, "last_update": "2025-05-12 13:31:36", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-MMAudio": { - "stars": 344, + "stars": 354, "last_update": "2025-01-23 17:06:52", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-MochiWrapper": { - "stars": 784, + "stars": 786, "last_update": "2024-11-11 13:54:57", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-VEnhancer": { "stars": 73, "last_update": "2024-11-02 00:24:36", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-VideoNoiseWarp": { - "stars": 153, + "stars": 155, "last_update": "2025-03-30 13:39:03", - "author_account_age_days": 2540 + "author_account_age_days": 2548 }, "https://github.com/kijai/ComfyUI-WanVideoWrapper": { - "stars": 2884, - "last_update": "2025-06-15 16:01:09", - "author_account_age_days": 2540 + "stars": 3054, + "last_update": "2025-06-20 14:31:02", + "author_account_age_days": 2548 }, "https://github.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks": { "stars": 16, "last_update": "2025-04-03 17:22:59", - "author_account_age_days": 213 + "author_account_age_days": 221 }, "https://github.com/kimara-ai/ComfyUI-Kimara-AI-Image-From-URL": { "stars": 0, "last_update": "2025-05-06 07:50:34", - "author_account_age_days": 213 + "author_account_age_days": 221 }, "https://github.com/kk8bit/KayTool": { - "stars": 137, + "stars": 149, "last_update": "2025-05-25 03:46:23", - "author_account_age_days": 714 + "author_account_age_days": 722 }, "https://github.com/krich-cto/ComfyUI-Flow-Control": { "stars": 1, "last_update": "2025-06-01 03:38:17", - "author_account_age_days": 1622 + "author_account_age_days": 1630 }, "https://github.com/krisshen2021/comfyui_OpenRouterNodes": { "stars": 0, "last_update": "2025-02-22 02:29:36", - "author_account_age_days": 1545 + "author_account_age_days": 1553 }, "https://github.com/kuschanow/ComfyUI-SD-Slicer": { "stars": 0, "last_update": "2024-12-08 16:59:31", - "author_account_age_days": 1738 + "author_account_age_days": 1746 }, "https://github.com/kxh/ComfyUI-ImageUpscaleWithModelMultipleTimes": { "stars": 0, "last_update": "2024-10-16 13:53:50", - "author_account_age_days": 4904 + "author_account_age_days": 4912 }, "https://github.com/kxh/ComfyUI-sam2": { "stars": 1, "last_update": "2024-10-10 18:06:11", - "author_account_age_days": 4904 + "author_account_age_days": 4912 }, "https://github.com/kycg/comfyui-Kwtoolset": { "stars": 0, "last_update": "2024-11-04 21:14:07", - "author_account_age_days": 1297 + "author_account_age_days": 1305 }, "https://github.com/kylegrover/comfyui-python-cowboy": { "stars": 1, "last_update": "2024-11-04 18:37:04", - "author_account_age_days": 3009 + "author_account_age_days": 3017 }, "https://github.com/l1yongch1/ComfyUI-YcNodes": { "stars": 1, "last_update": "2025-05-05 04:00:28", - "author_account_age_days": 1133 + "author_account_age_days": 1141 }, "https://github.com/laksjdjf/ssd-1b-comfyui": { "stars": 1, "last_update": "2023-10-27 20:05:06", - "author_account_age_days": 3188 + "author_account_age_days": 3196 }, "https://github.com/laubsauger/comfyui-storyboard": { - "stars": 4, + "stars": 5, "last_update": "2025-06-14 23:33:25", - "author_account_age_days": 4912 + "author_account_age_days": 4920 }, "https://github.com/lcolok/ComfyUI-MagicAI": { "stars": 7, "last_update": "2024-11-14 08:21:40", - "author_account_age_days": 2770 + "author_account_age_days": 2778 }, "https://github.com/leadbreak/comfyui-faceaging": { "stars": 84, "last_update": "2024-10-31 08:25:21", - "author_account_age_days": 1730 + "author_account_age_days": 1738 }, "https://github.com/leeguandong/ComfyUI_AliControlnetInpainting": { "stars": 3, "last_update": "2024-09-25 10:44:58", - "author_account_age_days": 3151 + "author_account_age_days": 3159 }, "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh": { - "stars": 22, + "stars": 23, "last_update": "2024-08-01 03:37:17", - "author_account_age_days": 4432 + "author_account_age_days": 4440 }, "https://github.com/leon-etienne/ComfyUI_Scoring-Nodes": { "stars": 0, "last_update": "2025-04-21 11:48:26", - "author_account_age_days": 709 + "author_account_age_days": 717 }, "https://github.com/lgldlk/ComfyUI-img-tiler": { "stars": 1, "last_update": "2024-10-17 07:56:42", - "author_account_age_days": 2047 + "author_account_age_days": 2055 }, "https://github.com/lichenhao/Comfyui_Ryota": { "stars": 0, "last_update": "2024-09-07 08:25:54", - "author_account_age_days": 4724 + "author_account_age_days": 4732 }, "https://github.com/linhusyung/comfyui-Build-and-train-your-network": { "stars": 106, "last_update": "2024-06-26 05:44:43", - "author_account_age_days": 1034 + "author_account_age_days": 1043 }, "https://github.com/littleowl/ComfyUI-MV-HECV": { "stars": 1, "last_update": "2025-06-04 12:42:47", - "author_account_age_days": 5018 + "author_account_age_days": 5026 }, "https://github.com/logtd/ComfyUI-Fluxtapoz": { - "stars": 1338, + "stars": 1344, "last_update": "2025-01-09 02:38:40", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-HunyuanLoom": { "stars": 476, "last_update": "2025-02-21 21:01:57", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/logtd/ComfyUI-Veevee": { "stars": 61, "last_update": "2024-08-12 03:04:12", - "author_account_age_days": 479 + "author_account_age_days": 487 }, "https://github.com/longgui0318/comfyui-one-more-step": { "stars": 1, "last_update": "2024-05-07 08:40:56", - "author_account_age_days": 4521 + "author_account_age_days": 4530 }, "https://github.com/longzoho/ComfyUI-Qdrant-Saver": { "stars": 0, "last_update": "2025-03-07 13:44:52", - "author_account_age_days": 1876 + "author_account_age_days": 1884 + }, + "https://github.com/lord-lethris/ComfyUI-RPG-Characters": { + "stars": 1, + "last_update": "2025-06-18 23:08:15", + "author_account_age_days": 4789 }, "https://github.com/lordwedggie/xcpNodes": { "stars": 0, "last_update": "2024-11-15 06:24:48", - "author_account_age_days": 910 + "author_account_age_days": 918 }, "https://github.com/lrzjason/Comfyui-Condition-Utils": { "stars": 6, "last_update": "2025-05-18 17:09:17", - "author_account_age_days": 4020 + "author_account_age_days": 4028 }, "https://github.com/ltdrdata/ComfyUI-Workflow-Component": { - "stars": 241, + "stars": 242, "last_update": "2024-07-30 08:08:28", - "author_account_age_days": 819 + "author_account_age_days": 827 }, "https://github.com/ltdrdata/comfyui-unsafe-torch": { - "stars": 20, + "stars": 23, "last_update": "2025-06-10 22:31:29", - "author_account_age_days": 819 + "author_account_age_days": 827 }, "https://github.com/lu64k/SK-Nodes": { "stars": 0, "last_update": "2024-11-18 03:47:34", - "author_account_age_days": 748 + "author_account_age_days": 756 }, "https://github.com/lucafoscili/lf-nodes": { - "stars": 9, - "last_update": "2025-06-11 17:23:39", - "author_account_age_days": 2391 + "stars": 11, + "last_update": "2025-06-23 07:17:31", + "author_account_age_days": 2399 }, "https://github.com/lum3on/comfyui_LLM_Polymath": { "stars": 63, "last_update": "2025-06-12 22:24:36", - "author_account_age_days": 131 + "author_account_age_days": 139 }, "https://github.com/lum3on/comfyui_RollingDepth": { "stars": 1, "last_update": "2025-06-01 18:46:56", - "author_account_age_days": 131 + "author_account_age_days": 139 }, "https://github.com/m-ai-studio/mai-prompt-progress": { "stars": 0, "last_update": "2025-04-14 19:13:55", - "author_account_age_days": 405 + "author_account_age_days": 414 }, "https://github.com/machinesarenotpeople/comfyui-energycost": { "stars": 0, "last_update": "2025-05-03 21:22:23", - "author_account_age_days": 1890 + "author_account_age_days": 1898 }, "https://github.com/maekawataiki/ComfyUI-ALB-Login": { "stars": 3, "last_update": "2025-01-17 02:10:49", - "author_account_age_days": 3020 + "author_account_age_days": 3028 }, "https://github.com/maizerrr/comfyui-code-nodes": { "stars": 0, - "last_update": "2025-05-29 13:57:40", - "author_account_age_days": 3427 + "last_update": "2025-06-24 12:28:51", + "author_account_age_days": 3435 }, "https://github.com/majorsauce/comfyui_indieTools": { "stars": 0, "last_update": "2024-06-25 08:59:57", - "author_account_age_days": 2162 + "author_account_age_days": 2170 }, "https://github.com/mamorett/ComfyUI-SmolVLM": { "stars": 5, "last_update": "2024-11-30 14:31:14", - "author_account_age_days": 1108 + "author_account_age_days": 1116 + }, + "https://github.com/mamorett/comfyui_minicpm_vision": { + "stars": 0, + "last_update": "2025-06-17 13:25:18", + "author_account_age_days": 1116 }, "https://github.com/marcueberall/ComfyUI-BuildPath": { "stars": 0, "last_update": "2024-02-06 07:57:33", - "author_account_age_days": 2139 + "author_account_age_days": 2147 }, "https://github.com/marduk191/comfyui-marnodes": { "stars": 3, "last_update": "2025-03-27 13:26:45", - "author_account_age_days": 4772 - }, - "https://github.com/markuryy/comfyui-spiritparticle": { - "stars": 0, - "last_update": "2025-03-26 03:27:05", - "author_account_age_days": 3235 + "author_account_age_days": 4780 }, "https://github.com/maruhidd/ComfyUI_Transparent-Background": { "stars": 4, "last_update": "2024-06-14 07:02:56", - "author_account_age_days": 2612 + "author_account_age_days": 2620 }, "https://github.com/mashb1t/comfyui-nodes-mashb1t": { "stars": 0, "last_update": "2024-06-11 15:55:53", - "author_account_age_days": 3892 + "author_account_age_days": 3900 }, "https://github.com/masmullin2000/ComfyUI-MMYolo": { "stars": 0, "last_update": "2025-02-22 22:23:02", - "author_account_age_days": 4435 + "author_account_age_days": 4443 }, "https://github.com/matDobek/ComfyUI_duck": { "stars": 0, "last_update": "2025-05-21 13:12:40", - "author_account_age_days": 4434 + "author_account_age_days": 4442 }, "https://github.com/maurorilla/ComfyUI-MisterMR-Nodes": { "stars": 0, "last_update": "2025-05-09 13:18:07", - "author_account_age_days": 4373 + "author_account_age_days": 4381 }, "https://github.com/mehbebe/ComfyLoraGallery": { "stars": 1, "last_update": "2024-12-29 12:44:29", - "author_account_age_days": 715 + "author_account_age_days": 723 }, "https://github.com/melMass/ComfyUI-Lygia": { "stars": 0, "last_update": "2024-07-14 09:59:10", - "author_account_age_days": 4102 + "author_account_age_days": 4110 }, "https://github.com/mikebilly/Transparent-background-comfyUI": { "stars": 2, "last_update": "2025-01-29 16:29:23", - "author_account_age_days": 2921 + "author_account_age_days": 2929 }, "https://github.com/mikeymcfish/FishTools": { - "stars": 25, + "stars": 26, "last_update": "2024-07-13 20:51:17", - "author_account_age_days": 3760 + "author_account_age_days": 3768 + }, + "https://github.com/mikheys/ComfyUI-mikheys": { + "stars": 0, + "last_update": "2025-06-21 15:35:56", + "author_account_age_days": 2766 }, "https://github.com/minhtuannhn/comfyui-gemini-studio": { "stars": 0, "last_update": "2024-11-19 16:05:05", - "author_account_age_days": 1538 + "author_account_age_days": 1546 }, "https://github.com/miragecoa/ComfyUI-LLM-Evaluation": { "stars": 1, "last_update": "2024-11-21 01:29:48", - "author_account_age_days": 923 + "author_account_age_days": 931 }, "https://github.com/mliand/ComfyUI-Calendar-Node": { "stars": 0, "last_update": "2025-01-10 07:33:40", - "author_account_age_days": 743 + "author_account_age_days": 751 }, "https://github.com/mm-akhtar/comfyui-mask-selector-node": { "stars": 0, "last_update": "2025-04-18 10:06:17", - "author_account_age_days": 1850 + "author_account_age_days": 1858 }, "https://github.com/mohamedsobhi777/ComfyUI-FramerComfy": { "stars": 0, "last_update": "2025-01-25 14:39:17", - "author_account_age_days": 2776 + "author_account_age_days": 2784 }, "https://github.com/molbal/comfy-url-fetcher": { "stars": 0, "last_update": "2025-02-02 13:37:48", - "author_account_age_days": 4254 + "author_account_age_days": 4262 }, "https://github.com/moonwhaler/comfyui-moonpack": { "stars": 0, - "last_update": "2025-06-13 14:37:10", - "author_account_age_days": 4781 + "last_update": "2025-06-20 16:22:16", + "author_account_age_days": 4789 }, "https://github.com/mr-krak3n/ComfyUI-Qwen": { - "stars": 20, + "stars": 21, "last_update": "2025-03-08 12:12:29", - "author_account_age_days": 2398 + "author_account_age_days": 2406 }, "https://github.com/mut-ex/comfyui-gligengui-node": { "stars": 51, "last_update": "2024-02-28 02:46:05", - "author_account_age_days": 3215 + "author_account_age_days": 3223 }, "https://github.com/muvich3n/ComfyUI-Claude-I2T": { "stars": 0, "last_update": "2025-01-15 07:50:46", - "author_account_age_days": 1655 + "author_account_age_days": 1663 }, "https://github.com/muvich3n/ComfyUI-Crop-Border": { "stars": 0, "last_update": "2025-02-24 10:01:53", - "author_account_age_days": 1655 + "author_account_age_days": 1663 }, "https://github.com/naderzare/comfyui-inodes": { "stars": 0, "last_update": "2025-02-05 04:32:29", - "author_account_age_days": 3047 + "author_account_age_days": 3055 }, "https://github.com/nat-chan/comfyui-exec": { "stars": 3, "last_update": "2024-05-28 11:56:37", - "author_account_age_days": 3350 + "author_account_age_days": 3358 }, "https://github.com/nat-chan/comfyui-paint": { "stars": 3, "last_update": "2024-06-14 11:01:38", - "author_account_age_days": 3350 + "author_account_age_days": 3358 }, "https://github.com/nat-chan/transceiver": { "stars": 1, "last_update": "2024-05-01 10:03:01", - "author_account_age_days": 3350 + "author_account_age_days": 3358 }, "https://github.com/neeltheninja/ComfyUI-TempFileDeleter": { "stars": 0, "last_update": "2024-10-26 19:25:43", - "author_account_age_days": 2235 + "author_account_age_days": 2243 }, "https://github.com/neeltheninja/ComfyUI-TextOverlay": { "stars": 0, "last_update": "2024-07-31 18:40:19", - "author_account_age_days": 2235 + "author_account_age_days": 2243 }, "https://github.com/neo0801/my-comfy-node": { "stars": 0, "last_update": "2024-09-20 07:49:04", - "author_account_age_days": 4137 + "author_account_age_days": 4145 }, "https://github.com/netanelben/comfyui-camera2image-customnode": { "stars": 1, "last_update": "2024-09-29 15:14:57", - "author_account_age_days": 4239 + "author_account_age_days": 4247 }, "https://github.com/netanelben/comfyui-image2image-customnode": { "stars": 1, "last_update": "2024-09-29 12:50:53", - "author_account_age_days": 4239 + "author_account_age_days": 4247 }, "https://github.com/netanelben/comfyui-photobooth-customnode": { "stars": 0, "last_update": "2024-10-02 08:00:05", - "author_account_age_days": 4239 + "author_account_age_days": 4247 }, "https://github.com/netanelben/comfyui-text2image-customnode": { "stars": 4, "last_update": "2024-09-29 15:19:37", - "author_account_age_days": 4239 + "author_account_age_days": 4247 }, "https://github.com/neverbiasu/ComfyUI-ControlNeXt": { "stars": 3, "last_update": "2024-08-15 08:15:43", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-DeepSeek": { "stars": 0, "last_update": "2025-02-01 04:17:59", - "author_account_age_days": 1376 + "author_account_age_days": 1384 + }, + "https://github.com/neverbiasu/ComfyUI-Show-o": { + "stars": 0, + "last_update": "2025-06-24 06:33:20", + "author_account_age_days": 1384 }, "https://github.com/neverbiasu/ComfyUI-StereoCrafter": { "stars": 4, "last_update": "2024-12-30 13:32:43", - "author_account_age_days": 1376 + "author_account_age_days": 1384 }, "https://github.com/newraina/ComfyUI-Remote-Save-Image": { "stars": 0, "last_update": "2025-04-18 10:50:44", - "author_account_age_days": 3793 + "author_account_age_days": 3802 }, "https://github.com/nidefawl/ComfyUI-nidefawl": { "stars": 0, "last_update": "2024-01-16 18:16:41", - "author_account_age_days": 5225 + "author_account_age_days": 5233 }, "https://github.com/nikkuexe/ComfyUI-ListDataHelpers": { "stars": 0, "last_update": "2024-09-21 16:15:57", - "author_account_age_days": 4906 + "author_account_age_days": 4914 }, "https://github.com/nkchocoai/ComfyUI-PromptUtilities": { "stars": 18, "last_update": "2025-03-30 08:19:25", - "author_account_age_days": 516 + "author_account_age_days": 525 }, "https://github.com/nobandegani/comfyui_ino_nodes": { "stars": 1, - "last_update": "2025-05-16 08:35:21", - "author_account_age_days": 1644 + "last_update": "2025-06-19 10:00:24", + "author_account_age_days": 1652 }, "https://github.com/nomcycle/ComfyUI_Cluster": { "stars": 3, "last_update": "2025-05-28 03:57:01", - "author_account_age_days": 4695 + "author_account_age_days": 4703 }, "https://github.com/norgeous/ComfyUI-UI-Builder": { "stars": 9, "last_update": "2024-08-11 22:22:04", - "author_account_age_days": 4386 + "author_account_age_days": 4394 }, "https://github.com/osuiso-depot/comfyui-keshigom_custom": { "stars": 0, "last_update": "2025-02-27 10:01:17", - "author_account_age_days": 1467 + "author_account_age_days": 1475 }, "https://github.com/owengillett/ComfyUI-tilefusion": { "stars": 0, "last_update": "2025-02-19 11:05:53", - "author_account_age_days": 2089 + "author_account_age_days": 2097 }, "https://github.com/oxysoft/Comfy-Compel": { "stars": 0, "last_update": "2025-04-08 13:12:20", - "author_account_age_days": 4468 + "author_account_age_days": 4476 }, "https://github.com/oxysoft/ComfyUI-uiapi": { "stars": 0, "last_update": "2025-01-27 18:29:08", - "author_account_age_days": 4468 + "author_account_age_days": 4476 }, "https://github.com/oyvindg/ComfyUI-TrollSuite": { "stars": 4, "last_update": "2024-08-15 10:37:43", - "author_account_age_days": 2686 + "author_account_age_days": 2695 }, "https://github.com/oztrkoguz/ComfyUI_Kosmos2_BBox_Cutter": { "stars": 16, "last_update": "2024-07-25 05:50:01", - "author_account_age_days": 1198 + "author_account_age_days": 1206 }, "https://github.com/p1atdev/comfyui-aesthetic-predictor": { "stars": 0, "last_update": "2025-05-10 08:03:13", - "author_account_age_days": 1972 + "author_account_age_days": 1980 }, "https://github.com/pacchikAI/ImagePromptBatch": { "stars": 0, "last_update": "2025-05-26 12:48:05", - "author_account_age_days": 35 + "author_account_age_days": 43 }, "https://github.com/pamparamm/ComfyUI-ppm": { - "stars": 188, + "stars": 194, "last_update": "2025-06-13 16:23:47", - "author_account_age_days": 2488 + "author_account_age_days": 2496 }, "https://github.com/papcorns/ComfyUI-Papcorns-Node-UploadToGCS": { "stars": 0, "last_update": "2025-05-28 09:31:23", - "author_account_age_days": 1869 + "author_account_age_days": 1877 }, "https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V": { "stars": 0, "last_update": "2025-01-10 14:28:51", - "author_account_age_days": 1918 + "author_account_age_days": 1926 }, "https://github.com/paulhoux/Smart-Prompting": { "stars": 0, "last_update": "2025-03-10 09:16:44", - "author_account_age_days": 5480 + "author_account_age_days": 5488 }, "https://github.com/phamngoctukts/ComyUI-Tupham": { "stars": 1, "last_update": "2025-01-09 04:02:54", - "author_account_age_days": 4244 + "author_account_age_days": 4252 }, "https://github.com/pictorialink/ComfyUI-static-resource": { "stars": 0, "last_update": "2025-05-29 09:04:55", - "author_account_age_days": 33 + "author_account_age_days": 41 }, "https://github.com/pinkpixel-dev/comfyui-llm-prompt-enhancer": { "stars": 6, "last_update": "2025-01-28 12:43:25", - "author_account_age_days": 146 + "author_account_age_days": 154 }, "https://github.com/pixuai/ComfyUI-PixuAI": { "stars": 0, "last_update": "2025-03-01 13:56:56", - "author_account_age_days": 107 + "author_account_age_days": 115 }, "https://github.com/pmarmotte2/Comfyui-VibeVoiceSelector": { "stars": 1, "last_update": "2025-04-08 11:18:55", - "author_account_age_days": 421 + "author_account_age_days": 429 }, "https://github.com/poisenbery/NudeNet-Detector-Provider": { "stars": 1, "last_update": "2024-02-26 02:11:27", - "author_account_age_days": 1594 + "author_account_age_days": 1602 }, "https://github.com/pomelyu/cy-prompt-tools": { "stars": 0, "last_update": "2025-06-13 15:09:26", - "author_account_age_days": 4612 + "author_account_age_days": 4620 }, "https://github.com/power88/ComfyUI-PDiD-Nodes": { "stars": 0, "last_update": "2025-01-04 11:21:29", - "author_account_age_days": 3088 + "author_account_age_days": 3096 }, "https://github.com/prabinpebam/anyPython": { "stars": 13, "last_update": "2025-02-15 06:56:01", - "author_account_age_days": 4599 + "author_account_age_days": 4607 }, "https://github.com/prodogape/ComfyUI-clip-interrogator": { - "stars": 57, + "stars": 58, "last_update": "2024-07-27 18:33:22", - "author_account_age_days": 1387 + "author_account_age_days": 1395 }, "https://github.com/pschroedl/ComfyUI-StreamDiffusion": { "stars": 5, "last_update": "2025-05-21 01:33:15", - "author_account_age_days": 4344 + "author_account_age_days": 4352 }, "https://github.com/pzzmyc/comfyui-sd3-simple-simpletuner": { "stars": 1, "last_update": "2024-06-19 12:48:18", - "author_account_age_days": 2456 + "author_account_age_days": 2464 }, "https://github.com/qlikpetersen/ComfyUI-AI_Tools": { "stars": 0, - "last_update": "2025-06-12 20:27:33", - "author_account_age_days": 1385 + "last_update": "2025-06-20 15:46:20", + "author_account_age_days": 1393 }, "https://github.com/rakki194/ComfyUI_WolfSigmas": { "stars": 3, "last_update": "2025-05-21 13:02:21", - "author_account_age_days": 134 + "author_account_age_days": 142 }, "https://github.com/ralonsobeas/ComfyUI-HDRConversion": { "stars": 5, "last_update": "2024-12-12 20:21:26", - "author_account_age_days": 2415 + "author_account_age_days": 2423 }, "https://github.com/redhottensors/ComfyUI-ODE": { "stars": 49, "last_update": "2024-08-01 06:57:05", - "author_account_age_days": 496 + "author_account_age_days": 504 }, "https://github.com/retech995/Save_Florence2_Bulk_Prompts": { "stars": 0, "last_update": "2025-06-03 18:27:37", - "author_account_age_days": 2337 + "author_account_age_days": 2345 }, "https://github.com/rhinoflavored/comfyui_QT": { "stars": 0, "last_update": "2025-03-18 08:35:59", - "author_account_age_days": 353 + "author_account_age_days": 361 }, "https://github.com/ricklove/ComfyUI-AutoSeg-SAM2": { "stars": 0, "last_update": "2025-03-15 20:46:14", - "author_account_age_days": 5189 + "author_account_age_days": 5197 }, "https://github.com/rickyars/sd-cn-animation": { "stars": 0, "last_update": "2025-05-18 22:33:04", - "author_account_age_days": 4561 + "author_account_age_days": 4569 }, "https://github.com/rishipandey125/ComfyUI-FramePacking": { "stars": 9, "last_update": "2025-06-09 21:51:46", - "author_account_age_days": 2707 + "author_account_age_days": 2715 }, "https://github.com/risunobushi/ComfyUI_FaceMesh_Eyewear_Mask": { "stars": 0, "last_update": "2025-05-14 07:13:26", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/risunobushi/ComfyUI_FocusMask": { "stars": 4, "last_update": "2024-12-09 11:52:53", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/risunobushi/ComfyUI_HEXtoRGB": { "stars": 1, "last_update": "2025-01-28 14:37:42", - "author_account_age_days": 1004 + "author_account_age_days": 1012 }, "https://github.com/ritikvirus/comfyui-terminal-modal-node": { "stars": 0, "last_update": "2025-03-01 20:03:57", - "author_account_age_days": 2536 + "author_account_age_days": 2544 }, "https://github.com/romeobuilderotti/ComfyUI-EZ-Pipes": { "stars": 3, "last_update": "2023-11-15 22:00:49", - "author_account_age_days": 647 + "author_account_age_days": 655 }, "https://github.com/ronalds-eu/comfyui-plus-integrations": { "stars": 0, "last_update": "2025-05-02 17:38:19", - "author_account_age_days": 4138 + "author_account_age_days": 4146 }, "https://github.com/rouxianmantou/comfyui-rxmt-nodes": { "stars": 0, "last_update": "2025-04-03 09:55:50", - "author_account_age_days": 3533 + "author_account_age_days": 3541 }, "https://github.com/rphmeier/comfyui-videodepthanything": { "stars": 1, "last_update": "2025-04-14 18:53:06", - "author_account_age_days": 3842 + "author_account_age_days": 3850 }, "https://github.com/ruka-game/rukalib_comfyui": { "stars": 0, "last_update": "2024-10-03 23:59:55", - "author_account_age_days": 262 + "author_account_age_days": 270 }, "https://github.com/ryanontheinside/ComfyUI-Livepeer": { "stars": 1, "last_update": "2025-04-21 22:53:14", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI-MineWorld": { "stars": 2, "last_update": "2025-04-16 18:59:09", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/ryanontheinside/ComfyUI_YoloNasObjectDetection_Tensorrt": { "stars": 1, "last_update": "2024-12-31 17:43:33", - "author_account_age_days": 4046 + "author_account_age_days": 4054 }, "https://github.com/sangeet/testui": { "stars": 2, "last_update": "2024-05-15 00:55:17", - "author_account_age_days": 5437 + "author_account_age_days": 5445 }, "https://github.com/sdfxai/SDFXBridgeForComfyUI": { "stars": 11, "last_update": "2024-06-14 10:26:56", - "author_account_age_days": 591 + "author_account_age_days": 600 }, "https://github.com/seancheung/comfyui-creative-nodes": { "stars": 0, "last_update": "2024-09-13 06:22:45", - "author_account_age_days": 4295 + "author_account_age_days": 4303 }, "https://github.com/shadowcz007/ComfyUI-PuLID-Test": { "stars": 9, "last_update": "2024-05-12 14:37:28", - "author_account_age_days": 3671 + "author_account_age_days": 3680 }, "https://github.com/shadowcz007/Comfyui-EzAudio": { "stars": 1, "last_update": "2024-09-22 03:17:40", - "author_account_age_days": 3671 + "author_account_age_days": 3680 }, "https://github.com/shadowcz007/comfyui-CLIPSeg": { "stars": 3, "last_update": "2024-02-08 02:16:24", - "author_account_age_days": 3671 + "author_account_age_days": 3680 }, "https://github.com/shadowcz007/comfyui-hydit-lowvram": { "stars": 1, "last_update": "2024-07-31 10:04:09", - "author_account_age_days": 3671 + "author_account_age_days": 3680 }, "https://github.com/shadowcz007/comfyui-sd-prompt-mixlab": { "stars": 16, "last_update": "2024-05-21 19:47:56", - "author_account_age_days": 3671 + "author_account_age_days": 3680 }, "https://github.com/shinich39/comfyui-nothing-happened": { "stars": 0, "last_update": "2025-05-25 10:18:24", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-run-js": { "stars": 0, "last_update": "2025-06-05 13:34:15", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shinich39/comfyui-textarea-is-shit": { "stars": 0, "last_update": "2025-06-03 11:52:52", - "author_account_age_days": 669 + "author_account_age_days": 677 }, "https://github.com/shirazdesigner/CLIPTextEncodeAndEnhancev4": { "stars": 1, "last_update": "2024-04-27 13:25:08", - "author_account_age_days": 4319 + "author_account_age_days": 4327 }, "https://github.com/shuanshuan/ComfyUI_CheckPointLoader_Ext": { "stars": 0, "last_update": "2024-08-27 02:24:05", - "author_account_age_days": 4475 + "author_account_age_days": 4483 }, "https://github.com/silent-rain/ComfyUI-SilentRain": { - "stars": 0, - "last_update": "2025-06-16 12:22:44", - "author_account_age_days": 2500 + "stars": 1, + "last_update": "2025-06-18 10:08:20", + "author_account_age_days": 2508 }, "https://github.com/silveroxides/ComfyUI_ReduxEmbedToolkit": { "stars": 1, "last_update": "2025-05-16 03:24:41", - "author_account_age_days": 1858 + "author_account_age_days": 1866 }, "https://github.com/simonjaq/ComfyUI-sjnodes": { "stars": 0, - "last_update": "2025-06-15 07:25:37", - "author_account_age_days": 2892 + "last_update": "2025-06-20 08:23:01", + "author_account_age_days": 2900 }, "https://github.com/smthemex/ComfyUI_GPT_SoVITS_Lite": { "stars": 5, "last_update": "2025-03-17 06:45:58", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/smthemex/ComfyUI_MangaNinjia": { - "stars": 52, + "stars": 53, "last_update": "2025-04-09 14:21:57", - "author_account_age_days": 711 + "author_account_age_days": 719 }, "https://github.com/sofakid/dandy": { "stars": 50, "last_update": "2024-05-27 21:46:18", - "author_account_age_days": 4410 + "author_account_age_days": 4418 }, "https://github.com/songtianhui/ComfyUI-DMM": { "stars": 2, "last_update": "2025-04-27 12:38:20", - "author_account_age_days": 1602 + "author_account_age_days": 1610 }, "https://github.com/sorption-dev/mycraft-comfyui": { "stars": 3, "last_update": "2025-04-12 18:08:12", - "author_account_age_days": 79 + "author_account_age_days": 87 }, "https://github.com/sourceful-official/ComfyUI_InstructPixToPixConditioningLatent": { "stars": 3, "last_update": "2025-01-03 13:20:33", - "author_account_age_days": 1840 + "author_account_age_days": 1848 }, "https://github.com/sourceful-official/comfyui-sourceful-official": { "stars": 0, "last_update": "2025-01-27 14:58:03", - "author_account_age_days": 1840 + "author_account_age_days": 1848 }, "https://github.com/spawner1145/comfyui-spawner-nodes": { - "stars": 1, + "stars": 2, "last_update": "2025-06-09 11:07:31", - "author_account_age_days": 295 + "author_account_age_days": 303 }, "https://github.com/springjk/ComfyUI-Psutil-Container-Memory-Patch": { "stars": 0, "last_update": "2025-04-23 15:12:34", - "author_account_age_days": 4018 + "author_account_age_days": 4026 }, "https://github.com/sswink/comfyui-lingshang": { "stars": 0, "last_update": "2024-11-06 15:04:22", - "author_account_age_days": 2893 + "author_account_age_days": 2901 + }, + "https://github.com/stalkervr/comfyui-custom-path-nodes": { + "stars": 1, + "last_update": "2025-06-21 07:29:47", + "author_account_age_days": 2732 }, "https://github.com/stavsap/ComfyUI-React-SDK": { "stars": 12, "last_update": "2024-03-17 21:54:21", - "author_account_age_days": 4441 + "author_account_age_days": 4449 }, "https://github.com/steelan9199/ComfyUI-Teeth": { "stars": 9, "last_update": "2025-03-03 01:44:23", - "author_account_age_days": 1211 + "author_account_age_days": 1219 }, "https://github.com/strhwste/comfyui_csv_utils": { "stars": 0, "last_update": "2025-06-03 23:04:43", - "author_account_age_days": 829 + "author_account_age_days": 837 }, "https://github.com/stutya/ComfyUI-Terminal": { "stars": 0, "last_update": "2025-05-11 21:29:49", - "author_account_age_days": 4195 + "author_account_age_days": 4203 }, "https://github.com/sugarkwork/comfyui_image_crop": { "stars": 0, "last_update": "2025-03-14 01:43:03", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/sugarkwork/comfyui_my_img_util": { "stars": 0, "last_update": "2025-04-04 15:51:26", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/sugarkwork/comfyui_psd": { "stars": 6, "last_update": "2025-01-14 04:33:37", - "author_account_age_days": 1232 + "author_account_age_days": 1240 }, "https://github.com/suncat2ps/ComfyUI-SaveImgNextcloud": { "stars": 0, - "last_update": "2024-11-12 03:30:38", - "author_account_age_days": 4482 + "last_update": "2025-06-23 04:03:38", + "author_account_age_days": 4490 }, "https://github.com/takoyaki1118/ComfyUI_PromptExtractor": { "stars": 0, "last_update": "2025-06-05 07:01:24", - "author_account_age_days": 2456 + "author_account_age_days": 2465 }, "https://github.com/talesofai/comfyui-supersave": { "stars": 2, "last_update": "2023-12-27 02:05:53", - "author_account_age_days": 913 + "author_account_age_days": 921 }, "https://github.com/talon468/ComfyUI-Rpg-Architect": { "stars": 4, "last_update": "2024-08-31 14:47:47", - "author_account_age_days": 775 + "author_account_age_days": 783 + }, + "https://github.com/tankenyuen-ola/comfyui-env-variable-reader": { + "stars": 0, + "last_update": "2025-06-19 06:21:23", + "author_account_age_days": 169 }, "https://github.com/tanmoy-it/comfyuiCustomNode": { "stars": 0, "last_update": "2025-05-10 07:45:32", - "author_account_age_days": 289 + "author_account_age_days": 297 }, "https://github.com/tc888/ComfyUI_Save_Flux_Image": { "stars": 0, "last_update": "2025-02-09 17:21:22", - "author_account_age_days": 2617 + "author_account_age_days": 2625 }, "https://github.com/techidsk/comfyui_molook_nodes": { "stars": 0, "last_update": "2025-03-31 02:17:02", - "author_account_age_days": 2545 + "author_account_age_days": 2553 }, "https://github.com/techtruth/ComfyUI-Dreambooth": { "stars": 0, "last_update": "2025-04-06 02:57:20", - "author_account_age_days": 2988 + "author_account_age_days": 2996 }, "https://github.com/techzuhaib/ComfyUI-CacheImageNode": { "stars": 0, "last_update": "2024-11-29 07:31:49", - "author_account_age_days": 526 + "author_account_age_days": 534 }, "https://github.com/thderoo/ComfyUI-_topfun_s_nodes": { "stars": 6, "last_update": "2024-07-03 14:39:28", - "author_account_age_days": 3223 + "author_account_age_days": 3231 }, "https://github.com/thot-experiment/comfy-live-preview": { "stars": 2, "last_update": "2025-02-19 20:30:13", - "author_account_age_days": 1308 + "author_account_age_days": 1316 }, "https://github.com/threadedblue/MLXnodes": { "stars": 2, "last_update": "2025-02-15 13:41:14", - "author_account_age_days": 4321 + "author_account_age_days": 4329 }, "https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes": { "stars": 0, "last_update": "2024-03-05 13:31:31", - "author_account_age_days": 470 + "author_account_age_days": 478 }, "https://github.com/tom-doerr/dspy_nodes": { - "stars": 188, + "stars": 189, "last_update": "2024-12-01 20:14:37", - "author_account_age_days": 3137 + "author_account_age_days": 3145 }, "https://github.com/tracerstar/comfyui-p5js-node": { "stars": 37, "last_update": "2024-07-05 23:47:57", - "author_account_age_days": 5555 + "author_account_age_days": 5563 }, "https://github.com/trampolin/comfy-ui-scryfall": { "stars": 0, "last_update": "2025-05-20 11:46:54", - "author_account_age_days": 4602 + "author_account_age_days": 4610 }, "https://github.com/trashgraphicard/Albedo-Sampler-for-ComfyUI": { "stars": 4, "last_update": "2024-12-04 23:50:38", - "author_account_age_days": 1032 + "author_account_age_days": 1040 }, "https://github.com/truebillyblue/lC.ComfyUI_epistemic_nodes": { "stars": 0, "last_update": "2025-05-29 14:43:38", - "author_account_age_days": 112 + "author_account_age_days": 120 }, "https://github.com/tuckerdarby/ComfyUI-TDNodes": { "stars": 3, "last_update": "2024-02-19 17:00:55", - "author_account_age_days": 3295 + "author_account_age_days": 3303 }, "https://github.com/turskeli/comfyui-SetWallpaper": { "stars": 0, "last_update": "2025-04-23 22:46:46", - "author_account_age_days": 4974 + "author_account_age_days": 4982 }, "https://github.com/tzsoulcap/ComfyUI-SaveImg-W-MetaData": { "stars": 0, "last_update": "2025-04-11 15:28:03", - "author_account_age_days": 2179 + "author_account_age_days": 2187 }, "https://github.com/umisetokikaze/comfyui_mergekit": { "stars": 0, "last_update": "2024-04-28 07:21:00", - "author_account_age_days": 2180 + "author_account_age_days": 2188 }, "https://github.com/unanan/ComfyUI-Dist": { "stars": 6, "last_update": "2024-02-28 10:03:50", - "author_account_age_days": 3255 + "author_account_age_days": 3263 }, "https://github.com/usman2003/ComfyUI-Classifiers": { "stars": 0, "last_update": "2025-05-21 12:44:01", - "author_account_age_days": 1893 + "author_account_age_days": 1902 }, "https://github.com/usman2003/ComfyUI-RaceDetect": { "stars": 0, "last_update": "2025-05-23 12:23:39", - "author_account_age_days": 1893 + "author_account_age_days": 1902 }, "https://github.com/usrname0/ComfyUI-AllergicPack": { "stars": 0, "last_update": "2025-06-14 00:52:42", - "author_account_age_days": 2770 + "author_account_age_days": 2778 }, "https://github.com/var1ableX/ComfyUI_Accessories": { "stars": 1, "last_update": "2025-02-09 14:31:19", - "author_account_age_days": 5121 + "author_account_age_days": 5129 }, "https://github.com/vchopine/ComfyUI_Toolbox": { "stars": 2, "last_update": "2025-03-18 16:12:09", - "author_account_age_days": 3947 + "author_account_age_days": 3955 }, "https://github.com/virallover/comfyui-virallover": { "stars": 0, "last_update": "2025-06-02 13:49:38", - "author_account_age_days": 49 + "author_account_age_days": 57 + }, + "https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1": { + "stars": 27, + "last_update": "2025-06-24 11:24:47", + "author_account_age_days": 5405 }, "https://github.com/vladp0727/Comfyui-with-Furniture": { "stars": 0, "last_update": "2025-04-18 08:58:04", - "author_account_age_days": 86 + "author_account_age_days": 94 + }, + "https://github.com/vovler/ComfyUI-vovlerTools": { + "stars": 0, + "last_update": "2025-06-22 02:05:44", + "author_account_age_days": 2092 }, "https://github.com/wTechArtist/ComfyUI_VVL_SAM2": { "stars": 1, "last_update": "2025-06-11 11:51:54", - "author_account_age_days": 1718 + "author_account_age_days": 1726 }, "https://github.com/wTechArtist/ComfyUI_VVL_Segmentation": { "stars": 0, "last_update": "2025-05-29 05:25:00", - "author_account_age_days": 1718 + "author_account_age_days": 1726 }, "https://github.com/wTechArtist/ComfyUI_VVL_VideoCamera": { "stars": 0, "last_update": "2025-06-12 02:11:03", - "author_account_age_days": 1718 + "author_account_age_days": 1726 }, "https://github.com/wTechArtist/ComfyUI_vvl_BBOX": { "stars": 0, "last_update": "2025-05-21 12:14:07", - "author_account_age_days": 1718 + "author_account_age_days": 1726 }, "https://github.com/walterFeng/ComfyUI-Image-Utils": { "stars": 3, "last_update": "2025-03-25 14:36:37", - "author_account_age_days": 3133 + "author_account_age_days": 3141 }, "https://github.com/warshanks/Shank-Tools": { "stars": 0, "last_update": "2025-01-26 03:39:09", - "author_account_age_days": 3840 + "author_account_age_days": 3848 }, "https://github.com/watarika/ComfyUI-Text-Utility": { "stars": 1, "last_update": "2025-04-22 14:16:27", - "author_account_age_days": 2090 + "author_account_age_days": 2098 }, "https://github.com/watarika/ComfyUI-exit": { "stars": 0, "last_update": "2025-01-05 03:24:05", - "author_account_age_days": 2090 + "author_account_age_days": 2098 }, "https://github.com/waynepimpzhang/comfyui-opencv-brightestspot": { "stars": 0, "last_update": "2025-01-05 06:04:53", - "author_account_age_days": 4147 + "author_account_age_days": 4156 }, "https://github.com/whmc76/ComfyUI-LongTextTTSSuite": { "stars": 8, "last_update": "2025-06-09 11:08:21", - "author_account_age_days": 809 + "author_account_age_days": 817 }, "https://github.com/wildminder/ComfyUI-MagCache": { "stars": 5, "last_update": "2025-06-13 20:56:49", - "author_account_age_days": 4590 + "author_account_age_days": 4598 }, "https://github.com/willblaschko/ComfyUI-Unload-Models": { "stars": 21, "last_update": "2024-06-30 10:07:40", - "author_account_age_days": 4948 + "author_account_age_days": 4956 }, "https://github.com/wilzamguerrero/Comfyui-zZzZz": { "stars": 2, "last_update": "2025-01-02 00:35:50", - "author_account_age_days": 1045 + "author_account_age_days": 1053 }, "https://github.com/wordbrew/comfyui-wan-control-nodes": { "stars": 6, - "last_update": "2025-04-08 04:15:58", - "author_account_age_days": 970 + "last_update": "2025-06-19 23:37:04", + "author_account_age_days": 978 }, "https://github.com/wormley/comfyui-wormley-nodes": { "stars": 0, "last_update": "2023-11-12 19:05:11", - "author_account_age_days": 2830 + "author_account_age_days": 2838 }, "https://github.com/x3bits/ComfyUI-Power-Flow": { "stars": 2, "last_update": "2025-01-14 14:20:35", - "author_account_age_days": 3740 + "author_account_age_days": 3748 }, "https://github.com/xiaoyumu/ComfyUI-XYNodes": { "stars": 0, "last_update": "2024-12-05 07:07:30", - "author_account_age_days": 4373 + "author_account_age_days": 4382 }, "https://github.com/xinyiSS/CombineMasksNode": { "stars": 0, "last_update": "2025-02-08 04:35:18", - "author_account_age_days": 808 + "author_account_age_days": 816 }, "https://github.com/xl0/q_tools": { "stars": 0, "last_update": "2025-05-28 06:09:00", - "author_account_age_days": 5358 + "author_account_age_days": 5367 }, "https://github.com/xmarked-ai/ComfyUI_misc": { "stars": 2, "last_update": "2025-06-07 16:26:56", - "author_account_age_days": 230 + "author_account_age_days": 238 }, "https://github.com/xqqe/honey_nodes": { "stars": 0, "last_update": "2025-05-03 20:59:53", - "author_account_age_days": 2058 + "author_account_age_days": 2066 }, "https://github.com/xzuyn/ComfyUI-xzuynodes": { "stars": 0, - "last_update": "2025-06-14 18:52:50", - "author_account_age_days": 3477 + "last_update": "2025-06-23 05:03:37", + "author_account_age_days": 3485 }, "https://github.com/y4my4my4m/ComfyUI_Direct3DS2": { "stars": 7, "last_update": "2025-06-01 04:29:47", - "author_account_age_days": 3991 + "author_account_age_days": 3999 + }, + "https://github.com/yamanacn/comfyui_qwen_object": { + "stars": 0, + "last_update": "2025-06-20 12:24:28", + "author_account_age_days": 1685 + }, + "https://github.com/yamanacn/comfyui_qwenbbox": { + "stars": 0, + "last_update": "2025-06-21 03:00:01", + "author_account_age_days": 1685 }, "https://github.com/yanhuifair/ComfyUI-FairLab": { "stars": 1, "last_update": "2025-04-08 09:14:57", - "author_account_age_days": 3919 + "author_account_age_days": 3927 }, "https://github.com/yanhuifair/comfyui-deepseek": { "stars": 4, "last_update": "2025-04-08 09:14:25", - "author_account_age_days": 3919 + "author_account_age_days": 3927 }, "https://github.com/yanlang0123/ComfyUI_Lam": { - "stars": 43, + "stars": 44, "last_update": "2025-05-24 12:20:05", - "author_account_age_days": 3165 + "author_account_age_days": 3173 }, "https://github.com/yichengup/ComfyUI-Transition": { "stars": 3, "last_update": "2025-06-13 03:03:10", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/ComfyUI-YCNodes_Advance": { - "stars": 4, + "stars": 5, "last_update": "2025-06-12 16:38:08", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yichengup/Comfyui-NodeSpark": { "stars": 5, "last_update": "2025-01-20 14:20:36", - "author_account_age_days": 481 + "author_account_age_days": 489 }, "https://github.com/yincangshiwei/ComfyUI-SEQLToolNode": { "stars": 0, "last_update": "2025-05-28 10:06:17", - "author_account_age_days": 3987 + "author_account_age_days": 3995 }, "https://github.com/yojimbodayne/ComfyUI-Dropbox-API": { "stars": 0, "last_update": "2024-08-30 05:29:07", - "author_account_age_days": 307 + "author_account_age_days": 315 }, "https://github.com/zackabrams/ComfyUI-KeySyncWrapper": { - "stars": 1, - "last_update": "2025-06-02 22:59:14", - "author_account_age_days": 2686 + "stars": 2, + "last_update": "2025-06-21 17:46:04", + "author_account_age_days": 2694 }, "https://github.com/zhaorishuai/ComfyUI-StoryboardDistributor": { "stars": 1, "last_update": "2025-04-01 08:10:16", - "author_account_age_days": 2596 + "author_account_age_days": 2604 }, "https://github.com/zhengxyz123/ComfyUI-CLIPSeg": { - "stars": 0, + "stars": 2, "last_update": "2025-05-20 12:40:03", - "author_account_age_days": 2012 + "author_account_age_days": 2020 }, "https://github.com/zhongpei/Comfyui_image2prompt": { - "stars": 347, + "stars": 348, "last_update": "2025-06-06 23:41:46", - "author_account_age_days": 3816 + "author_account_age_days": 3824 }, "https://github.com/zjkhurry/comfyui_MetalFX": { "stars": 1, "last_update": "2025-03-05 07:07:17", - "author_account_age_days": 3337 + "author_account_age_days": 3345 }, "https://github.com/zml-ai/comfyui-hydit": { "stars": 3, "last_update": "2024-08-07 09:37:09", - "author_account_age_days": 2340 + "author_account_age_days": 2348 }, "https://github.com/zyd232/ComfyUI-zyd232-Nodes": { "stars": 0, "last_update": "2025-04-12 01:13:21", - "author_account_age_days": 3981 + "author_account_age_days": 3989 + }, + "https://github.com/zyquon/ComfyUI-Stash": { + "stars": 0, + "last_update": "2025-06-21 03:32:52", + "author_account_age_days": 85 } } \ No newline at end of file diff --git a/node_db/forked/custom-node-list.json b/node_db/forked/custom-node-list.json index affc8898..9f0e8980 100644 --- a/node_db/forked/custom-node-list.json +++ b/node_db/forked/custom-node-list.json @@ -1,5 +1,15 @@ { "custom_nodes": [ + { + "author": "joaomede", + "title": "ComfyUI-Unload-Model-Fork", + "reference": "https://github.com/joaomede/ComfyUI-Unload-Model-Fork", + "files": [ + "https://github.com/joaomede/ComfyUI-Unload-Model-Fork" + ], + "install_type": "git-clone", + "description": "For unloading a model or all models, using the memory management that is already present in ComfyUI. Copied from [a/https://github.com/willblaschko/ComfyUI-Unload-Models](https://github.com/willblaschko/ComfyUI-Unload-Models) but without the unnecessary extra stuff." + }, { "author": "SanDiegoDude", "title": "ComfyUI-HiDream-Sampler [WIP]", diff --git a/node_db/legacy/custom-node-list.json b/node_db/legacy/custom-node-list.json index 23676312..664627f2 100644 --- a/node_db/legacy/custom-node-list.json +++ b/node_db/legacy/custom-node-list.json @@ -1,5 +1,137 @@ { "custom_nodes": [ + { + "author": "armandgw84", + "title": "comfyui-custom-v6 [REMOVED]", + "reference": "https://github.com/armandgw84/comfyui-custom-v6", + "files": [ + "https://github.com/armandgw84/comfyui-custom-v6" + ], + "install_type": "git-clone", + "description": "NODES: Resize With Padding, Wan 2.1 Transition Prompter, Wan Prompt Crafter" + }, + { + "author": "markuryy", + "title": "ComfyUI Spiritparticle Nodes [REMOVED]", + "reference": "https://github.com/markuryy/comfyui-spiritparticle", + "files": [ + "https://github.com/markuryy/comfyui-spiritparticle" + ], + "install_type": "git-clone", + "description": "A node pack by spiritparticle." + }, + { + "author": "SpaceKendo", + "title": "Text to video for Stable Video Diffusion in ComfyUI [REMOVED]", + "id": "svd-txt2vid", + "reference": "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid", + "files": [ + "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid" + ], + "install_type": "git-clone", + "description": "This is node replaces the init_image conditioning for the [a/Stable Video Diffusion](https://github.com/Stability-AI/generative-models) image to video model with text embeds, together with a conditioning frame. The conditioning frame is a set of latents." + }, + { + "author": "vovler", + "title": "ComfyUI Civitai Helper Extension [REMOVED]", + "reference": "https://github.com/vovler/comfyui-civitaihelper", + "files": [ + "https://github.com/vovler/comfyui-civitaihelper" + ], + "install_type": "git-clone", + "description": "ComfyUI extension for parsing Civitai PNG workflows and automatically downloading missing models" + }, + { + "author": "DriftJohnson", + "title": "DJZ-Nodes [REMOVED]", + "id": "DJZ-Nodes", + "reference": "https://github.com/MushroomFleet/DJZ-Nodes", + "files": [ + "https://github.com/MushroomFleet/DJZ-Nodes" + ], + "install_type": "git-clone", + "description": "AspectSize and other nodes" + }, + { + "author": "DriftJohnson", + "title": "KokoroTTS Node [REMOVED]", + "reference": "https://github.com/MushroomFleet/DJZ-KokoroTTS", + "files": [ + "https://github.com/MushroomFleet/DJZ-KokoroTTS" + ], + "install_type": "git-clone", + "description": "This node provides advanced text-to-speech functionality powered by KokoroTTS. Follow the instructions below to install, configure, and use the node within your portable ComfyUI installation." + }, + { + "author": "MushroomFleet", + "title": "DJZ-Pedalboard [REMOVED]", + "reference": "https://github.com/MushroomFleet/DJZ-Pedalboard", + "files": [ + "https://github.com/MushroomFleet/DJZ-Pedalboard" + ], + "install_type": "git-clone", + "description": "This project provides a collection of custom nodes designed for enhanced audio effects in ComfyUI. With an intuitive pedalboard interface, users can easily integrate and manipulate various audio effects within their workflows." + }, + { + "author": "MushroomFleet", + "title": "SVG Suite for ComfyUI [REMOVED]", + "reference": "https://github.com/MushroomFleet/svg-suite", + "files": [ + "https://github.com/MushroomFleet/svg-suite" + ], + "install_type": "git-clone", + "description": "SVG Suite is an advanced set of nodes for converting images to SVG in ComfyUI, expanding upon the functionality of ComfyUI-ToSVG." + }, + { + "author": "joeriben", + "title": "AI4ArtsEd Ollama Prompt Node [DEPRECATED]", + "reference": "https://github.com/joeriben/ai4artsed_comfyui", + "files": [ + "https://github.com/joeriben/ai4artsed_comfyui" + ], + "install_type": "git-clone", + "description": "Experimental nodes for ComfyUI. For more, see [a/https://kubi-meta.de/ai4artsed](https://kubi-meta.de/ai4artsed) A custom ComfyUI node for stylistic and cultural transformation of input text using local LLMs served via Ollama. This node allows you to combine a free-form prompt (e.g. translation, poetic recoding, genre shift) with externally supplied text in the ComfyUI graph. The result is processed via an Ollama-hosted model and returned as plain text." + }, + { + "author": "bento234", + "title": "ComfyUI-bento-toolbox [REMOVED]", + "reference": "https://github.com/bento234/ComfyUI-bento-toolbox", + "files": [ + "https://github.com/bento234/ComfyUI-bento-toolbox" + ], + "install_type": "git-clone", + "description": "NODES: Tile Prompt Distributor" + }, + { + "author": "yichengup", + "title": "ComfyUI-VideoBlender [REMOVED]", + "reference": "https://github.com/yichengup/ComfyUI-VideoBlender", + "files": [ + "https://github.com/yichengup/ComfyUI-VideoBlender" + ], + "install_type": "git-clone", + "description": "Video clip mixing" + }, + { + "author": "xl0", + "title": "latent-tools [REMOVED]", + "reference": "https://github.com/xl0/latent-tools", + "files": [ + "https://github.com/xl0/latent-tools" + ], + "install_type": "git-clone", + "description": "Visualize and manipulate the latent space in ComfyUI" + }, + { + "author": "Conor-Collins", + "title": "ComfyUI-CoCoTools [REMOVED]", + "reference": "https://github.com/Conor-Collins/coco_tools", + "files": [ + "https://github.com/Conor-Collins/coco_tools" + ], + "install_type": "git-clone", + "description": "A set of custom nodes for ComfyUI providing advanced image processing, file handling, and utility functions." + }, { "author": "theUpsider", "title": "ComfyUI-Logic [DEPRECATED]", diff --git a/node_db/new/custom-node-list.json b/node_db/new/custom-node-list.json index bb1f6e66..70be7b72 100644 --- a/node_db/new/custom-node-list.json +++ b/node_db/new/custom-node-list.json @@ -1,5 +1,544 @@ { "custom_nodes": [ + { + "author": "leonardomiramondi", + "title": "Flux Context ComfyUI Node", + "reference": "https://github.com/leonardomiramondi/flux-context-comfyui", + "files": [ + "https://github.com/leonardomiramondi/flux-context-comfyui" + ], + "install_type": "git-clone", + "description": "ComfyUI node for Flux Context (Kontext) image editing" + }, + { + "author": "Shiba-2-shiba", + "title": "ComfyUI-Magcache-for-SDXL", + "reference": "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL", + "files": [ + "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL" + ], + "install_type": "git-clone", + "description": "An experimental implementation of MagCache for SDXL" + }, + { + "author": "synthetai", + "title": "ComfyUI-JM-Volcengine-API", + "reference": "https://github.com/synthetai/ComfyUI-JM-Volcengine-API", + "files": [ + "https://github.com/synthetai/ComfyUI-JM-Volcengine-API" + ], + "install_type": "git-clone", + "description": "volcengine comfyui api" + }, + { + "author": "fredconex", + "title": "SongBloom", + "reference": "https://github.com/fredconex/ComfyUI-SongBloom", + "files": [ + "https://github.com/fredconex/ComfyUI-SongBloom" + ], + "install_type": "git-clone", + "description": "ComfyUI Nodes for SongBloom" + }, + { + "author": "AKharytonchyk", + "title": "ComfyUI-telegram-bot-node", + "reference": "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node", + "files": [ + "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node" + ], + "install_type": "git-clone", + "description": "ComfyUI custom nodes for Telegram bot integration" + }, + { + "author": "cmdicely", + "title": "GrsAI api in ComfyUI", + "reference": "https://github.com/31702160136/ComfyUI-GrsAI", + "files": [ + "https://github.com/31702160136/ComfyUI-GrsAI" + ], + "install_type": "git-clone", + "description": "GrsAI API node supports models: Flux-Pro-1.1 (¥ 0.03), Flux-Ultra-1.1 (¥ 0.04), Flux Kontext Pro (¥ 0.035), Flux Kontext Max (¥ 0.07), GPT Image (¥ 0.02). Support text generated images, image generated images, and multi image fusion." + }, + { + "author": "Limbicnation", + "title": "ComfyUI Face Detection Node", + "id": "comfyui-face-detection-node", + "reference": "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode", + "files": [ + "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node for face detection and cropping using OpenCV Haar cascades, with full ComfyUI v3 schema support and backward compatibility. Features adjustable detection threshold, minimum face size, padding, and multiple classifier options.", + "nodename_pattern": "FaceDetectionNode" + }, + { + "author": "jurdnf", + "title": "ComfyUI-JurdnsIterativeNoiseKsampler", + "reference": "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler", + "files": [ + "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node that adds controlled noise injection during the sampling process for enhanced image generation quality and detail." + }, + { + "author": "o-l-l-i", + "title": "Olm Curve Editor for ComfyUI", + "reference": "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor", + "files": [ + "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor" + ], + "install_type": "git-clone", + "description": "A single-purpose, multi-channel curve editor for ComfyUI, providing precise color control over R, G, B, and Luma channels directly within the node graph. It’s a focused, lightweight, and standalone solution built specifically for one task: applying color curves cleanly and efficiently." + }, + { + "author": "TashaSkyUp", + "title": "EternalKernel PyTorch Nodes", + "reference": "https://github.com/TashaSkyUp/EternalKernelPytorchNodes", + "files": [ + "https://github.com/TashaSkyUp/EternalKernelPytorchNodes" + ], + "install_type": "git-clone", + "description": "Comprehensive PyTorch nodes for ComfyUI - Neural network training, inference, and ML workflows" + }, + { + "author": "quasiblob", + "title": "ComfyUI-EsesCompositionGuides", + "reference": "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides", + "files": [ + "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides" + ], + "install_type": "git-clone", + "description": "Non-destructive visual image composition helper tool node for ComfyUI with minimal requirements, works with larger images too." + }, + { + "author": "ChenDarYen", + "title": "ComfyUI-NAG", + "reference": "https://github.com/ChenDarYen/ComfyUI-NAG", + "files": [ + "https://github.com/ChenDarYen/ComfyUI-NAG" + ], + "install_type": "git-clone", + "description": "ComfyUI implemtation for NAG" + }, + { + "author": "cmdicely", + "title": "Simple Image To Palette", + "reference": "https://github.com/cmdicely/simple_image_to_palette", + "files": [ + "https://github.com/cmdicely/simple_image_to_palette" + ], + "install_type": "git-clone", + "description": "Custom node to extract the colors in an image as a palette for use with ComfyUI-PixelArt-Detector" + }, + { + "author": "orion4d", + "title": "ComfyUI Illusion & Pattern Nodes", + "reference": "https://github.com/orion4d/illusion_node", + "files": [ + "https://github.com/orion4d/illusion_node" + ], + "install_type": "git-clone", + "description": "This repository contains a collection of custom nodes for ComfyUI, designed for generating various patterns, optical illusions, and performing related image manipulations. All nodes are categorized under 'illusion' in the ComfyUI menu." + }, + { + "author": "lucak5s", + "title": "ComfyUI GFPGAN", + "reference": "https://github.com/lucak5s/comfyui_gfpgan", + "files": [ + "https://github.com/lucak5s/comfyui_gfpgan" + ], + "install_type": "git-clone", + "description": "Face restoration with GFPGAN." + }, + { + "author": "kiko9", + "title": "ComfyUI-KikoStats", + "reference": "https://github.com/ComfyAssets/ComfyUI-KikoStats", + "files": [ + "https://github.com/ComfyAssets/ComfyUI-KikoStats" + ], + "install_type": "git-clone", + "description": "Real-time monitoring and statistics for ComfyUI" + }, + { + "author": "NumZ", + "title": "ComfyUI-SeedVR2_VideoUpscaler", + "id": "SeedVR2_VideoUpscaler", + "reference": "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler", + "files": [ + "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler" + ], + "install_type": "git-clone", + "description": "Upscale your videos with this SeedVR2" + }, + { + "author": "Yuan-ManX", + "title": "ComfyUI-OmniGen2", + "reference": "https://github.com/Yuan-ManX/ComfyUI-OmniGen2", + "files": [ + "https://github.com/Yuan-ManX/ComfyUI-OmniGen2" + ], + "install_type": "git-clone", + "description": "ComfyUI-OmniGen2 is now available in ComfyUI, OmniGen2 is a powerful and efficient unified multimodal model. Its architecture is composed of two key components: a 3B Vision-Language Model (VLM) and a 4B diffusion model." + }, + { + "author": "aleolidev", + "title": "Kaizen Package", + "id": "kaizen_package", + "reference": "https://github.com/aleolidev/comfy_kaizen_package", + "files": [ + "https://github.com/aleolidev/comfy_kaizen_package" + ], + "install_type": "git-clone", + "description": "A collection of custom image processing nodes for ComfyUI" + }, + { + "author": "joeriben", + "title": "AI4ArtsEd Nodes", + "reference": "https://github.com/joeriben/ai4artsed_comfyui_nodes", + "files": [ + "https://github.com/joeriben/ai4artsed_comfyui_nodes" + ], + "install_type": "git-clone", + "description": "ComfyUI nodes for the project AI for Arts Education" + }, + { + "author": "DebugPadawan", + "title": "DebugPadawan's ComfyUI Essentials", + "reference": "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials", + "files": [ + "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials" + ], + "install_type": "git-clone", + "description": "Essential custom nodes for ComfyUI workflows" + }, + { + "author": "rookiepsi", + "title": "Blur Mask", + "reference": "https://github.com/rookiepsi/comfypsi_blur_mask", + "files": [ + "https://github.com/rookiepsi/comfypsi_blur_mask" + ], + "install_type": "git-clone", + "description": "A custom node for ComfyUI that applies a Gaussian blur to a mask." + }, + { + "author": "dseditor", + "title": "ComfyUI-ListHelper", + "reference": "https://github.com/dseditor/ComfyUI-ListHelper", + "files": [ + "https://github.com/dseditor/ComfyUI-ListHelper" + ], + "install_type": "git-clone", + "description": "The ListHelper collection is a comprehensive set of custom nodes for ComfyUI that provides powerful list manipulation capabilities. This collection includes audio processing, text splitting, and number generation tools for enhanced workflow automation." + }, + { + "author": "Maxed-Out-99", + "title": "ComfyUI-MaxedOut", + "reference": "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut", + "files": [ + "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut" + ], + "install_type": "git-clone", + "description": "Custom ComfyUI nodes used in Maxed Out workflows (SDXL, Flux, etc.)" + }, + { + "author": "smthemex", + "title": "ComfyUI_SongGeneration", + "reference": "https://github.com/smthemex/ComfyUI_SongGeneration", + "files": [ + "https://github.com/smthemex/ComfyUI_SongGeneration" + ], + "install_type": "git-clone", + "description": "[a/SongGeneration](https://github.com/tencent-ailab/SongGeneration):High-Quality Song Generation with Multi-Preference Alignment (SOTA),you can try VRAM>12G" + }, + { + "author": "834t", + "title": "Scene Composer for ComfyUI", + "reference": "https://github.com/834t/ComfyUI_834t_scene_composer", + "files": [ + "https://github.com/834t/ComfyUI_834t_scene_composer" + ], + "install_type": "git-clone", + "description": "An intuitive, all-in-one node for ComfyUI that brings a powerful, layer-based regional prompting workflow directly into your graph. Say goodbye to managing countless Conditioning (Set Area) nodes and hello to drawing your creative vision." + }, + { + "author": "quasiblob", + "title": "ComfyUI-EsesImageAdjustments", + "reference": "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments", + "files": [ + "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments" + ], + "install_type": "git-clone", + "description": "Image Adjustments node for ComfyUI with minimal requirements, uses PyTorch for image manipulation operations." + }, + { + "author": "coiichan", + "title": "ComfyUI-FuncAsTexture-CoiiNode", + "reference": "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode", + "files": [ + "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode" + ], + "install_type": "git-clone", + "description": "This allows for mathematical operations on input images and precise manipulation of channels through NumPy formulas, making it suitable for ComfyUI users with programming experience." + }, + { + "author": "impactframes", + "title": "ComfyUI-WanResolutionSelector", + "reference": "https://github.com/if-ai/ComfyUI-WanResolutionSelector", + "files": [ + "https://github.com/if-ai/ComfyUI-WanResolutionSelector" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node that automatically selects appropriate video resolution dimensions based on generation mode, aspect ratio, and quality settings. Designed to work seamlessly with video generation models and KJNodes image resize nodes." + }, + { + "author": "TheLustriVA", + "title": "ComfyUI Image Size Tool", + "reference": "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tool", + "files": [ + "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tool" + ], + "install_type": "git-clone", + "description": "Resolution calculator nodes for ComfyUI with model-specific constraints and optimal bucket resolutions" + }, + { + "author": "highdoping", + "title": "ComfyUI-ASSSSA", + "reference": "https://github.com/HighDoping/ComfyUI_ASSSSA", + "files": [ + "https://github.com/HighDoping/ComfyUI_ASSSSA" + ], + "install_type": "git-clone", + "description": "Add ASS/SSA subtitle to video using ffmpeg." + }, + { + "author": "highdoping", + "title": "lama_with_refiner", + "reference": "https://github.com/fplu/comfyui_lama_with_refiner", + "files": [ + "https://github.com/fplu/comfyui_lama_with_refiner" + ], + "install_type": "git-clone", + "description": "Nodes for lama+refiner inpainting with ComfyUI." + }, + { + "author": "robin-collins", + "title": "ComfyUI-TechsToolz", + "reference": "https://github.com/robin-collins/ComfyUI-TechsToolz", + "files": [ + "https://github.com/robin-collins/ComfyUI-TechsToolz" + ], + "install_type": "git-clone", + "description": "A modular collection of ComfyUI custom nodes with advanced dependency management and ComfyUI Manager integration." + }, + { + "author": "lum3on", + "title": "ComfyUI-AudioX", + "reference": "https://github.com/lum3on/ComfyUI-StableAudioX", + "files": [ + "https://github.com/lum3on/ComfyUI-StableAudioX" + ], + "install_type": "git-clone", + "description": "A powerful audio generation extension for ComfyUI that integrates AudioX models for high-quality audio synthesis from text and video inputs." + }, + { + "author": "smthemex", + "title": "ComfyUI_PartPacker", + "reference": "https://github.com/smthemex/ComfyUI_PartPacker", + "files": [ + "https://github.com/smthemex/ComfyUI_PartPacker" + ], + "install_type": "git-clone", + "description": "This is the comfyui implementation of [a/PartPacker](https://github.com/NVlabs/PartPacker): Efficient Part-level 3D Object Generation via Dual Volume Packing.Max varm12G" + }, + { + "author": "azazeal04", + "title": "anime_character_selector", + "reference": "https://github.com/azazeal04/Azazeal_Anime_Characters_ComfyUI", + "files": [ + "https://github.com/azazeal04/Azazeal_Anime_Characters_ComfyUI" + ], + "install_type": "git-clone", + "description": "character nodes for characters from various anime shows and comics" + }, + { + "author": "drphero", + "title": "ComfyUI-PromptTester", + "reference": "https://github.com/drphero/comfyui_prompttester", + "files": [ + "https://github.com/drphero/comfyui_prompttester" + ], + "install_type": "git-clone", + "description": "Automatically tests the impact of each phrase in a prompt by generating images with one phrase omitted at a time." + }, + { + "author": "dseditor", + "title": "ComfyUI-ScheduledTask", + "reference": "https://github.com/dseditor/ComfyUI-ScheduledTask", + "files": [ + "https://github.com/dseditor/ComfyUI-ScheduledTask" + ], + "install_type": "git-clone", + "description": "A powerful workflow scheduling extension for ComfyUI that enables automated daily execution of workflows with an intuitive web interface." + }, + { + "author": "😈 CasterPollux", + "title": "MiniMax Video Object Remover Suite", + "reference": "https://github.com/casterpollux/MiniMax-bmo", + "files": [ + "https://github.com/casterpollux/MiniMax-bmo" + ], + "nodename_pattern": "MiniMax.*BMO|BMO.*MiniMax", + "pip": ["segment-anything"], + "tags": ["video", "inpainting", "object-removal", "suite", "professional", "BMO"], + "install_type": "git-clone", + "description": "Professional video object removal suite using MiniMax optimization. Includes BMO-enhanced nodes with VAE normalization, temporal preservation, and 6-step inference. Complete video inpainting solution for ComfyUI." + }, + { + "author": "ialhabbal", + "title": "OcclusionMask", + "reference": "https://github.com/ialhabbal/OcclusionMask", + "files": [ + "https://github.com/ialhabbal/OcclusionMask" + ], + "install_type": "git-clone", + "description": "A powerful ComfyUI custom node for advanced face occlusion, segmentation, and masking, leveraging state-of-the-art face detection (insightface buffalo models) for robust and accurate results." + }, + { + "author": "Charonartist", + "title": "ComfyUI Auto LoRA", + "reference": "https://github.com/Charonartist/comfyui-auto-lora-v2", + "files": [ + "https://github.com/Charonartist/comfyui-auto-lora-v2" + ], + "install_type": "git-clone", + "description": "This is a ComfyUI custom node that automatically detects trigger words from text prompts and applies the corresponding LoRA models." + }, + { + "author": "akatz-ai", + "title": "ComfyUI-Basic-Math", + "reference": "https://github.com/akatz-ai/ComfyUI-Basic-Math", + "files": [ + "https://github.com/akatz-ai/ComfyUI-Basic-Math" + ], + "install_type": "git-clone", + "description": "Custom nodes for performing basic math operations" + }, + { + "author": "kael558", + "title": "ComfyUI-GGUF-FantasyTalking", + "reference": "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking", + "files": [ + "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking" + ], + "install_type": "git-clone", + "description": "GGUF Quantization support for native ComfyUI models with FantasyTalking." + }, + { + "author": "Lord Lethris", + "title": "ComfyUI-RPG-Characters", + "id": "rpg-characters", + "reference": "https://github.com/lord-lethris/ComfyUI-RPG-Characters", + "files": [ + "https://github.com/lord-lethris/ComfyUI-RPG-Characters" + ], + "install_type": "git-clone", + "description": "Stylized RPG character prompt generator for ComfyUI. Supports standard and Ollama-based prompts, works with SD, SDXL, Flux, and more." + }, + { + "author": "Phospholipids", + "title": "PPWildCard", + "reference": "https://github.com/kohs100/comfyui-ppwc", + "files": [ + "https://github.com/kohs100/comfyui-ppwc" + ], + "install_type": "git-clone", + "description": "This extension offers wildcard prompting works solely in workflow." + }, + { + "author": "linjian-ufo", + "title": "DeepSeek Chat Node for ComfyUI", + "reference": "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update", + "files": [ + "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update" + ], + "install_type": "git-clone", + "description": "This is a custom node for ComfyUI that calls the DeepSeek Chat API to process text input and return text output." + }, + { + "author": "jkhayiying", + "title": "ImageLoadFromLocalOrUrl Node for ComfyUI", + "id": "JkhaImageLoaderPathOrUrl", + "reference": "https://gitee.com/yyh915/jkha-load-img", + "files": [ + "https://gitee.com/yyh915/jkha-load-img" + ], + "install_type": "git-clone", + "description": "This is a node to load an image from local path or url." + }, + { + "author": "jurdnf", + "title": "ComfyUI-JurdnsModelSculptor", + "reference": "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor", + "files": [ + "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor" + ], + "install_type": "git-clone", + "description": "A ComfyUI custom node package for seamless integration with Threads (Meta's social platform). This package allows you to publish posts, manage images, and retrieve post history directly from your ComfyUI workflows." + }, + { + "author": "jinchanz", + "title": "ComfyUI-ADIC", + "reference": "https://github.com/jinchanz/ComfyUI-ADIC", + "files": [ + "https://github.com/jinchanz/ComfyUI-ADIC" + ], + "install_type": "git-clone", + "description": "This is a set of custom nodes for calling an image translation API within ComfyUI." + }, + { + "author": "Alex Genovese", + "title": "ComfyUI UNO Nodes", + "reference": "https://github.com/alexgenovese/ComfyUI-UNO-Flux", + "files": [ + "https://github.com/alexgenovese/ComfyUI-UNO-Flux" + ], + "install_type": "git-clone", + "description": "ComfyUI UNO Nodes is a collection of nodes for ComfyUI that allows you to load and use UNO models." + }, + { + "author": "fredconex", + "title": "Sync Edit", + "reference": "https://github.com/fredconex/ComfyUI-SyncEdit", + "files": [ + "https://github.com/fredconex/ComfyUI-SyncEdit" + ], + "install_type": "git-clone", + "description": "This node allow to intercept changes on the input string and choose between use the current one or sync with incoming new one." + }, + { + "author": "Clybius", + "title": "ComfyUI-ClybsChromaNodes", + "reference": "https://github.com/Clybius/ComfyUI-ClybsChromaNodes", + "files": [ + "https://github.com/Clybius/ComfyUI-ClybsChromaNodes" + ], + "install_type": "git-clone", + "description": "A small collection of nodes intended for use with Lodestone Rock's Chroma model, for ComfyUI." + }, + { + "author": "DrStone71", + "title": "ComfyUI-Prompt-Translator", + "reference": "https://github.com/DrStone71/ComfyUI-Prompt-Translator", + "files": [ + "https://github.com/DrStone71/ComfyUI-Prompt-Translator" + ], + "install_type": "git-clone", + "description": "This custom node for ComfyUI allows you to translate your prompt directly into the language used by your LLM" + }, { "author": "Yuan-ManX", "title": "ComfyUI-Hunyuan3D-2.1", @@ -204,495 +743,6 @@ ], "install_type": "git-clone", "description": "ComfyUI-Vui is now available in ComfyUI, Vui is a llama based transformer that predicts audio tokens." - }, - { - "author": "LargeModGames", - "title": "ComfyUI LoRA Auto Downloader", - "reference": "https://github.com/LargeModGames/comfyui-smart-lora-downloader", - "files": [ - "https://github.com/LargeModGames/comfyui-smart-lora-downloader" - ], - "install_type": "git-clone", - "description": "Automatically download missing LoRAs from CivitAI and detect missing LoRAs in workflows. Features smart directory detection and easy installation." - }, - { - "author": "hassan-sd", - "title": "ComfyUI Image & Prompt Loader", - "id": "hassanprompt", - "reference": "https://github.com/hassan-sd/comfyui-image-prompt-loader", - "files": [ - "https://github.com/hassan-sd/comfyui-image-prompt-loader" - ], - "install_type": "git-clone", - "description": "Load images with automatic prompt extraction from Civitai URLs, caption files, or EXIF metadata. Features smart dataset detection and dynamic preview updates." - }, - { - "author": "Isi-dev", - "title": "ComfyUI-Animation_Nodes_and_Workflows", - "reference": "https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows", - "files": [ - "https://github.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows" - ], - "install_type": "git-clone", - "description": "These are nodes and workflows that can facilitate the creation of animations and video compilations." - }, - { - "author": "NeoDroleDeGueule", - "title": "comfyui-image-mixer", - "reference": "https://github.com/NeoDroleDeGueule/comfyui-image-mixer", - "files": [ - "https://github.com/NeoDroleDeGueule/comfyui-image-mixer" - ], - "install_type": "git-clone", - "description": "A ComfyUI custom node that blends two images in latent space using a mix factor slider." - }, - { - "author": "orion4d", - "title": "ComfyUI_extract_imag", - "reference": "https://github.com/orion4d/ComfyUI_extract_imag", - "files": [ - "https://github.com/orion4d/ComfyUI_extract_imag" - ], - "install_type": "git-clone", - "description": "This ComfyUI node allows you to extract all images found in various types of documents and save them to disk. It also provides a preview of the first extracted image." - }, - { - "author": "xuhuan2048", - "title": "ExtractStoryboards", - "id": "xuhuan2048_ExtractStoryboards", - "reference": "https://github.com/gitadmini/comfyui_extractstoryboards", - "files": [ - "https://github.com/gitadmini/comfyui_extractstoryboards" - ], - "install_type": "git-clone", - "description": "A tool for decomposing video storyboards, which can obtain storyboards and keyframes" - }, - { - "author": "sugarkwork", - "title": "comfyui-trtupscaler", - "reference": "https://github.com/sugarkwork/comfyui-trtupscaler", - "files": [ - "https://github.com/sugarkwork/comfyui-trtupscaler" - ], - "install_type": "git-clone", - "description": "TensorRT Upscaler for ComfyUI" - }, - { - "author": "YMC", - "title": "ymc_node_joy", - "reference": "https://github.com/YMC-GitHub/ymc_node_joy", - "files": [ - "https://github.com/YMC-GitHub/ymc_node_joy" - ], - "install_type": "git-clone", - "description": "comfyui custom nodes to caption image with joy" - }, - { - "author": "pawelmal0101", - "title": "ComfyUI Webhook Notifier", - "reference": "https://github.com/pawelmal0101/ComfyUI-Webhook", - "files": [ - "https://github.com/pawelmal0101/ComfyUI-Webhook" - ], - "install_type": "git-clone", - "description": "A simple ComfyUI custom node that sends webhook notifications when images are generated. Perfect for integrating your image generation workflow with external services or your own backend." - }, - { - "author": "mw", - "title": "ComfyUI_SOME", - "reference": "https://github.com/billwuhao/ComfyUI_SOME", - "files": [ - "https://github.com/billwuhao/ComfyUI_SOME" - ], - "install_type": "git-clone", - "description": "Sing to Midi 🎶" - }, - { - "author": "A043-studios", - "title": "ComfyUI Deforum-X-Flux Nodes", - "reference": "https://github.com/A043-studios/comfyui-deforum-x-flux-nodes", - "files": [ - "https://github.com/A043-studios/comfyui-deforum-x-flux-nodes" - ], - "install_type": "git-clone", - "description": "Professional video animation nodes for ComfyUI based on Deforum-X-Flux research" - }, - { - "author": "AgencyMind", - "title": "ComfyUI-GPU-Preprocessor-Wrapper", - "reference": "https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper", - "files": [ - "https://github.com/AgencyMind/ComfyUI-GPU-Preprocessor-Wrapper" - ], - "install_type": "git-clone", - "description": "A ComfyUI custom node extension that solves multi-GPU device conflicts for ControlNet preprocessors." - }, - { - "author": "orion4d", - "title": "ComfyUI PDF Nodes", - "reference": "https://github.com/orion4d/ComfyUI_pdf_nodes", - "files": [ - "https://github.com/orion4d/ComfyUI_pdf_nodes" - ], - "install_type": "git-clone", - "description": "This repository contains a set of custom nodes for ComfyUI that allow you to load, manipulate, extract information from, and preview PDF files directly within your workflows." - }, - { - "author": "olivv-cs", - "title": "ComfyUI-FunPack", - "reference": "https://github.com/olivv-cs/ComfyUI-FunPack", - "files": [ - "https://github.com/olivv-cs/ComfyUI-FunPack" - ], - "install_type": "git-clone", - "description": "A set of custom nodes designed for experiments with video diffusion models." - }, - { - "author": "Zachary116699", - "title": "ComfyUI_LoadImageWithMetaDataEx", - "reference": "https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx", - "files": [ - "https://github.com/Zachary116699/ComfyUI-LoadImageWithMetaDataEx" - ], - "install_type": "git-clone", - "description": "Custom node for ComfyUI. It can read metadata from the image filepath, and filepath can be provided as a connected input, which allows it to batch read image metadata in a loop." - }, - { - "author": "bytedance", - "title": "comfyui-lumi-batcher", - "reference": "https://github.com/bytedance/comfyui-lumi-batcher", - "files": [ - "https://github.com/bytedance/comfyui-lumi-batcher" - ], - "install_type": "git-clone", - "description": "ComfyUI Lumi Batcher is a batch processing extension plugin designed for ComfyUI, aiming to improve workflow debugging efficiency. Traditional debugging methods require adjusting parameters one by one, while this tool significantly enhances work efficiency through batch processing capabilities." - }, - { - "author": "fredconex", - "title": "ComfyUI_SoundFlow", - "reference": "https://github.com/fredconex/ComfyUI_SoundFlow", - "files": [ - "https://github.com/fredconex/ComfyUI_SoundFlow" - ], - "install_type": "git-clone", - "description": "This is a bunch of nodes for ComfyUI to help with sound work." - }, - { - "author": "A043-studios", - "title": "Pixel3DMM ComfyUI Nodes", - "reference": "https://github.com/A043-studios/comfyui-pixel3dmm", - "files": [ - "https://github.com/A043-studios/comfyui-pixel3dmm" - ], - "install_type": "git-clone", - "description": "Professional 3D face reconstruction for ComfyUI using the Pixel3DMM method" - }, - { - "author": "ShmuelRonen", - "title": "Flux Kontext Creator for ComfyUI", - "reference": "https://github.com/ShmuelRonen/FluxKontextCreator", - "files": [ - "https://github.com/ShmuelRonen/FluxKontextCreator" - ], - "install_type": "git-clone", - "description": "A powerful ComfyUI custom node for text-based image editing using Black Forest Labs' Flux Kontext API. Transform your images with simple text instructions while maintaining character consistency and quality." - }, - { - "author": "o-l-l-i", - "title": "Olm LUT Node for ComfyUI", - "reference": "https://github.com/o-l-l-i/ComfyUI-OlmLUT", - "files": [ - "https://github.com/o-l-l-i/ComfyUI-OlmLUT" - ], - "install_type": "git-clone", - "description": "The Olm LUT is a custom node for ComfyUI that allows you to apply .cube LUT (Look-Up Table) files to images within your generative workflows. It supports creative workflows including film emulation, color grading, and aesthetic stylization using LUTs." - }, - { - "author": "Yuan-ManX", - "title": "ComfyUI-Direct3D-S2", - "reference": "https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2", - "files": [ - "https://github.com/Yuan-ManX/ComfyUI-Direct3D-S2" - ], - "install_type": "git-clone", - "description": "ComfyUI-Direct3D‑S2 is now available in ComfyUI, Direct3D‑S2 - Gigascale 3D Generation Made Easy with Spatial Sparse Attention. Direct3D‑S2 is a scalable 3D generation framework based on sparse volumes that achieves superior output quality with dramatically reduced training costs." - }, - { - "author": "lum3on", - "title": "ComfyUI-FrameUtilitys", - "reference": "https://github.com/lum3on/ComfyUI-FrameUtilitys", - "files": [ - "https://github.com/lum3on/ComfyUI-FrameUtilitys" - ], - "install_type": "git-clone", - "description": "Professional-grade frame manipulation tools for ComfyUI, providing advanced video editing capabilities with native IMAGE tensor support." - }, - { - "author": "INuBq8", - "title": "Notification Bridge", - "reference": "https://github.com/INuBq8/ComfyUI-NotificationBridge", - "files": [ - "https://github.com/INuBq8/ComfyUI-NotificationBridge" - ], - "install_type": "git-clone", - "description": "Bridge nodes for ComfyUI that send messages through WhatsApp (Twilio) and Discord when a workflow completes." - }, - { - "author": "Erehr", - "title": "ComfyUI-EreNodes", - "reference": "https://github.com/Erehr/ComfyUI-EreNodes", - "files": [ - "https://github.com/Erehr/ComfyUI-EreNodes" - ], - "install_type": "git-clone", - "description": "A collection of prompt managent nodes with advanced tag parsing. Prompt tag cloud, mutiselect, toggle list, randomizer, filter, autocompete." - }, - { - "author": "11dogzi", - "title": "CYBERPUNK-STYLE-DIY", - "id": "CYBERPUNK-STYLE-DIY", - "reference": "https://github.com/11dogzi/CYBERPUNK-STYLE-DIY", - "files": [ - "https://github.com/11dogzi/CYBERPUNK-STYLE-DIY" - ], - "install_type": "git-clone", - "description": "A comprehensive ComfyUI theme plugin with stunning cyberpunk aesthetics and powerful customization features" - }, - { - "author": "keit", - "title": "ComfyUI-keitNodes", - "id": "comfyui-image-toolkit", - "reference": "https://github.com/keit0728/ComfyUI-keitNodes", - "files": [ - "https://github.com/keit0728/ComfyUI-keitNodes" - ], - "install_type": "git-clone", - "description": "This is keit's utility nodes." - }, - { - "author": "xiaowc", - "title": "Comfyui-Dynamic-Params", - "reference": "https://github.com/xiaowc-lib/comfyui-dynamic-params", - "files": [ - "https://github.com/xiaowc-lib/comfyui-dynamic-params" - ], - "install_type": "git-clone", - "description": "Comfyui custom nodes that support dynamic parameter addition and deletion." - }, - { - "author": "avenstack", - "title": "ComfyUI-AV-FunASR", - "reference": "https://github.com/avenstack/ComfyUI-AV-FunASR", - "files": [ - "https://github.com/avenstack/ComfyUI-AV-FunASR" - ], - "install_type": "git-clone", - "description": "FunASR wrapper for ComfyUI" - }, - { - "author": "burnsbert", - "title": "EBU Workflow", - "id": "ebu-workflow", - "reference": "https://github.com/burnsbert/ComfyUI-EBU-Workflow", - "files": [ - "https://github.com/burnsbert/ComfyUI-EBU-Workflow" - ], - "install_type": "git-clone", - "description": "Custom nodes for general workflow quality of life including resolutions sorted by aspect ratio, upscaling helps, and unique file names" - }, - { - "author": "vladpro3", - "title": "ComfyUI_BishaNodes", - "reference": "https://github.com/vladpro3/ComfyUI_BishaNodes", - "files": [ - "https://github.com/vladpro3/ComfyUI_BishaNodes" - ], - "install_type": "git-clone", - "description": "Custom nodes for ComfyUI to improve promts and image settings" - }, - { - "author": "jasonjgardner", - "title": "ComfyUI Substance Designer Integration Plugin", - "reference": "https://github.com/jasonjgardner/comfui-substance-designer-integration", - "files": [ - "https://github.com/jasonjgardner/comfui-substance-designer-integration" - ], - "install_type": "git-clone", - "description": "A comprehensive ComfyUI plugin that enables seamless integration with Substance 3D Designer workflows through command line automation. This plugin provides custom nodes for cooking .sbs files, rendering .sbsar archives, controlling material parameters, and batch processing Substance materials within ComfyUI workflows." - }, - { - "author": "budihartono", - "title": "CAS Aspect Ratio Presets Node for ComfyUI", - "id": "comfyui-aspect-ratio-presets", - "reference": "https://github.com/budihartono/comfyui-aspect-ratio-presets", - "files": [ - "https://github.com/budihartono/comfyui-aspect-ratio-presets" - ], - "install_type": "git-clone", - "description": "Quickly create empty latents in common resolutions and aspect ratios for SD 1.5, SDXL, Flux, Chroma, and HiDream. Choose from curated presets or generate by axis and aspect ratio. Appears in the 'latent' node group." - }, - { - "author": "spawner", - "title": "comfyui-aichat", - "reference": "https://github.com/spawner1145/comfyui-aichat", - "files": [ - "https://github.com/spawner1145/comfyui-aichat" - ], - "install_type": "git-clone", - "description": "gemini and openai in comfyui" - }, - { - "author": "swhsiang", - "title": "comfyui-3d-gs-renderer", - "reference": "https://github.com/swhsiang/comfyui-3d-gs-renderer", - "files": [ - "https://github.com/swhsiang/comfyui-3d-gs-renderer" - ], - "install_type": "git-clone", - "description": "ComfyUI custom node to support 3D GS rendering" - }, - { - "author": "sLKbabawhsiang", - "title": "ComfyUI-TuZi-Flux-Kontext", - "reference": "https://github.com/LKbaba/ComfyUI-TuZi-Flux-Kontext", - "files": [ - "https://github.com/LKbaba/ComfyUI-TuZi-Flux-Kontext" - ], - "install_type": "git-clone", - "description": " Powerful Flux-Kontext image generation custom node for ComfyUI, using the official RabbitAI API. Supports text-to-image, image-to-image, and multi-image-to-image generation. Supports concurrent generation." - }, - { - "author": "MicheleGuidi", - "title": "ComfyUI-Computer-Vision", - "reference": "https://github.com/MicheleGuidi/ComfyUI-Contextual-SAM2", - "files": [ - "https://github.com/MicheleGuidi/ComfyUI-Contextual-SAM2" - ], - "install_type": "git-clone", - "description": "Extension nodes for ComfyUI that improves automatic segmentation using bounding boxes generated by Florence 2 and segmentation from Segment Anything 2 (SAM2). Currently just an enhancement of nodes from [a/Kijai](https://github.com/kijai/ComfyUI-segment-anything-2)." - }, - { - "author": "Pigidiy", - "title": "ComfyUI-LikeSpiderAI-UI", - "id": "like_spider_ui", - "reference": "https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-UI", - "files": [ - "https://github.com/Pigidiy/ComfyUI-LikeSpiderAI-UI" - ], - "install_type": "git-clone", - "description": "Declarative UI Framework for ComfyUI Nodes. Minimalistic base class for creating UI-based audio/text/image nodes." - }, - { - "author": "hexxacubic", - "title": "ComfyUI-Prompt_Library", - "reference": "https://github.com/hexxacubic/ComfyUI-Prompt_Library", - "files": [ - "https://github.com/hexxacubic/ComfyUI-Prompt_Library" - ], - "install_type": "git-clone", - "description": "A ComfyUI Node to save and load prompts from a library." - }, - { - "author": "judian17", - "title": "ComfyUI-UniWorld-jd17", - "reference": "https://github.com/judian17/ComfyUI-UniWorld-jd17", - "files": [ - "https://github.com/judian17/ComfyUI-UniWorld-jd17" - ], - "install_type": "git-clone", - "description": "Unofficial ComfyUI implementation of [a/UniWorld-V1](https://github.com/PKU-YuanGroup/UniWorld-V1)." - }, - { - "author": "whmc76", - "title": "ComfyUI-UniversalToolkit", - "reference": "https://github.com/whmc76/ComfyUI-UniversalToolkit", - "files": [ - "https://github.com/whmc76/ComfyUI-UniversalToolkit" - ], - "install_type": "git-clone", - "description": "This plugin provides general-purpose utility nodes for ComfyUI. Currently, it implements a 'Blank Cell Generator' node, which can batch-generate images, masks, and latents with specified resolution and color." - }, - { - "author": "xmarre", - "title": "LoRA-Safe TorchCompile", - "reference": "https://github.com/xmarre/TorchCompileModel_LoRASafe", - "files": [ - "https://github.com/xmarre/TorchCompileModel_LoRASafe" - ], - "install_type": "git-clone", - "description": "Drop-in TorchCompile node that preserves LoRA patches." - }, - { - "author": "xiaogui8dangjia", - "title": "Comfyui-imagetoSTL", - "reference": "https://github.com/xiaogui8dangjia/Comfyui-imagetoSTL", - "files": [ - "https://github.com/xiaogui8dangjia/Comfyui-imagetoSTL" - ], - "install_type": "git-clone", - "description": "comfyui_imagetostl is a simple node for ComfyUI that converts grayscale images to STL." - }, - { - "author": "NeonLightning", - "title": "neonllama", - "reference": "https://github.com/NeonLightning/neonllama", - "files": [ - "https://github.com/NeonLightning/neonllama" - ], - "install_type": "git-clone", - "description": "This custom ComfyUI node transforms a core idea into a richly detailed positive prompt using a local [a/Ollama](https://ollama.com) LLM." - }, - { - "author": "laksjdjf", - "title": "ComfyUI-Imatrix", - "reference": "https://github.com/laksjdjf/ComfyUI-Imatrix", - "files": [ - "https://github.com/laksjdjf/ComfyUI-Imatrix" - ], - "install_type": "git-clone", - "description": "This is an experimental node for generating an *imatrix* file to reduce quantization errors in GGUF files used with ComfyUI-GGUF." - }, - { - "author": "MDMAchine", - "title": "MD Nodes", - "id": "comfyuimdnodes", - "reference": "https://github.com/MDMAchine/ComfyUI_MD_Nodes", - "files": [ - "https://github.com/MDMAchine/ComfyUI_MD_Nodes" - ], - "install_type": "git-clone", - "description": "A wild collection of custom nodes for ComfyUI including noise schedulers, samplers, audio preview, latent visualizers, and more — built for maximal creative chaos." - }, - { - "author": "spawner", - "title": "CUI-Lumina2-TeaCache", - "reference": "https://github.com/spawner1145/CUI-Lumina2-TeaCache", - "files": [ - "https://github.com/spawner1145/CUI-Lumina2-TeaCache" - ], - "install_type": "git-clone", - "description": "comfy extension for lumina2 TeaCache" - }, - { - "author": "e-tier-newbie", - "title": "ComfyUI-E-Tier-TextSaver", - "id": "e-tier-text-saver", - "reference": "https://github.com/e-tier-newbie/ComfyUI-E-Tier-TextSaver", - "files": [ - "https://github.com/e-tier-newbie/ComfyUI-E-Tier-TextSaver" - ], - "install_type": "git-clone", - "description": "A node for saving cleaned text outputs, useful for LoRA training. Removes unwanted tokens like and saves to .txt." - }, - { - "author": "ARZUMATA", - "title": "ComfyUI-ARZUMATA-PixelIt", - "reference": "https://github.com/ARZUMATA/ComfyUI-ARZUMATA-PixelIt", - "files": [ - "https://github.com/ARZUMATA/ComfyUI-ARZUMATA-PixelIt" - ], - "install_type": "git-clone", - "description": "A python port of pixelit by giventofly." } ] } diff --git a/node_db/new/extension-node-map.json b/node_db/new/extension-node-map.json index ab742ac6..d1a452f8 100644 --- a/node_db/new/extension-node-map.json +++ b/node_db/new/extension-node-map.json @@ -18,6 +18,14 @@ "title_aux": "mmaker/Color Enhance" } ], + "https://gitee.com/yyh915/jkha-load-img": [ + [ + "JkhaLoadImage" + ], + { + "title_aux": "ImageLoadFromLocalOrUrl Node for ComfyUI" + } + ], "https://github.com/0x-jerry/comfyui-rembg": [ [ "Load Rembg Model", @@ -289,29 +297,38 @@ ], "https://github.com/1hew/ComfyUI-1hewNodes": [ [ - "CoordinateExtract", "ImageAddLabel", - "ImageBBoxCrop", - "ImageBBoxPaste", + "ImageBatchToList", "ImageBlendModesByAlpha", "ImageBlendModesByCSS", + "ImageCropByMaskAlpha", "ImageCropEdge", "ImageCropSquare", - "ImageCropWithBBox", + "ImageCropWithBBoxMask", "ImageDetailHLFreqSeparation", "ImageEditStitch", + "ImageListAppend", + "ImageListToBatch", "ImageLumaMatte", + "ImagePasteByBBoxMask", "ImagePlot", "ImageResizeUniversal", "ImageSolid", "ImageTileMerge", "ImageTileSplit", - "MaskBBoxCrop", + "ListCustomFloat", + "ListCustomInt", + "ListCustomString", "MaskBatchMathOps", + "MaskBatchToList", + "MaskCropByBBoxMask", + "MaskListToBatch", "MaskMathOps", - "PathSelect", - "PromptExtract", - "SliderValueRangeMapping" + "PathBuild", + "RangeMapping", + "StringCoordinateToBBoxMask", + "StringCoordinateToBBoxes", + "TextCustomExtract" ], { "title_aux": "ComfyUI 1hewNodes" @@ -390,6 +407,18 @@ "title_aux": "ComfyUI MagicClip_Strength for SDXL" } ], + "https://github.com/31702160136/ComfyUI-GrsAI": [ + [ + "GPTImage_ImageToImage", + "GPTImage_TextToImage", + "GrsaiFluxKontext_ImageToImage", + "GrsaiFluxKontext_MultiImageToImage", + "GrsaiFluxKontext_TextToImage" + ], + { + "title_aux": "GrsAI api in ComfyUI" + } + ], "https://github.com/42lux/ComfyUI-42lux": [ [ "FluxEmptyLatentSizePicker", @@ -676,6 +705,14 @@ "title_aux": "ComfyUI-Static-Primitives" } ], + "https://github.com/834t/ComfyUI_834t_scene_composer": [ + [ + "B34tSceneComposerNode" + ], + { + "title_aux": "Scene Composer for ComfyUI" + } + ], "https://github.com/852wa/ComfyUI-AAP": [ [ "AdvancedAlphaProcessor" @@ -1399,6 +1436,26 @@ "title_aux": "ComfyUI-AjoNodes" } ], + "https://github.com/AKharytonchyk/ComfyUI-telegram-bot-node": [ + [ + "SaveToTelegram", + "TelegramListener", + "author", + "description", + "files", + "install_type", + "keywords", + "license", + "name", + "nodename_pattern", + "pip", + "reference", + "version" + ], + { + "title_aux": "ComfyUI-telegram-bot-node" + } + ], "https://github.com/ALatentPlace/ComfyUI_yanc": [ [ "> Bloom", @@ -3057,6 +3114,24 @@ "title_aux": "Comfyui_gemini_tts_node" } ], + "https://github.com/Charonartist/comfyui-auto-lora-v2": [ + [ + "AutoLoRANode", + "LoRABrowserNode", + "LoRAManagerNode" + ], + { + "title_aux": "ComfyUI Auto LoRA" + } + ], + "https://github.com/ChenDarYen/ComfyUI-NAG": [ + [ + "NAGCFGGuider" + ], + { + "title_aux": "ComfyUI-NAG" + } + ], "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel": [ [ "Timestep Shift Model" @@ -3188,6 +3263,7 @@ "LatentPhaseMagnitudeOffset", "LatentPhaseMagnitudePower", "LatentUpscaleWithVAE", + "LayerPatcher", "Linear Quadratic Advanced", "Mask Bounding Box Aspect Ratio", "Mask Sketch", @@ -3330,6 +3406,18 @@ "title_aux": "RES4LYF" } ], + "https://github.com/Clybius/ComfyUI-ClybsChromaNodes": [ + [ + "ChromaNAG", + "ClybGuidance", + "InverseSquaredScheduler", + "PrintSigmas", + "SamplerClyb_BDF" + ], + { + "title_aux": "ComfyUI-ClybsChromaNodes" + } + ], "https://github.com/Clybius/ComfyUI-Extra-Samplers": [ [ "GeometricCFGGuider", @@ -3370,8 +3458,51 @@ "title_aux": "ComfyUI-Depth-Visualization-advanced" } ], + "https://github.com/CoiiChan/ComfyUI-FuncAsTexture-CoiiNode": [ + [ + "Add", + "Ceil", + "Chroma_Key_Alpha", + "Clamp", + "Contant3Vector", + "CustomScriptNumpy", + "DDX", + "Desaturation", + "Distance", + "Divided", + "Dot", + "HueShift", + "InverseUVMapGenerator", + "Lerp", + "Max", + "Min", + "Multiply", + "Oneminus", + "Outline", + "Panner", + "Power", + "Rotator", + "Sine", + "Subtraction", + "TextureSampler", + "UVCoordinateGen", + "ifFunction" + ], + { + "title_aux": "ComfyUI-FuncAsTexture-CoiiNode" + } + ], + "https://github.com/ComfyAssets/ComfyUI-KikoStats": [ + [ + "ResourceMonitor" + ], + { + "title_aux": "ComfyUI-KikoStats" + } + ], "https://github.com/ComfyAssets/ComfyUI-KikoTools": [ [ + "EmptyLatentBatch", "ResolutionCalculator", "SamplerCombo", "SamplerComboCompact", @@ -3442,37 +3573,6 @@ "title_aux": "ComfyUI-CoCoTools_IO" } ], - "https://github.com/Conor-Collins/coco_tools": [ - [ - "ColorspaceNode", - "CryptomatteLayer", - "FrequencyCombine", - "FrequencySeparation", - "ImageLoader", - "JSONNode", - "JSONReaderNode", - "JSONValueFinderNode", - "LoadExr", - "LoadExrLayerByName", - "NoiseNode", - "RandomIntNode", - "RegexFindNode", - "SaverNode", - "SplitThreeBandsNode", - "WalkFolderNode", - "ZDepthNode", - "ZNormalizeNode", - "coco_loader", - "colorspace", - "load_exr", - "load_exr_layer_by_name", - "saver", - "shamble_cryptomatte" - ], - { - "title_aux": "ComfyUI-CoCoTools" - } - ], "https://github.com/CosmicLaca/ComfyUI_Primere_Nodes": [ [ "DebugToFile", @@ -3812,6 +3912,20 @@ "title_aux": "Pipeline Parallel ComfyUI" } ], + "https://github.com/DebugPadawan/DebugPadawans-ComfyUI-Essentials": [ + [ + "DebugPadawan_ConditionalString", + "DebugPadawan_DebugPrint", + "DebugPadawan_ListInfo", + "DebugPadawan_TextJoiner", + "DebugPadawan_TextSplitter", + "DebugPadawan_TextToJSON", + "DebugPadawan_WaitNode" + ], + { + "title_aux": "DebugPadawan's ComfyUI Essentials" + } + ], "https://github.com/Deep-Neko/ComfyUI_ascii_art": [ [ "AsciiGenerator" @@ -4066,6 +4180,21 @@ "title_aux": "ComfyUI Color Detection Nodes" } ], + "https://github.com/DrStone71/ComfyUI-Prompt-Translator": [ + [ + "CLIP Text Encode (Translate)", + "CLIP Text Translate Advanced", + "Combine Conditioning", + "Conditional Translate", + "Language Package Manager", + "Prompt Text (Translate)", + "Text Translate", + "Universal Text Translate" + ], + { + "title_aux": "ComfyUI-Prompt-Translator" + } + ], "https://github.com/DraconicDragon/ComfyUI-RyuuNoodles": [ [ "Ryuu_CleanStringAdvanced", @@ -4079,6 +4208,10 @@ "Ryuu_FloatPlainLarger", "Ryuu_FloatSlider", "Ryuu_IntSlider", + "Ryuu_IsMultipleOf", + "Ryuu_ScaleToMultiple", + "Ryuu_ScaleToMultipleAdvanced", + "Ryuu_TestNode", "Ryuu_TextEncoderDiffCheck", "Ryuu_TokenCountTextBox" ], @@ -4092,6 +4225,7 @@ "GenerateImage_VENICE", "GenerateSpeech_VENICE", "GenerateTextAdvanced_VENICE", + "GenerateTextVeniceParameters_VENICE", "GenerateText_VENICE", "I2IEnhanceUpscale_VENICE" ], @@ -4319,6 +4453,19 @@ "title_aux": "ComfyUI-ReLight" } ], + "https://github.com/Erehr/ComfyUI-EreNodes": [ + [ + "ErePromptCloud", + "ErePromptFilter", + "ErePromptMultiSelect", + "ErePromptMultiline", + "ErePromptRandomizer", + "ErePromptToggle" + ], + { + "title_aux": "ComfyUI-EreNodes" + } + ], "https://github.com/EvilBT/ComfyUI_SLK_joy_caption_two": [ [ "Batch_joy_caption_two", @@ -4414,7 +4561,8 @@ ], "https://github.com/Extraltodeus/DistanceSampler": [ [ - "SamplerDistance" + "SamplerDistance", + "SamplerDistanceAdvanced" ], { "title_aux": "DistanceSampler" @@ -5684,6 +5832,20 @@ "title_aux": "Hiero-Nodes" } ], + "https://github.com/HighDoping/ComfyUI_ASSSSA": [ + [ + "ASSSubtitleReader", + "ASSSubtitleSave", + "FFMpegSettings", + "MultilineTextInput", + "SubtitleEmbedding", + "SubtitleExtraction", + "VideoTranscoding" + ], + { + "title_aux": "ComfyUI-ASSSSA" + } + ], "https://github.com/Holasyb918/Ghost2_Comfyui": [ [ "AlignPipeline", @@ -7090,6 +7252,14 @@ "title_aux": "ComfyUI_MatAnyone_Kytra" } ], + "https://github.com/LAOGOU-666/ComfyUI-LG_HotReload": [ + [ + "HotReload_Terminal" + ], + { + "title_aux": "ComfyUI-LG_HotReload" + } + ], "https://github.com/LAOGOU-666/ComfyUI_LG_FFT": [ [ "LG_FFTNode", @@ -7550,8 +7720,11 @@ "LTXVBaseSampler", "LTXVFilmGrain", "LTXVLatentUpsampler", + "LTXVPatcherVAE", + "LTXVPreprocessMasks", "LTXVPromptEnhancer", "LTXVPromptEnhancerLoader", + "LTXVQ8LoraModelLoader", "LTXVRecurrentKSampler", "LTXVSelectLatents", "LTXVSetVideoLatentNoiseMasks", @@ -7584,6 +7757,16 @@ "title_aux": "Depth Estimation Node" } ], + "https://github.com/Limbicnation/ComfyUI_FaceDetectionNode": [ + [ + "FaceDetectionNode", + "custom_nodes" + ], + { + "nodename_pattern": "FaceDetectionNode", + "title_aux": "ComfyUI Face Detection Node" + } + ], "https://github.com/Limitex/ComfyUI-Calculation": [ [ "CenterCalculation", @@ -8010,6 +8193,18 @@ "title_aux": "ComfyUI Secure API Call" } ], + "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut": [ + [ + "Flux Empty Latent Image", + "Flux Image Scale To Total Pixels (Flux Safe)", + "Image Scale To Total Pixels (SDXL Safe)", + "Prompt With Guidance (Flux)", + "Sdxl Empty Latent Image" + ], + { + "title_aux": "ComfyUI-MaxedOut" + } + ], "https://github.com/McKlinton2/comfyui-mcklinton-pack": [ [ "ColormaskNode", @@ -8454,205 +8649,6 @@ "title_aux": "ComfyUI-TextOverlay" } ], - "https://github.com/MushroomFleet/DJZ-KokoroTTS": [ - [ - "KokoroTTS_LoadVoice_v1", - "KokoroTTS_SaveVoice_v1", - "KokoroTTS_v1", - "KokoroTTS_v2", - "KokoroTTS_v3", - "KokoroTTS_v4", - "KokoroTTS_v5" - ], - { - "title_aux": "KokoroTTS Node" - } - ], - "https://github.com/MushroomFleet/DJZ-Nodes": [ - [ - "AnamorphicEffect", - "AspectSize", - "AspectSizeV2", - "BatchAlphaComposite", - "BatchOffset", - "BatchRangeInsert", - "BatchRangeSwap", - "BatchThief", - "BlackBarsV1", - "BlackBarsV2", - "BlackBarsV3", - "BorderCompositeAlpha", - "BracketCleaner", - "CRT_Effect_v1", - "CathodeRayEffect", - "ClassicFilmEffect", - "CombineAudio", - "DJZ-LoadLatent", - "DJZ-LoadLatentV2", - "DJZDatamosh", - "DJZDatamoshV2", - "DatasetWordcloud", - "DeadPixelEffect", - "DepthBasedPixelization", - "DinskyPlus", - "DinskyPlusV2", - "DjzDatabendingV1", - "DjzDatamoshV3", - "DjzDatamoshV4", - "DjzDatamoshV5", - "DjzDatamoshV6", - "DjzDatamoshV7", - "DjzDatamoshV8", - "FilmGateWeave", - "FilmGrainEffect", - "FilmGrainEffect_v2", - "FishEyeEffect", - "FishEyeV2", - "FractalGenerator", - "FractalGeneratorV2", - "FractalGeneratorV3", - "GSL_Filter_V1", - "HalationBloom", - "ImageInterleavedUpscaler", - "ImageInterleavedUpscalerV2", - "ImageSizeAdjuster", - "ImageSizeAdjusterV2", - "ImageSizeAdjusterV3", - "JitterEffect", - "KeyframeBasedUpscalerV1", - "KinescopeEffectV1", - "LensLeaks", - "LoadTextDirectory", - "LoadVideoDirectory", - "LoadVideoDirectoryV2", - "MotionBlending", - "NoiseFactory", - "NoiseFactoryV2", - "NoiseFactoryV3", - "NonSquarePixelsV1", - "PanavisionLensV2", - "ParametricMeshGen", - "ParametricMeshGenV2", - "ProjectFilePathNode", - "ProjectFolderPathNode", - "PromptCleaner", - "PromptCleanerV2", - "PromptDupeRemover", - "PromptDupeRemoverV2", - "PromptInject", - "PromptInjectV2", - "PromptSwap", - "RetroVideoText", - "ScreensaverGenerator", - "ScreensaverGeneratorV2", - "ScreensaverGeneratorV3", - "SequentialNumberGenerator", - "StringChaos", - "StringWeights", - "Technicolor3Strip_v1", - "Technicolor3Strip_v2", - "ThinkSeeker", - "ThreeToneStyler", - "TrianglesPlus", - "TrianglesPlusV2", - "UncleanSpeech", - "VGA_Effect_v1", - "VHS_Effect_V3", - "VHS_Effect_v1", - "VHS_Effect_v2", - "VideoBitClamp", - "VideoChromaticAberration", - "VideoCorridorV1", - "VideoCubeV1", - "VideoFilmDamage", - "VideoInterlaceFastV4", - "VideoInterlaceGANV3", - "VideoInterlaced", - "VideoInterlacedV2", - "VideoMazeV1", - "VideoMazeV2", - "VideoNoiseFactory", - "VideoPyramidV1", - "VideoRingPainter", - "VideoTemperatureV1", - "VideoText", - "VideoTextV2", - "VideoTimecode", - "VideoTrails", - "VideoTrailsV2", - "VideoVignettingV1", - "VoiceEffects", - "VoiceEffects2", - "WaveletCompose", - "WaveletDecompose", - "WinampViz", - "WinampVizV2", - "ZenkaiControlPromptV1", - "ZenkaiDepthPrompt", - "ZenkaiImagePromptV1", - "ZenkaiImagePromptV2", - "ZenkaiPoseMap", - "ZenkaiPrompt", - "ZenkaiPromptV2", - "ZenkaiPromptV3", - "ZenkaiPromptV4", - "ZenkaiPromptV5", - "ZenkaiWildcard", - "ZenkaiWildcardV2", - "Zenkai_IMPv1", - "djzTiling", - "djzTilingV2" - ], - { - "author": "DJZ-Nodes", - "title_aux": "DJZ-Nodes" - } - ], - "https://github.com/MushroomFleet/DJZ-Pedalboard": [ - [ - "DJZ_Pedalboard" - ], - { - "title_aux": "DJZ-Pedalboard" - } - ], - "https://github.com/MushroomFleet/svg-suite": [ - [ - "ConvertImageFileToSVG", - "ConvertRasterToVectorAdvanced", - "ConvertRawBytesToSVG", - "SVGAdvancedPreview", - "SVGArtGrid", - "SVGArtGridDimensionsCalculator", - "SVGArtGridV2", - "SVGArtGridV3", - "SVGArtGridV4", - "SVGAttributeManipulation", - "SVGBatchColorReplacer", - "SVGColorExtractor", - "SVGColorManipulation", - "SVGColorReplacer", - "SVGCompressAdvanced", - "SVGCreateStyle", - "SVGDefs", - "SVGElementManipulator", - "SVGElementSelector", - "SVGElementStyler", - "SVGOptimizePresets", - "SVGPathManipulation", - "SVGScourOptimize", - "SVGStringReplace", - "SVGStyler", - "SVGStylesManager", - "SVGThemeColorizer", - "SVGViewBox", - "SaveSVGAdvanced", - "ZenkaiSVG_V1" - ], - { - "title_aux": "SVG Suite for ComfyUI" - } - ], "https://github.com/MuziekMagie/ComfyUI-Matchering": [ [ "Matchering", @@ -10565,6 +10561,15 @@ "title_aux": "ComfyUI-Image-Inpainting" } ], + "https://github.com/Shiba-2-shiba/ComfyUI-Magcache-for-SDXL": [ + [ + "MagCacheSDXL", + "MagCacheSDXLCalibration" + ], + { + "title_aux": "ComfyUI-Magcache-for-SDXL" + } + ], "https://github.com/Shiba-2-shiba/ComfyUI_DiffusionModel_fp8_converter": [ [ "ClipFP8ConverterNode", @@ -11215,14 +11220,6 @@ "title_aux": "Quality of Life Nodes for ComfyUI" } ], - "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid": [ - [ - "SVD_txt2vid_ConditioningwithLatent" - ], - { - "title_aux": "Text to video for Stable Video Diffusion in ComfyUI" - } - ], "https://github.com/SparknightLLC/ComfyUI-ConditionalInterrupt": [ [ "Conditional Interrupt" @@ -12247,6 +12244,7 @@ "tri3d_NSFWFilter", "tri3d_NarrowfyImage", "tri3d_Remove_Small_Mask_Islands", + "tri3d_SaveFlattenedPoseKpsAsJsonFile", "tri3d_SaveImage_absolute", "tri3d_SaveText_absolute", "tri3d_Skip_HeadMask", @@ -12562,6 +12560,19 @@ "title_aux": "comfyui-upscale-by-model" } ], + "https://github.com/TheLustriVA/ComfyUI-Image-Size-Tools": [ + [ + "FluxResolutionNode", + "ImageSizeDetectorNode", + "SD15ResolutionNode", + "SDXLResolutionNode", + "WAN21AdvancedResolutionNode", + "WAN21ResolutionNode" + ], + { + "title_aux": "ComfyUI Image Size Tool" + } + ], "https://github.com/TheMistoAI/ComfyUI-Anyline": [ [ "AnyLinePreprocessor" @@ -12663,11 +12674,14 @@ ], "https://github.com/Tlant/ComfyUI-OllamaPromptsGeneratorTlant": [ [ + "LoadImageAndExtractMetadataTlant", "LoadRandomTxtFileTlant", "LoadRandomTxtFileTlantV2", "LoadRandomTxtFileTlantV3", "OllamaPromptsGeneratorTlant", - "OllamaSimpleTextGeneratorTlant" + "OllamaSimpleTextGeneratorTlant", + "RandomImageLoaderTlant", + "ReasoningLLMOutputCleaner" ], { "title_aux": "ComfyUI-OllamaPromptsGeneratorTlant" @@ -12699,14 +12713,6 @@ "title_aux": "ComfyUI_YoloSegment_Mask" } ], - "https://github.com/TripleHeadedMonkey/ComfyUI_MileHighStyler": [ - [ - "menus" - ], - { - "title_aux": "ComfyUI_MileHighStyler" - } - ], "https://github.com/Tropfchen/ComfyUI-Embedding_Picker": [ [ "EmbeddingPicker" @@ -12825,7 +12831,11 @@ "TripoAnimateRetargetNode", "TripoAnimateRigNode", "TripoConvertNode", + "TripoMeshCompletion", + "TripoMeshSegmentation", "TripoRefineModel", + "TripoSmartLowPoly", + "TripoStylizeModel", "TripoTextureModel" ], { @@ -13232,6 +13242,10 @@ ], "https://github.com/WaveSpeedAI/wavespeed-comfyui": [ [ + "WaveSpeedAI BytedanceSeedanceLiteI2VNode", + "WaveSpeedAI BytedanceSeedanceLiteT2VNode", + "WaveSpeedAI BytedanceSeedanceProI2VNode", + "WaveSpeedAI BytedanceSeedanceProT2VNode", "WaveSpeedAI Client", "WaveSpeedAI DiaTTSNode", "WaveSpeedAI Flux Image2Image", @@ -13283,6 +13297,7 @@ "WaveSpeedAI Wan Image2Video", "WaveSpeedAI Wan Loras", "WaveSpeedAI Wan Text2Video", + "WaveSpeedAI Wan2114BVaceNode", "WaveSpeedAI Wan21I2V480pLoraNode", "WaveSpeedAI Wan21I2V480pLoraUltraFastNode", "WaveSpeedAI Wan21I2V480pNode", @@ -13530,11 +13545,16 @@ ], "https://github.com/Yanick112/ComfyUI-ToSVG": [ [ - "ConvertRasterToVectorBW", - "ConvertRasterToVectorColor", - "ConvertVectorToRaster", - "SVGPreview", - "SaveSVG" + "TS_ImageQuantize", + "TS_ImageToSVGStringBW_Potracer", + "TS_ImageToSVGStringBW_Vtracer", + "TS_ImageToSVGStringColor_Vtracer", + "TS_SVGBytesIOToString", + "TS_SVGPathSimplify", + "TS_SVGStringPreview", + "TS_SVGStringToImage", + "TS_SVGStringToSVGBytesIO", + "TS_SaveSVGString" ], { "title_aux": "ComfyUI-ToSVG" @@ -13790,6 +13810,16 @@ "title_aux": "ComfyUI-Muyan-TTS" } ], + "https://github.com/Yuan-ManX/ComfyUI-OmniGen2": [ + [ + "LoadOmniGen2Image", + "LoadOmniGen2Model", + "OmniGen2" + ], + { + "title_aux": "ComfyUI-OmniGen2" + } + ], "https://github.com/Yuan-ManX/ComfyUI-OrpheusTTS": [ [ "Long Text Generation", @@ -14485,11 +14515,14 @@ ], "https://github.com/aiaiaikkk/ComfyUI-Curve": [ [ + "CameraRawEnhanceNode", "ColorGradingNode", "CurvePresetNode", + "GaussianBlurNode", + "HistogramAnalysisNode", "PhotoshopCurveNode", "PhotoshopHSLNode", - "PhotoshopHistogramNode" + "PhotoshopLevelsNode" ], { "title_aux": "ComfyUI-Curve" @@ -14752,6 +14785,35 @@ "title_aux": "Akatz Custom Nodes" } ], + "https://github.com/akatz-ai/ComfyUI-Basic-Math": [ + [ + "BasicMath", + "BooleanInput", + "BooleanLogic", + "BooleanUnary", + "FloatComparison", + "FloatInput", + "FloatToType", + "IntMath", + "IntToType", + "IntegerComparison", + "IntegerInput", + "MathConstants", + "NumberClamp", + "NumberComparison", + "NumberLerp", + "NumberRange", + "NumberRound", + "PreciseFloatInput", + "StringComparison", + "StringInput", + "ToBool", + "UnaryMath" + ], + { + "title_aux": "ComfyUI-Basic-Math" + } + ], "https://github.com/akatz-ai/ComfyUI-DepthCrafter-Nodes": [ [ "DepthCrafter", @@ -14900,10 +14962,19 @@ "title_aux": "Caching to not Waste" } ], + "https://github.com/aleolidev/comfy_kaizen_package": [ + [ + "KaizenImageComposite" + ], + { + "title_aux": "Kaizen Package" + } + ], "https://github.com/alessandroperilli/apw_nodes": [ [ "APW_CloudImageSize", "APW_ImageListFilter", + "APW_ImageSaver", "APW_LocalImageSize", "APW_LocalVideoSize" ], @@ -14962,6 +15033,15 @@ "title_aux": "Qwen2-VL wrapper for ComfyUI" } ], + "https://github.com/alexgenovese/ComfyUI-UNO-Flux": [ + [ + "UNOGenerate", + "UNOModelLoader" + ], + { + "title_aux": "ComfyUI UNO Nodes" + } + ], "https://github.com/alexgenovese/ComfyUI_HF_Servelress_Inference": [ [ "HF_QuestionAnswer", @@ -15209,6 +15289,7 @@ ], "https://github.com/arcum42/ComfyUI_SageUtils": [ [ + "SageSetWildcardText", "Sage_AdvSamplerInfo", "Sage_CacheMaintenance", "Sage_CheckLorasForUpdates", @@ -15222,10 +15303,12 @@ "Sage_ConstructLLMPromptExtra", "Sage_ConstructMetadata", "Sage_ConstructMetadataLite", + "Sage_CubiqImageResize", "Sage_DualCLIPTextEncode", "Sage_DualCLIPTextEncodeLumina2", "Sage_EmptyLatentImagePassthrough", "Sage_GetFileHash", + "Sage_GuessResolutionByRatio", "Sage_HiDreamE1_Instruction", "Sage_JoinText", "Sage_KSampler", @@ -15234,6 +15317,7 @@ "Sage_KSamplerTiledDecoder", "Sage_LMStudioLLMPromptText", "Sage_LMStudioLLMPromptVision", + "Sage_LMStudioLLMPromptVisionRefine", "Sage_LastLoraInfo", "Sage_LoadImage", "Sage_LogicalSwitch", @@ -15247,17 +15331,21 @@ "Sage_MultiModelPicker", "Sage_OllamaLLMPromptText", "Sage_OllamaLLMPromptVision", + "Sage_OllamaLLMPromptVisionRefine", "Sage_PonyPrefix", "Sage_PonyStyle", + "Sage_QuickResPicker", "Sage_SamplerInfo", "Sage_SaveImageWithMetadata", + "Sage_SaveText", "Sage_SetText", "Sage_TextWeight", "Sage_TilingInfo", "Sage_TripleJoinText", "Sage_TripleLoraStack", "Sage_UNETLoader", - "Sage_ViewAnything" + "Sage_ViewAnything", + "Sage_ViewNotes" ], { "title_aux": "Sage Utils" @@ -15761,7 +15849,11 @@ [ "BatchCreativeInterpolation", "IpaConfiguration", - "RemoveAndInterpolateFrames" + "RemoveAndInterpolateFrames", + "VideoContinuationGenerator", + "VideoFrameExtractorAndMaskGenerator", + "WanInputFrameNumber", + "WanVideoBlender" ], { "title_aux": "Steerable Motion" @@ -15972,8 +16064,10 @@ "CPackOutputAudio", "CPackOutputFile", "CPackOutputImage", + "CPackOutputTextFile", "CPackOutputVideo", - "CPackOutputZip" + "CPackOutputZip", + "CPackOutputZipSwitch" ], { "title_aux": "Comfy-Pack" @@ -17179,6 +17273,15 @@ "title_aux": "ComfyUI-Apt_Preset" } ], + "https://github.com/casterpollux/MiniMax-bmo": [ + [ + "MinimaxRemoverBMO" + ], + { + "nodename_pattern": "MiniMax.*BMO|BMO.*MiniMax", + "title_aux": "MiniMax Video Object Remover Suite" + } + ], "https://github.com/catboxanon/comfyui_stealth_pnginfo": [ [ "CatboxAnonSaveImageStealth" @@ -17798,9 +17901,13 @@ ], "https://github.com/chaunceyyann/comfyui-image-processing-nodes": [ [ + "CharacterLoaderNode", "ImagePreviewCompare", "ImageSizeProcessor", + "LoraAndTextCombiner", "RandomPersonPhoto", + "ToggleLoraStackNode", + "ToggleTextNode", "VideoThumbnailExtractor", "YouTubeThumbnailExtractor" ], @@ -18354,6 +18461,7 @@ "Image Filter", "Image List From Batch", "Mask Image Filter", + "Masked Section", "Pick from List", "Split String by Commas", "String to Float", @@ -18420,7 +18528,8 @@ "ClaudeCodeMCP", "ClaudeCodeMemory", "ClaudeCodeReader", - "ClaudeCodeTools" + "ClaudeCodeTools", + "ClaudeRedditScraper" ], { "title_aux": "Claude Code ComfyUI Nodes" @@ -18757,6 +18866,14 @@ "title_aux": "ComfyUI-Scripting-Tools" } ], + "https://github.com/cmdicely/simple_image_to_palette": [ + [ + "Example" + ], + { + "title_aux": "Simple Image To Palette" + } + ], "https://github.com/codeprimate/ComfyUI-MaskContourProcessor": [ [ "MaskContourProcessor" @@ -18991,6 +19108,8 @@ "ModelMergeBlocks", "ModelMergeCosmos14B", "ModelMergeCosmos7B", + "ModelMergeCosmosPredict2_14B", + "ModelMergeCosmosPredict2_2B", "ModelMergeFlux1", "ModelMergeLTXV", "ModelMergeMochiPreview", @@ -19074,6 +19193,7 @@ "RepeatImageBatch", "RepeatLatentBatch", "RescaleCFG", + "ResizeAndPadImage", "Rodin3D_Detail", "Rodin3D_Regular", "Rodin3D_Sketch", @@ -19738,6 +19858,7 @@ "D2 Regex Replace", "D2 Regex Switcher", "D2 Resize Calculator", + "D2 Save Image", "D2 Size Slector", "D2 Token Counter", "D2 XY Annotation", @@ -20577,6 +20698,14 @@ "title_aux": "comfyui-dreambait-nodes" } ], + "https://github.com/drphero/comfyui_prompttester": [ + [ + "PromptTester" + ], + { + "title_aux": "ComfyUI-PromptTester" + } + ], "https://github.com/drustan-hawk/primitive-types": [ [ "float", @@ -20588,10 +20717,36 @@ "title_aux": "primitive-types" } ], + "https://github.com/dseditor/ComfyUI-ListHelper": [ + [ + "AudioListCombine", + "AudioListGenerator", + "AudioToFrameCount", + "CeilDivide", + "LoadVideoPath", + "MergeVideoFilename", + "NumberListGenerator", + "PromptListGenerator", + "SaveVideoPath" + ], + { + "title_aux": "ComfyUI-ListHelper" + } + ], + "https://github.com/dseditor/ComfyUI-ScheduledTask": [ + [ + "DailyPromptScheduler", + "TimeToSeedList" + ], + { + "title_aux": "ComfyUI-ScheduledTask" + } + ], "https://github.com/dseditor/ComfyUI-Thread": [ [ "PublishThread", "StartWithLongLiveToken", + "ThreadPublishVideo", "ThreadsHistory" ], { @@ -20983,9 +21138,16 @@ ], "https://github.com/ez-af/ComfyUI-EZ-AF-Nodes": [ [ - "EZ Concatenate Text", - "EZ Load from CSV", - "EZ String" + "EZ_CSV_Loader", + "EZ_Extract_Prompt", + "EZ_Find_Replace", + "EZ_Input", + "EZ_Prompt_Loader", + "EZ_Switch", + "EZ_Tag_Loader", + "EZ_Test", + "EZ_Text_Concat", + "EZ_Text_to_Size" ], { "title_aux": "ComfyUI-EZ-AF-Nodes" @@ -21669,6 +21831,15 @@ "title_aux": "JoyCaption Nodes" } ], + "https://github.com/fplu/comfyui_lama_with_refiner": [ + [ + "INPAINT_InpaintWithLaMaRefinerModel", + "INPAINT_LoadInpaintLaMaModel" + ], + { + "title_aux": "lama_with_refiner" + } + ], "https://github.com/frankchieng/ComfyUI_Aniportrait": [ [ "AniPortrait_Audio2Video", @@ -21699,7 +21870,17 @@ "title_aux": "ComfyUI_llm_easyanimiate" } ], - "https://github.com/fredconex/ComfyUI_SoundFlow": [ + "https://github.com/fredconex/ComfyUI-SongBloom": [ + [ + "SongBloomDecoder", + "SongBloomGenerate", + "SongBloomModelLoader" + ], + { + "title_aux": "SongBloom" + } + ], + "https://github.com/fredconex/ComfyUI-SoundFlow": [ [ "SoundFlow_Concatenator", "SoundFlow_DuckCompressor", @@ -21715,7 +21896,15 @@ "SoundFlow_TrimAudio" ], { - "title_aux": "ComfyUI_SoundFlow" + "title_aux": "ComfyUI-SoundFlow" + } + ], + "https://github.com/fredconex/ComfyUI-SyncEdit": [ + [ + "SyncTextEditor" + ], + { + "title_aux": "Sync Edit" } ], "https://github.com/freelifehacker/ComfyUI-ImgMask2PNG": [ @@ -22194,6 +22383,7 @@ "Hidreamfull_fal", "HunyuanVideoLoraTrainer_fal", "Ideogramv3_fal", + "Imagen4Preview_fal", "KlingMaster_fal", "KlingPro10_fal", "KlingPro16_fal", @@ -22208,9 +22398,12 @@ "Recraft_fal", "RunwayGen3_fal", "Sana_fal", + "SeedanceImageToVideo_fal", + "SeedanceTextToVideo_fal", "Upscaler_fal", "VLM_fal", "Veo2ImageToVideo_fal", + "Veo3_fal", "VideoUpscaler_fal", "WanLoraTrainer_fal", "WanPro_fal" @@ -23383,6 +23576,15 @@ "title_aux": "comfyui-undistort" } ], + "https://github.com/ialhabbal/OcclusionMask": [ + [ + "BatchLoadImages", + "ImageOcclusion" + ], + { + "title_aux": "OcclusionMask" + } + ], "https://github.com/iamandeepsandhu/ComfyUI-NSFW-Check": [ [ "NSFWScore" @@ -23567,6 +23769,14 @@ "title_aux": "IF_VideoPrompts" } ], + "https://github.com/if-ai/ComfyUI-WanResolutionSelector": [ + [ + "VideoResolutionSelector" + ], + { + "title_aux": "ComfyUI-WanResolutionSelector" + } + ], "https://github.com/if-ai/ComfyUI_IF_AI_LoadImages": [ [ "IF_LoadImagesS" @@ -24339,6 +24549,7 @@ "https://github.com/jax-explorer/ComfyUI-VideoBasic": [ [ "VideoBasicLoadVideo", + "VideoBasicMergeVideo", "VideoBasicVideoSave", "VideoBasicVideoUpscaleWithModel" ], @@ -24483,8 +24694,11 @@ ], "https://github.com/jiaqianjing/ComfyUI-MidjourneyHub": [ [ + "GPTImageEditNode", + "GPTImageGenerateNode", "MidjourneyActionNode", "MidjourneyBatchActionNode", + "MidjourneyBlendNode", "MidjourneyImagineNode" ], { @@ -24507,6 +24721,21 @@ "title_aux": "ComfyUI Prompt Expander Node" } ], + "https://github.com/jinchanz/ComfyUI-ADIC": [ + [ + "ADIC_COMMON_API", + "ImageTranslateAPI", + "ImageTranslateParamsBuilder", + "ImageTranslateResultExtractor", + "LoadImagesFromUrls", + "MarketImageGenerateWithPolling", + "PythonCodeExecutor", + "StringToJsonArray" + ], + { + "title_aux": "ComfyUI-ADIC" + } + ], "https://github.com/jitcoder/lora-info": [ [ "ImageFromURL", @@ -24693,6 +24922,21 @@ "title_aux": "ComfyUI_HuggingFace_Downloader" } ], + "https://github.com/joeriben/ai4artsed_comfyui_nodes": [ + [ + "ai4artsed_openrouter_key", + "ai4artsed_prompt_interception", + "ai4artsed_random_artform_generator", + "ai4artsed_random_instruction_generator", + "ai4artsed_random_language_selector", + "ai4artsed_stabilitai_key", + "ai4artsed_t5_clip_fusion", + "ai4artsed_text_remix" + ], + { + "title_aux": "AI4ArtsEd Nodes" + } + ], "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": [ [ "InspyrenetRembg", @@ -24865,6 +25109,24 @@ "title_aux": "ComfyUI_open_nodes" } ], + "https://github.com/jurdnf/ComfyUI-JurdnsIterativeNoiseKSampler": [ + [ + "KSamplerIterativeNoise" + ], + { + "title_aux": "ComfyUI-JurdnsIterativeNoiseKsampler" + } + ], + "https://github.com/jurdnf/ComfyUI-JurdnsModelSculptor": [ + [ + "ModelSculptorFlux", + "ModelSculptorSD3", + "ModelSculptorSDXL" + ], + { + "title_aux": "ComfyUI-JurdnsModelSculptor" + } + ], "https://github.com/jurdnisglobby/ComfyUI-Jurdns-Groq-Node": [ [ "JurdnsGroqAPIPromptEnhancer" @@ -25142,6 +25404,35 @@ "title_aux": "ComfyUI-YOLO" } ], + "https://github.com/kael558/ComfyUI-GGUF-FantasyTalking": [ + [ + "CLIPLoaderGGUF", + "DownloadAndLoadWav2VecModel", + "FantasyTalkingModelLoader", + "FantasyTalkingWav2VecEmbeds", + "LoadWanVideoT5TextEncoderGGUF", + "ReCamMasterPoseVisualizer", + "UnetLoaderGGUF", + "UnetLoaderGGUF_LowVRAM", + "WanVideoATITracks", + "WanVideoATITracksVisualize", + "WanVideoATI_comfy", + "WanVideoControlnet", + "WanVideoControlnetLoader", + "WanVideoDiffusionForcingSampler", + "WanVideoFunCameraEmbeds", + "WanVideoReCamMasterCameraEmbed", + "WanVideoReCamMasterDefaultCamera", + "WanVideoReCamMasterGenerateOrbitCamera", + "WanVideoUni3C_ControlnetLoader", + "WanVideoUni3C_embeds", + "WanVideoUniAnimateDWPoseDetector", + "WanVideoUniAnimatePoseInput" + ], + { + "title_aux": "ComfyUI-GGUF-FantasyTalking" + } + ], "https://github.com/kaibioinfo/ComfyUI_AdvancedRefluxControl": [ [ "ReduxAdvanced", @@ -25386,8 +25677,11 @@ ], "https://github.com/keit0728/ComfyUI-keitNodes": [ [ + "AspectRatioResolutionFinder", "M2MTranslator", - "PixelLimitResizer" + "PixelLimitResizer", + "WanVideoOptimalResizer", + "WanVideoResolutionFinder" ], { "title_aux": "ComfyUI-keitNodes" @@ -26272,6 +26566,19 @@ "title_aux": "ComfyUI-Image-Tools" } ], + "https://github.com/kohs100/comfyui-ppwc": [ + [ + "PPWCBlock", + "PPWCReplace" + ], + { + "author": "Phospholipids", + "description": "This extension offers wildcard prompting works solely in workflow.", + "nickname": "PPWC", + "title": "PPWildCard", + "title_aux": "PPWildCard" + } + ], "https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI": [ [ "LLLiteLoader" @@ -26874,6 +27181,14 @@ "title_aux": "ComfyUI-LLMs" } ], + "https://github.com/leonardomiramondi/flux-context-comfyui": [ + [ + "FluxContextNode" + ], + { + "title_aux": "Flux Context ComfyUI Node" + } + ], "https://github.com/lepiai/ComfyUI-Minitools": [ [ "LP-CropTransparentEdges", @@ -26970,6 +27285,14 @@ "title_aux": "comfyui_kj" } ], + "https://github.com/linjian-ufo/comfyui_deepseek_lj257_update": [ + [ + "DeepSeekChatNode" + ], + { + "title_aux": "DeepSeek Chat Node for ComfyUI" + } + ], "https://github.com/linksluckytime/comfyui_snacknodes": [ [ "ImageInfo", @@ -27641,6 +27964,19 @@ "title_aux": "comfyui-mask-util" } ], + "https://github.com/lord-lethris/ComfyUI-RPG-Characters": [ + [ + "ModelLikenessSwitch", + "PromptConcatenatorNode", + "PromptConditioningConverter", + "PromptSelectorNode", + "RPGArtStyleSelector", + "RPGCharacterSelector" + ], + { + "title_aux": "ComfyUI-RPG-Characters" + } + ], "https://github.com/lordgasmic/comfyui_save_image_with_options": [ [ "SaveImageWithOptions" @@ -27868,6 +28204,7 @@ "IterativeLatentUpscale", "KSamplerAdvancedProvider", "KSamplerProvider", + "LamaRemoverDetailerHookProvider", "LatentPixelScale", "LatentReceiver", "LatentSender", @@ -28349,6 +28686,14 @@ "title_aux": "ComfyUI CrewAI" } ], + "https://github.com/lucak5s/comfyui_gfpgan": [ + [ + "GFPGANRestorer" + ], + { + "title_aux": "ComfyUI GFPGAN" + } + ], "https://github.com/lujiazho/ComfyUI-CatvtonFluxWrapper": [ [ "CatvtonFluxSampler", @@ -28383,6 +28728,28 @@ "title_aux": "ComfyUI-ModelQuantizer" } ], + "https://github.com/lum3on/ComfyUI-StableAudioX": [ + [ + "AudioXAdvancedVolumeControl", + "AudioXAudioProcessor", + "AudioXEnhancedTextToAudio", + "AudioXEnhancedTextToMusic", + "AudioXEnhancedVideoToAudio", + "AudioXModelLoader", + "AudioXMultiModalGeneration", + "AudioXPromptHelper", + "AudioXTextToAudio", + "AudioXTextToMusic", + "AudioXVideoAudioCombiner", + "AudioXVideoMuter", + "AudioXVideoToAudio", + "AudioXVideoToMusic", + "AudioXVolumeControl" + ], + { + "title_aux": "ComfyUI-AudioX" + } + ], "https://github.com/lum3on/comfyui_EdgeTAM": [ [ "EdgeTAMVideoTracker", @@ -28441,10 +28808,13 @@ ], "https://github.com/m-sokes/ComfyUI-Sokes-Nodes": [ [ - "Current Date | sokes \ud83e\uddac", + "Current Date & Time | sokes \ud83e\uddac", + "Generate Random Background | sokes \ud83e\uddac", + "Hex Color Swatch | sokes \ud83e\uddac", "Hex to Color Name | sokes \ud83e\uddac", "Latent Switch x9 | sokes \ud83e\uddac", "Load Random Image | sokes \ud83e\uddac", + "Random Hex Color | sokes \ud83e\uddac", "Random Number | sokes \ud83e\uddac", "Replace Text with RegEx | sokes \ud83e\uddac" ], @@ -29056,13 +29426,13 @@ "title_aux": "ComfyUI-Miaoshouai-Tagger" } ], - "https://github.com/michaelgold/ComfyUI-Hal-Dot-Fun-Model-Downloader": [ + "https://github.com/michaelgold/ComfyUI-HF-Model-Downloader": [ [ "DownloadModel", "ModelDownloader" ], { - "title_aux": "Hal.fun Hugging Face Model Downloader" + "title_aux": "ComfyUI-HF-Model-Downloader" } ], "https://github.com/microbote/ComfyUI-StyledCLIPTextEncode": [ @@ -30093,6 +30463,7 @@ "https://github.com/nofunstudio/Node_Fun_ComfyUI": [ [ "DynamicQueueCounter", + "FalAPI_kling_video", "FalAPI_recraft_upscale", "Fun KSampler", "IframeView", @@ -30100,7 +30471,8 @@ "LayeredInfiniteZoom", "Replicate flux 1.1 pro ultra", "ReplicateAPI_flux_1_1_pro_ultra", - "ReplicateAPI_flux_fill_pro" + "ReplicateAPI_flux_fill_pro", + "StringLower" ], { "title_aux": "Node_Fun_ComfyUI" @@ -30245,6 +30617,14 @@ "title_aux": "ComfyUI-FlowChain" } ], + "https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler": [ + [ + "SeedVR2" + ], + { + "title_aux": "ComfyUI-SeedVR2_VideoUpscaler" + } + ], "https://github.com/numz/Comfyui-Orpheus": [ [ "orpheus", @@ -30288,6 +30668,14 @@ "title_aux": "ComfyUI_NetDist_Plus" } ], + "https://github.com/o-l-l-i/ComfyUI-Olm-CurveEditor": [ + [ + "OlmCurveEditor" + ], + { + "title_aux": "Olm Curve Editor for ComfyUI" + } + ], "https://github.com/o-l-l-i/ComfyUI-Olm-Resolution-Picker": [ [ "OlmResolutionPicker" @@ -30503,6 +30891,20 @@ "title_aux": "ComfyUI PDF Nodes" } ], + "https://github.com/orion4d/illusion_node": [ + [ + "AdvancedAutostereogramNode", + "AutostereogramNode", + "CheckerboardNode", + "ColorImageNode", + "PatternGeneratorNode", + "TessellationNode", + "TileImageRepeaterNode" + ], + { + "title_aux": "ComfyUI Illusion & Pattern Nodes" + } + ], "https://github.com/orssorbit/ComfyUI-wanBlockswap": [ [ "wanBlockSwap" @@ -30672,7 +31074,8 @@ "SlidingWindowGuidanceAdvanced", "SmoothedEnergyGuidanceAdvanced", "TRTAttachPag", - "TRTPerturbedAttention" + "TRTPerturbedAttention", + "TokenPerturbationGuidance" ], { "title_aux": "sd-perturbed-attention" @@ -30957,22 +31360,52 @@ ], "https://github.com/plugcrypt/CRT-Nodes": [ [ + "AutopromptProcessor", "Boolean Transform", + "CLIPTextEncodeFluxMerged", "CRT Post-Process Suite", "CRTPostProcess", + "CRT_UpscaleModelAdv", + "ClearPreprocessorCache", + "ClearStyleModelCache", + "ClearStyleModelDualCache", + "FaceEnhancementPipeline", + "FaceEnhancementPipelineWithInjection", "FancyNoteNode", + "FileLoaderCrawl", + "FluxAIO_CRT", + "FluxControlnetSampler", + "FluxControlnetSamplerWithInjection", "FluxLoraBlocksPatcher", + "FluxSemanticEncoder", "FluxTiledSamplerCustomAdvanced", + "ImageLoaderCrawl", + "LatentNoiseInjectionSampler", + "LoadImageResize", "Lora Loader Str", + "MaskEmptyFloatNode", + "MaskPassOrPlaceholder", + "PonyFaceEnhancementPipelineWithInjection", + "PonyUpscaleSamplerWithInjection", "Remove Trailing Comma", + "Resolution", + "SamplerSchedulerSelector", + "SimpleFluxShiftNode", + "SimpleKnobNode", + "SimpleToggleNode", + "SmartControlNetApply", + "SmartStyleModelApply", + "SmartStyleModelApplyDual", + "SmartStyleModelApplyWithVision", "Toggle Lora Unet Blocks L1", "Toggle Lora Unet Blocks L2", "Video Duration Calculator" ], { - "author": "CRT", - "description": "Set of nodes for ComfyUI", - "title": "CRT-Nodes", + "author": "chflame", + "description": "A set of nodes for ComfyUI that can composite layer and mask to achieve Photoshop like functionality.", + "nickname": "LayerStyle", + "title": "LayerStyle", "title_aux": "CRT-Nodes" } ], @@ -31127,6 +31560,7 @@ ], "https://github.com/ptmaster/comfyui-audio-speed": [ [ + "PT48KHZ", "PTAudioSpeed" ], { @@ -31255,6 +31689,22 @@ "title_aux": "ComfyUI-Step1X-Edit" } ], + "https://github.com/quasiblob/ComfyUI-EsesCompositionGuides": [ + [ + "EsesCompositionGuides" + ], + { + "title_aux": "ComfyUI-EsesCompositionGuides" + } + ], + "https://github.com/quasiblob/ComfyUI-EsesImageAdjustments": [ + [ + "EsesImageAdjustments2" + ], + { + "title_aux": "ComfyUI-EsesImageAdjustments" + } + ], "https://github.com/qwixiwp/queuetools": [ [ "load images (queue tools)" @@ -31687,6 +32137,7 @@ "BooleanToEnabled", "CannySlider", "ConfigurableDrawText", + "ConfigurableModelRouter", "ControlNetSlider", "DenoiseSlider", "DrawTextConfig", @@ -31777,6 +32228,14 @@ "title_aux": "ComfyUIFlexiLoRALoader" } ], + "https://github.com/rookiepsi/comfypsi_blur_mask": [ + [ + "comfypsi_blur_mask" + ], + { + "title_aux": "Blur Mask" + } + ], "https://github.com/rookiepsi/comfyui-extended": [ [ "ImageLiquify", @@ -31797,7 +32256,8 @@ "UtilitySwitch", "rookiepsi_BlurMask", "rookiepsi_ConstructMask", - "rookiepsi_CropImageToMask" + "rookiepsi_CropImageToMask", + "rookiepsi_ResizeMask" ], { "title_aux": "ComfyUI Extended" @@ -32345,7 +32805,9 @@ [ "LanPaint_KSampler", "LanPaint_KSamplerAdvanced", - "LanPaint_MaskBlend" + "LanPaint_MaskBlend", + "LanPaint_SamplerCustom", + "LanPaint_SamplerCustomAdvanced" ], { "title_aux": "LanPaint" @@ -33353,6 +33815,15 @@ "title_aux": "ComfyUI_ParlerTTS" } ], + "https://github.com/smthemex/ComfyUI_PartPacker": [ + [ + "PartPacker_Loader", + "PartPacker_Sampler" + ], + { + "title_aux": "ComfyUI_PartPacker" + } + ], "https://github.com/smthemex/ComfyUI_Personalize_Anything": [ [ "Personalize_Anything_Load", @@ -33417,6 +33888,16 @@ "title_aux": "ComfyUI_Sapiens" } ], + "https://github.com/smthemex/ComfyUI_SongGeneration": [ + [ + "SongGeneration_Sampler", + "SongGeneration_Stage1", + "SongGeneration_Stage2" + ], + { + "title_aux": "ComfyUI_SongGeneration" + } + ], "https://github.com/smthemex/ComfyUI_Sonic": [ [ "SONICSampler", @@ -34131,12 +34612,21 @@ "JM-MiniMax-API/load-audio", "JM-MiniMax-API/text-to-speech", "JM-MiniMax-API/video-generation", - "JM-MiniMax-API/voice-cloning" + "JM-MiniMax-API/voice-cloning", + "JM-MiniMax-API/voice-design" ], { "title_aux": "ComfyUI-JM-MiniMax-API" } ], + "https://github.com/synthetai/ComfyUI-JM-Volcengine-API": [ + [ + "volcengine-seedream-v3" + ], + { + "title_aux": "ComfyUI-JM-Volcengine-API" + } + ], "https://github.com/synthetai/ComfyUI-ToolBox": [ [ "AutoDLDownload", @@ -34369,6 +34859,7 @@ "GeminiNode", "KoboldCppApiNode", "LoraStrengthXYPlot", + "MusiQNode", "SaveImageEnhancedNode" ], { @@ -34649,8 +35140,48 @@ ], "https://github.com/traugdor/ComfyUI-quadMoons-nodes": [ [ + "AnimateDiff Script", + "Apply ControlNet Stack", + "Control Net Stacker", + "Eff. Loader SDXL", + "Efficient Loader", + "HighRes-Fix Script", + "Image Overlay", + "Join XY Inputs of Same Type", + "KSampler (Efficient)", + "KSampler Adv. (Efficient)", + "KSampler SDXL (Eff.)", + "LatentUpscaler", + "LoRA Stack to String converter", + "LoRA Stacker", + "Manual XY Entry Info", + "NNLatentUpscale", + "Noise Control Script", + "Pack SDXL Tuple", + "Tiled Upscaler Script", + "Unpack SDXL Tuple", + "XY Input: Add/Return Noise", + "XY Input: Aesthetic Score", + "XY Input: CFG Scale", + "XY Input: Checkpoint", + "XY Input: Clip Skip", + "XY Input: Control Net", + "XY Input: Control Net Plot", + "XY Input: Denoise", + "XY Input: LoRA", + "XY Input: LoRA Plot", + "XY Input: LoRA Stacks", + "XY Input: Manual XY Entry", + "XY Input: Prompt S/R", + "XY Input: Refiner On/Off", + "XY Input: Sampler/Scheduler", + "XY Input: Seeds++ Batch", + "XY Input: Steps", + "XY Input: VAE", + "XY Plot", "quadmoonBatchFromLatent", "quadmoonCLIPTextEncode", + "quadmoonCLIPTextEncode2", "quadmoonChangeBackground", "quadmoonConvertBoolToString", "quadmoonConvertFloatToString", @@ -34798,41 +35329,35 @@ ], "https://github.com/tusharbhutt/Endless-Nodes": [ [ - "ESS Aesthetic Scoring", - "ESS Combo Parameterizer", - "ESS Combo Parameterizer & Prompts", - "ESS Eight Input Text Switch", - "ESS Float to Integer", - "ESS Float to Number", - "ESS Float to String", - "ESS Float to X", - "ESS Image Reward", - "ESS Image Saver with JSON", - "ESS Integer to Float", - "ESS Integer to Number", - "ESS Integer to String", - "ESS Integer to X", - "ESS Number to Float", - "ESS Number to Integer", - "ESS Number to String", - "ESS Number to X", - "ESS Parameterizer", - "ESS Parameterizer & Prompts", - "ESS Six Float Output", - "ESS Six Input Text Switch", - "ESS Six Integer IO Switch", - "ESS Six Integer IO Widget", - "ESS String to Float", - "ESS String to Integer", - "ESS String to Num", - "ESS String to X", - "\u267e\ufe0f\ud83c\udf0a\u2728 Image Saver with JSON" + "BatchNegativePrompts", + "Eight_Input_Int_Switch", + "Eight_Input_Int_Switch_Widget", + "Eight_Input_Text_Switch", + "EndlessNode_BatchNegativePrompts", + "EndlessNode_FluxBatchPrompts", + "EndlessNode_PromptCounter", + "EndlessNode_SDXLBatchPrompts", + "EndlessNode_SimpleBatchPrompts", + "FluxBatchPrompts", + "Four_Input_Int_Switch", + "Four_Input_Int_Switch_Widget", + "Four_Input_Text_Switch", + "ImageComplexityScorer", + "ImageNoveltyScorer", + "Image_saver", + "PromptCounter", + "Random_Prompt_Multipicker", + "Random_Prompt_Selector", + "Randomizer_Chaos", + "Randomizer_Mayhem", + "Randomizer_Pandemonium", + "SDXLBatchPrompts", + "SimpleBatchPrompts", + "Six_Input_Int_Switch", + "Six_Input_Int_Switch_Widget", + "Six_Input_Text_Switch" ], { - "author": "BiffMunky", - "description": "A small set of nodes I created for various numerical and text inputs. Features image saver with ability to have JSON saved to separate folder, parameter collection nodes, two aesthetic scoring models, switches for text and numbers, and conversion of string to numeric and vice versa.", - "nickname": "\u267e\ufe0f\ud83c\udf0a\u2728", - "title": "Endless \ufe0f\ud83c\udf0a\u2728 Nodes", "title_aux": "Endless \ufe0f\ud83c\udf0a\u2728 Nodes" } ], @@ -35197,14 +35722,6 @@ "title_aux": "ComfyUI_BishaNodes" } ], - "https://github.com/vovler/comfyui-civitaihelper": [ - [ - "\ud83c\udfaf Civitai Helper" - ], - { - "title_aux": "ComfyUI Civitai Helper Extension" - } - ], "https://github.com/vsevolod-oparin/comfyui-kandinsky22": [ [ "comfy-kandinsky22-decoder-loader", @@ -35429,20 +35946,34 @@ "https://github.com/whmc76/ComfyUI-UniversalToolkit": [ [ "AudioCropProcessUTK", + "CheckMask_UTK", + "CropByMask_UTK", "DepthMapBlur_UTK", "EmptyUnitGenerator_UTK", + "FillMaskedArea_UTK", + "ImageAndMaskPreview_UTK", + "ImageCombineAlpha_UTK", "ImageConcatenateMulti_UTK", "ImageConcatenate_UTK", + "ImageMaskScaleAs_UTK", + "ImagePadForOutpaintMasked_UTK", "ImageRatioDetector_UTK", + "ImageRemoveAlpha_UTK", + "ImageScaleByAspectRatio_UTK", + "ImageScaleRestore_UTK", + "ImitationHueNode_UTK", "LoadAudioPlusFromPath_UTK", "MaskAdd_UTK", "MaskAnd_UTK", "MaskSub_UTK", "PreviewMask_UTK", + "PurgeVRAM_UTK", + "RestoreCropBox_UTK", "ShowFloat_UTK", "ShowInt_UTK", "ShowList_UTK", - "ShowText_UTK" + "ShowText_UTK", + "Show_UTK" ], { "title_aux": "ComfyUI-UniversalToolkit" @@ -35899,25 +36430,6 @@ "title_aux": "ComfyUI-connect-ui" } ], - "https://github.com/xl0/latent-tools": [ - [ - "LTBlendLatent", - "LTGaussianLatent", - "LTKSampler", - "LTLatentLoad", - "LTLatentOp", - "LTLatentToShape", - "LTLatentsConcatenate", - "LTNumberRangeGaussian", - "LTNumberRangeUniform", - "LTPreviewLatent", - "LTReshapeLatent", - "LTUniformLatent" - ], - { - "title_aux": "latent-tools" - } - ], "https://github.com/xlinx/ComfyUI-decadetw-auto-messaging-realtime": [ [ "Auto-MSG-ALL", @@ -36215,17 +36727,6 @@ "title_aux": "ComfyUI-LinearTransition" } ], - "https://github.com/yichengup/ComfyUI-VideoBlender": [ - [ - "VideoBlendLayer", - "VideoBlendStack", - "VideoBlendStackAdvanced", - "VideoPreprocess" - ], - { - "title_aux": "ComfyUI-VideoBlender" - } - ], "https://github.com/yichengup/ComfyUI-YCNodes": [ [ "AdvancedImageSelector", @@ -36501,6 +37002,7 @@ "easy lengthAnything", "easy loadImageBase64", "easy loadImagesForLoop", + "easy loraNames", "easy loraStack", "easy loraStackApply", "easy makeImageForICLora", @@ -37108,6 +37610,7 @@ "ImageResizeTo8x", "ImageTransition", "ImageTransitionLeftToRight", + "ImageTransitionTopToBottom", "ImagesConcanateToGrid", "IntMultipleAddLiteral", "LoadImageMaskWithSwitch", diff --git a/pyproject.toml b/pyproject.toml index 26de576f..bd4bbebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "comfyui-manager" license = { text = "GPL-3.0-only" } -version = "4.0.0-beta.4" +version = "4.0.0-beta.5" requires-python = ">= 3.9" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." readme = "README.md"