diff --git a/README.md b/README.md index 83282239..51a47c3d 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ ![menu](misc/menu.jpg) ## NOTICE +* V2.48.1: Security policy has been changed. Downloads of models in the list are allowed under the 'normal' security level. * V2.47: Security policy has been changed. The former 'normal' is now 'normal-', and 'normal' no longer allows high-risk features, even if your ComfyUI is local. * V2.37 Show a ✅ mark to accounts that have been active on GitHub for more than six months. * V2.33 Security policy is applied. diff --git a/check.sh b/check.sh index 6fa408c7..d0df44b8 100755 --- a/check.sh +++ b/check.sh @@ -32,7 +32,7 @@ done echo echo CHECK2 -find ~/.tmp/default -name "*.py" -print0 | xargs -0 grep "crypto" +find ~/.tmp/default -name "*.py" -print0 | xargs -0 grep -E "crypto|^_A=" echo echo CHECK3 diff --git a/cm-cli.py b/cm-cli.py index 518461c5..61b29833 100644 --- a/cm-cli.py +++ b/cm-cli.py @@ -35,11 +35,13 @@ restore_snapshot_path = os.path.join(startup_script_path, "restore-snapshot.json pip_overrides_path = os.path.join(comfyui_manager_path, "pip_overrides.json") git_script_path = os.path.join(comfyui_manager_path, "git_helper.py") +cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision'] cm_global.pip_downgrade_blacklist = ['torch', 'torchsde', 'torchvision', 'transformers', 'safetensors', 'kornia'] cm_global.pip_overrides = {} if os.path.exists(pip_overrides_path): with open(pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file: cm_global.pip_overrides = json.load(json_file) + cm_global.pip_overrides['numpy'] = 'numpy<2' def check_comfyui_hash(): diff --git a/custom-node-list.json b/custom-node-list.json index a0b5b4b4..1b927966 100644 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -83,7 +83,7 @@ { "author": "Fannovel16", "title": "ComfyUI's ControlNet Auxiliary Preprocessors", - "id": "cnet-aux", + "id": "comfyui_controlnet_aux", "reference": "https://github.com/Fannovel16/comfyui_controlnet_aux", "files": [ "https://github.com/Fannovel16/comfyui_controlnet_aux" @@ -139,7 +139,7 @@ "Zoe-DepthMapPreprocessor", "Zoe_DepthAnythingPreprocessor"], "install_type": "git-clone", - "description": "This is a rework of comfyui_controlnet_preprocessors based on ControlNet auxiliary models by 🤗. I think the old repo isn't good enough to maintain. All old workflow will still be work with this repo but the version option won't do anything. Almost all v1 preprocessors are replaced by v1.1 except those doesn't appear in v1.1. [w/NOTE: Please refrain from using the controlnet preprocessor alongside this installation, as it may lead to conflicts and prevent proper recognition.]" + "description": "Plug-and-play ComfyUI node sets for making ControlNet hint images." }, { "author": "Fannovel16", @@ -414,19 +414,8 @@ }, { "author": "SaltAI", - "title": "SaltAI_LlamaIndex", - "id": "saltai-llamaindex", - "reference": "https://github.com/get-salt-AI/SaltAI_LlamaIndex", - "files": [ - "https://github.com/get-salt-AI/SaltAI_LlamaIndex" - ], - "install_type": "git-clone", - "description": "An implementation of the RAG LlamaIndex with Agents from AutoGen" - }, - { - "author": "SaltAI", - "title": "SaltAI Language Toolkit", - "id": "saltai-langtool", + "title": "SaltAI_Language_Toolkit", + "id": "saltai_language_toolkit", "reference": "https://github.com/get-salt-AI/SaltAI_Language_Toolkit", "files": [ "https://github.com/get-salt-AI/SaltAI_Language_Toolkit" @@ -656,6 +645,17 @@ "install_type": "git-clone", "description": "This extension aims to add support for various random image diffusion models to ComfyUI." }, + { + "author": "city96", + "title": "ComfyUI-GGUF", + "id": "gguf", + "reference": "https://github.com/city96/ComfyUI-GGUF", + "files": [ + "https://github.com/city96/ComfyUI-GGUF" + ], + "install_type": "git-clone", + "description": "GGUF Quantization support for native ComfyUI models\nThis is currently very much WIP. These custom nodes provide support for model files stored in the GGUF format popularized by llama.cpp.\nWhile quantization wasn't feasible for regular UNET models (conv2d), transformer/DiT models such as flux seem less affected by quantization. This allows running it in much lower bits per weight variable bitrate quants on low-end GPUs.\n[w/LoRA / Controlnet / etc are currently not supported due to the weights being quantized.]" + }, { "author": "SLAPaper", "title": "ComfyUI-Image-Selector", @@ -669,14 +669,14 @@ }, { "author": "SLAPaper", - "title": "ComfyUI DPM++ 2M Alt Sampler", + "title": "StableDiffusion-dpmpp_2m_alt-Sampler", "id": "dpmpp2m-alt", - "reference": "https://github.com/SLAPaper/ComfyUI-dpmpp_2m_alt-Sampler", + "reference": "https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler", "files": [ - "https://github.com/SLAPaper/ComfyUI-dpmpp_2m_alt-Sampler" + "https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler" ], "install_type": "git-clone", - "description": "the sampler introduced by [a/hallatore](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/8457)\ncode extracted from [a/smZNodes](https://github.com/shiimizu/ComfyUI_smZNodes)" + "description": "the sampler introduced by [a/hallatore](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/8457)\ncode extracted from [a/smZNodes](https://github.com/shiimizu/ComfyUI_smZNodes).[w/NOTE:ComfyUI-dpmpp_2m_alt-Sampler is renamed to StableDiffusion-dpmpp_2m_alt-Sampler. Please reinstall.]" }, { "author": "flyingshutter", @@ -1061,7 +1061,7 @@ "https://github.com/shiimizu/ComfyUI_smZNodes" ], "install_type": "git-clone", - "description": "NODES: CLIP Text Encode++. Achieve identical embeddings from stable-diffusion-webui for ComfyUI." + "description": "Nodes such as CLIP Text Encode++ to achieve identical embeddings from stable-diffusion-webui for ComfyUI." }, { "author": "shiimizu", @@ -1074,6 +1074,28 @@ "install_type": "git-clone", "description": "The extension enables large image drawing & upscaling with limited VRAM via the following techniques:\n1.Two SOTA diffusion tiling algorithms: [a/Mixture of Diffusers](https://github.com/albarji/mixture-of-diffusers) and [a/MultiDiffusion](https://github.com/omerbt/MultiDiffusion)\n2.pkuliyi2015's Tiled VAE algorithm." }, + { + "author": "shiimizu", + "title": "ComfyUI PhotoMaker Plus", + "id": "photomaker-plus", + "reference": "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus", + "files": [ + "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus" + ], + "install_type": "git-clone", + "description": "ComfyUI reference implementation for [a/PhotoMaker](https://github.com/TencentARC/PhotoMaker) models.\nNOTE: PhotoMaker V2 is supported." + }, + { + "author": "shiimizu", + "title": "Semantic-aware Guidance (S-CFG)", + "id": "s-cfg", + "reference": "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance", + "files": [ + "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance" + ], + "install_type": "git-clone", + "description": "ComfyUI node for Semantic-aware Guidance based on the [a/paper](https://arxiv.org/abs/2404.05384) 'Rethinking the Spatial Inconsistency in Classifier-Free Diffusion Guidance'" + }, { "author": "ZaneA", "title": "ImageReward", @@ -1114,6 +1136,44 @@ "files": [ "https://github.com/cubiq/ComfyUI_IPAdapter_plus" ], + "preemptions": [ + "IPAAdapterFaceIDBatch", + "IPAdapter", + "IPAdapterAdvanced", + "IPAdapterBatch", + "IPAdapterClipVisionEnhancer", + "IPAdapterClipVisionEnhancerBatch", + "IPAdapterCombineEmbeds", + "IPAdapterCombineParams", + "IPAdapterCombineWeights", + "IPAdapterEmbeds", + "IPAdapterEmbedsBatch", + "IPAdapterEncoder", + "IPAdapterFaceID", + "IPAdapterFromParams", + "IPAdapterInsightFaceLoader", + "IPAdapterLoadEmbeds", + "IPAdapterMS", + "IPAdapterModelLoader", + "IPAdapterNoise", + "IPAdapterPreciseComposition", + "IPAdapterPreciseCompositionBatch", + "IPAdapterPreciseStyleTransfer", + "IPAdapterPreciseStyleTransferBatch", + "IPAdapterPromptScheduleFromWeightsStrategy", + "IPAdapterRegionalConditioning", + "IPAdapterSaveEmbeds", + "IPAdapterStyleComposition", + "IPAdapterStyleCompositionBatch", + "IPAdapterTiled", + "IPAdapterTiledBatch", + "IPAdapterUnifiedLoader", + "IPAdapterUnifiedLoaderCommunity", + "IPAdapterUnifiedLoaderFaceID", + "IPAdapterWeights", + "IPAdapterWeightsFromStrategy", + "PrepImageForClipVision" + ], "pip": ["insightface"], "install_type": "git-clone", "description": "ComfyUI reference implementation for IPAdapter models. The code is mostly taken from the original IPAdapter repository and laksjdjf's implementation, all credit goes to them. I just made the extension closer to ComfyUI philosophy." @@ -1396,7 +1456,7 @@ { "author": "asagi4", "title": "Adaptive Guidance for ComfyUI", - "id": "asagi-nodes", + "id": "comfyui-adaptive-guidance", "reference": "https://github.com/asagi4/ComfyUI-Adaptive-Guidance", "files": [ "https://github.com/asagi4/ComfyUI-Adaptive-Guidance" @@ -1876,6 +1936,17 @@ "install_type": "git-clone", "description": "A set of nodes to prepare the noise predictions before the CFG function" }, + { + "author": "Extraltodeus", + "title": "Skimmed_CFG", + "id": "skimmed-cfg", + "reference": "https://github.com/Extraltodeus/Skimmed_CFG", + "files": [ + "https://github.com/Extraltodeus/Skimmed_CFG" + ], + "install_type": "git-clone", + "description": "A powerful anti-burn allowing much higher CFG scales for latent diffusion models (for ComfyUI)" + }, { "author": "JPS", "title": "JPS Custom Nodes for ComfyUI", @@ -2269,7 +2340,7 @@ "https://github.com/youyegit/tdxh_node_comfyui" ], "install_type": "git-clone", - "description": "Nodes:TdxhImageToSize, TdxhImageToSizeAdvanced, TdxhLoraLoader, TdxhIntInput, TdxhFloatInput, TdxhStringInput. Some nodes for stable diffusion comfyui. Sometimes it helps conveniently to use less nodes for doing the same things." + "description": "Add Switch on nodes, Make nodes amount small! It helps conveniently to use less nodes for doing the same things." }, { "author": "Sxela", @@ -2358,7 +2429,7 @@ "https://github.com/Acly/comfyui-tooling-nodes" ], "install_type": "git-clone", - "description": "Nodes: Load Image (Base64), Load Mask (Base64), Send Image (WebSocket), Crop Image, Apply Mask to Image. Provides nodes geared towards using ComfyUI as a backend for external tools.\nNOTE: This extension is necessary when using an external tool like [comfyui-capture-inference](https://github.com/minux302/comfyui-capture-inference)." + "description": "Provides nodes and server API extensions geared towards using ComfyUI as a backend for external tools." }, { "author": "Acly", @@ -2668,14 +2739,14 @@ }, { "author": "mcmonkeyprojects", - "title": "Stable Diffusion Dynamic Thresholding (CFG Scale Fix)", + "title": "Dynamic Thresholding", "id": "dynamic-thresholding", "reference": "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding", "files": [ "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding" ], "install_type": "git-clone", - "description": "Extension for StableSwarmUI, ComfyUI, and AUTOMATIC1111 Stable Diffusion WebUI that enables a way to use higher CFG Scales without color issues. This works by clamping latents between steps." + "description": "Adds nodes for Dynamic Thresholding, CFG scheduling, and related techniques." }, { "author": "Tropfchen", @@ -2690,14 +2761,14 @@ }, { "author": "chrisgoringe", - "title": "Variation seeds", - "id": "variation-seed", - "reference": "https://github.com/chrisgoringe/cg-noise", + "title": "Noise variation and batch noise tools", + "id": "cg-noisetools", + "reference": "https://github.com/chrisgoringe/cg-noisetools", "files": [ - "https://github.com/chrisgoringe/cg-noise" + "https://github.com/chrisgoringe/cg-noisetools" ], "install_type": "git-clone", - "description": "Adds KSampler custom nodes with variation seed and variation strength." + "description": "Nodes to create small variations on noise, to shape noise, and to control noise in batches. Replaces the old 'variation-seed' nodes." }, { "author": "chrisgoringe", @@ -3013,7 +3084,7 @@ "https://github.com/kijai/ComfyUI-LivePortraitKJ" ], "install_type": "git-clone", - "description": "Nodes for [a/LivePortrait](https://github.com/KwaiVGI/LivePortrait), insightface is required" + "description": "Nodes for [a/LivePortrait](https://github.com/KwaiVGI/LivePortrait)" }, { "author": "kijai", @@ -3026,6 +3097,27 @@ "install_type": "git-clone", "description": "Rudimentary wrapper that runs [a/Kwai-Kolors](https://huggingface.co/Kwai-Kolors/Kolors) text2image pipeline using diffusers." }, + { + "author": "kijai", + "title": "ComfyUI-segment-anything-2", + "id": "segment-anything-2", + "reference": "https://github.com/kijai/ComfyUI-segment-anything-2", + "files": [ + "https://github.com/kijai/ComfyUI-segment-anything-2" + ], + "install_type": "git-clone", + "description": "Nodes to use [a/segment-anything-2](https://github.com/facebookresearch/segment-anything-2) for image or video segmentation." + }, + { + "author": "kijai", + "title": "ComfyUI nodes for ControlNext-SVD v2", + "reference": "https://github.com/kijai/ComfyUI-ControlNeXt-SVD", + "files": [ + "https://github.com/kijai/ComfyUI-ControlNeXt-SVD" + ], + "install_type": "git-clone", + "description": "These nodes include my wrapper for the original diffusers pipeline, as well as work in progress native ComfyUI implementation.\nFor the diffusers wrapper models should be downloaded automatically, for the native version you can get the unet [a/here](https://huggingface.co/Kijai/ControlNeXt-SVD-V2-Comfy/blob/main/controlnext-svd_v2-unet-fp16_converted.safetensors)." + }, { "author": "hhhzzyang", "title": "Comfyui-Lama", @@ -3288,6 +3380,17 @@ "install_type": "git-clone", "description": "A custom node for ComfyUI. It compare two images to rate facial similarity." }, + { + "author": "chflame163", + "title": "ComfyUI_CatVTON_Wrapper", + "id": "catvton-wrapper", + "reference": "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper", + "files": [ + "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper" + ], + "install_type": "git-clone", + "description": "[a/CatVTON](https://github.com/Zheng-Chong/CatVTON) warpper for ComfyUI" + }, { "author": "drustan-hawk", "title": "primitive-types", @@ -3374,6 +3477,16 @@ "install_type": "git-clone", "description": "The ComfyUI version of [a/LivePortrait](https://github.com/KwaiVGI/LivePortrait)." }, + { + "author": "shadowcz007", + "title": "comfyui-try-on", + "reference": "https://github.com/shadowcz007/comfyui-try-on", + "files": [ + "https://github.com/shadowcz007/comfyui-try-on" + ], + "install_type": "git-clone", + "description": "Virtual try-on for creating a personal brand wardrobe collection." + }, { "author": "ostris", "title": "Ostris Nodes ComfyUI", @@ -4278,6 +4391,16 @@ "install_type": "git-clone", "description": "Nodes: ComfyUI_ImageToText" }, + { + "author": "SoftMeng", + "title": "ComfyUI-DeepCache-Fix", + "reference": "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix", + "files": [ + "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix" + ], + "install_type": "git-clone", + "description": "Accelerate ComfyUI Nodes for Faster Image Generation, Ensuring Consistency Pre and Post-Acceleration, Ideal for Bulk Image Production." + }, { "author": "wmatson", "title": "easy-comfy-nodes", @@ -4329,57 +4452,67 @@ }, { "author": "Haoming02", - "title": "ComfyUI Diffusion Color Grading", + "title": "ComfyUI Old Photo Restoration", + "reference": "https://github.com/Haoming02/comfyui-old-photo-restoration", + "files": [ + "https://github.com/Haoming02/comfyui-old-photo-restoration" + ], + "install_type": "git-clone", + "description": "Perform Bringing-Old-Photos-Back-to-Life" + }, + { + "author": "Haoming02", + "title": "Diffusion CG", "reference": "https://github.com/Haoming02/comfyui-diffusion-cg", "files": [ "https://github.com/Haoming02/comfyui-diffusion-cg" ], "install_type": "git-clone", - "description": "This is the ComfyUI port of the joint research between me and TimothyAlexisVass. For more information, check out the original [a/Extension](https://github.com/Haoming02/sd-webui-diffusion-cg) for Automatic1111." + "description": "Color Grading for Stable Diffusion" }, { "author": "Haoming02", - "title": "ComfyUI Prompt Format", + "title": "Prompt Format", "reference": "https://github.com/Haoming02/comfyui-prompt-format", "files": [ "https://github.com/Haoming02/comfyui-prompt-format" ], "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which helps formatting texts." + "description": "Add a button that formats the prompts in textfields" }, { "author": "Haoming02", - "title": "ComfyUI Clear Screen", + "title": "Clear Screen", "reference": "https://github.com/Haoming02/comfyui-clear-screen", "files": [ "https://github.com/Haoming02/comfyui-clear-screen" ], "install_type": "git-clone", - "description": "Adds a CLS button to clear the console." + "description": "Add a button that clears the console" }, { "author": "Haoming02", - "title": "ComfyUI Menu Anchor", + "title": "Menu Anchor", "reference": "https://github.com/Haoming02/comfyui-menu-anchor", "files": [ "https://github.com/Haoming02/comfyui-menu-anchor" ], "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which moves the menu to the specified corner on startup." + "description": "Snaps the menu to the corner automatically" }, { "author": "Haoming02", - "title": "ComfyUI Tab Handler", + "title": "Tab Handler", "reference": "https://github.com/Haoming02/comfyui-tab-handler", "files": [ "https://github.com/Haoming02/comfyui-tab-handler" ], "install_type": "git-clone", - "description": "Intercepts the Tab key to switch between textarea" + "description": "Use the Tab key to switch between textfields" }, { "author": "Haoming02", - "title": "ComfyUI Floodgate", + "title": "Floodgate", "reference": "https://github.com/Haoming02/comfyui-floodgate", "files": [ "https://github.com/Haoming02/comfyui-floodgate" @@ -4389,13 +4522,13 @@ }, { "author": "Haoming02", - "title": "ComfyUI Node Beautify", + "title": "Node Beautify", "reference": "https://github.com/Haoming02/comfyui-node-beautify", "files": [ "https://github.com/Haoming02/comfyui-node-beautify" ], "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which helps formatting the workflow." + "description": "Add a button that formats the workflow graph" }, { "author": "Haoming02", @@ -4405,7 +4538,7 @@ "https://github.com/Haoming02/comfyui-resharpen" ], "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which allows you to increase or decrease the amount of details generated during the Stable Diffusion pipeline." + "description": "Manipulate the details of generations." }, { "author": "bedovyy", @@ -4594,7 +4727,7 @@ }, { "author": "mmaker", - "title": "Color Enhance", + "title": "mmaker/Color Enhance", "reference": "https://git.mmaker.moe/mmaker/sd-webui-color-enhance", "files": [ "https://git.mmaker.moe/mmaker/sd-webui-color-enhance" @@ -4725,7 +4858,6 @@ "https://github.com/vienteck/ComfyUI-Chat-GPT-Integration" ], "install_type": "git-clone", - "description": "This extension is a reimagined version based on the [a/ComfyUI-QualityOfLifeSuit_Omar92](https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92) extension, and it supports integration with ChatGPT through the new OpenAI API.\nNOTE: See detailed installation instructions on the [a/repository](https://github.com/vienteck/ComfyUI-Chat-GPT-Integration)." }, { @@ -5202,7 +5334,7 @@ "https://github.com/54rt1n/ComfyUI-DareMerge" ], "install_type": "git-clone", - "description": "Merge two checkpoint models by dare ties [a/(https://github.com/yule-BUAA/MergeLM)](https://github.com/yule-BUAA/MergeLM), sort of." + "description": "ComfyUI powertools for SD1.5 and SDXL model merging." }, { "author": "an90ray", @@ -5683,7 +5815,7 @@ { "author": "alexopus", "title": "ComfyUI Image Saver", - "id": "image-saver", + "id": "comfyui-image-saver", "reference": "https://github.com/alexopus/ComfyUI-Image-Saver", "files": [ "https://github.com/alexopus/ComfyUI-Image-Saver" @@ -5826,6 +5958,16 @@ "install_type": "git-clone", "description": "Nodes: LoadImageFromBase64. Loads an image and its transparency mask from a base64-encoded data URI for easy API connection." }, + { + "author": "glowcone", + "title": "String Converter", + "reference": "https://github.com/glowcone/comfyui-string-converter", + "files": [ + "https://github.com/glowcone/comfyui-string-converter" + ], + "install_type": "git-clone", + "description": "Nodes: Convert String To Int, Convert String To Float" + }, { "author": "AInseven", "title": "ComfyUI-fastblend", @@ -6075,17 +6217,6 @@ "install_type": "git-clone", "description": "Slightly better random prompt generation tools that allow combining and picking prompts from both file and text input sources." }, - { - "author": "shiimizu", - "title": "ComfyUI PhotoMaker Plus", - "id": "photomaker-plus", - "reference": "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus", - "files": [ - "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus" - ], - "install_type": "git-clone", - "description": "ComfyUI reference implementation for [a/PhotoMaker](https://github.com/TencentARC/PhotoMaker) models. [w/WARN:The repository name has been changed. For those who have previously installed it, please delete custom_nodes/ComfyUI-PhotoMaker from disk and reinstall this.]" - }, { "author": "yytdfc", "title": "Amazon Bedrock nodes for ComfyUI", @@ -6131,17 +6262,6 @@ "install_type": "git-clone", "description": "Nodes:Generate Stable Diffsution Prompt With LLM, Translate Text With LLM, Chat With LLM" }, - { - "author": "longgui0318", - "title": "comfyui-oms-diffusion", - "id": "oms-diffusion", - "reference": "https://github.com/longgui0318/comfyui-oms-diffusion", - "files": [ - "https://github.com/longgui0318/comfyui-oms-diffusion" - ], - "install_type": "git-clone", - "description": "Nodes:Extract Features With Unet, Additional Features With Attention" - }, { "author": "longgui0318", "title": "comfyui-magic-clothing", @@ -6151,7 +6271,7 @@ "https://github.com/longgui0318/comfyui-magic-clothing" ], "install_type": "git-clone", - "description": "The comfyui supported version of the [a/Magic Clothing](https://github.com/ShineChen1024/MagicClothing) project, not the diffusers version, allows direct integration with modules such as ipadapter" + "description": "The comfyui supported version of the [a/Magic Clothing](https://github.com/ShineChen1024/MagicClothing) project, not the diffusers version, allows direct integration with modules such as ipadapter.[w/comfyui-oms-diffusion is renamed to comfyui-magic-clothing. You may need to reinstall this.]" }, { "author": "longgui0318", @@ -6371,6 +6491,17 @@ "install_type": "git-clone", "description": "This repo provides a ComfyUI Custom Node implementation of [a/YOLO-NAS-POSE](https://github.com/Deci-AI/super-gradients), powered by TensorRT for ultra fast pose estimation. It has been adapted to work with openpose controlnet (experimental)" }, + { + "author": "yuvraj108c", + "title": "ComfyUI Dwpose TensorRT", + "id": "dwpose-tensorrt", + "reference": "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt", + "files": [ + "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt" + ], + "install_type": "git-clone", + "description": "This project provides a Tensorrt implementation of Dwpose for ultra fast pose estimation inside ComfyUI" + }, { "author": "blepping", "title": "ComfyUI-bleh", @@ -6395,14 +6526,24 @@ }, { "author": "blepping", - "title": "ComfyUI jank HiDiffusion", + "title": "comfyui_jankhidiffusion", "id": "jank-hidiffusion", "reference": "https://github.com/blepping/comfyui_jankhidiffusion", "files": [ "https://github.com/blepping/comfyui_jankhidiffusion" ], "install_type": "git-clone", - "description": "Janky experimental attempt at implementing [a/HiDiffusion](https://github.com/megvii-research/HiDiffusion) for ComfyUI." + "description": "Janky implementation of [a/HiDiffusion](https://github.com/megvii-research/HiDiffusion) for ComfyUI. Enables generating at resolutions higher than what the model was trained for. Only supports SD 1.x (maybe 2.x) and SDXL." + }, + { + "author": "blepping", + "title": "comfyui_overly_complicated_sampling", + "reference": "https://github.com/blepping/comfyui_overly_complicated_sampling", + "files": [ + "https://github.com/blepping/comfyui_overly_complicated_sampling" + ], + "install_type": "git-clone", + "description": "Experimental and mathematically unsound (but fun!) sampling for ComfyUI.\nFeel free create a question in Discussions for usage help: OCS Q&A Discussion[w/Status: In flux, may be useful but likely to change/break workflows frequently. Mainly for advanced users.]" }, { "author": "JerryOrbachJr", @@ -6534,6 +6675,16 @@ "install_type": "git-clone", "description": "Original project: [a/link](https://github.com/tencent-ailab/PCDMs)\nBased on testing, the author's original images work very well, but using my own images generally requires some luck!" }, + { + "author": "StartHua", + "title": "Comfyui_CXH_joy_caption", + "reference": "https://github.com/StartHua/Comfyui_CXH_joy_caption", + "files": [ + "https://github.com/StartHua/Comfyui_CXH_joy_caption" + ], + "install_type": "git-clone", + "description": "Nodes:Joy_caption_load, Joy_caption" + }, { "author": "ricklove", "title": "comfyui-ricklove", @@ -6760,6 +6911,26 @@ "install_type": "git-clone", "description": "A custom node for ComfyUI to create a prompt based on a list of keywords saved in CSV files." }, + { + "author": "Franck-Demongin", + "title": "NX_HuggingFace_Flux", + "reference": "https://github.com/Franck-Demongin/NX_HuggingFace_Flux", + "files": [ + "https://github.com/Franck-Demongin/NX_HuggingFace_Flux" + ], + "install_type": "git-clone", + "description": "Nodes:Hugging Face Flux" + }, + { + "author": "Franck-Demongin", + "title": "NX_Translator", + "reference": "https://github.com/Franck-Demongin/NX_Translator", + "files": [ + "https://github.com/Franck-Demongin/NX_Translator" + ], + "install_type": "git-clone", + "description": "A custom node for translating prompts with Google Translate or DeeplL directly in ComfyUI." + }, { "author": "xiaoxiaodesha", "title": "hd-nodes-comfyui", @@ -6847,6 +7018,27 @@ "install_type": "git-clone", "description": "Nodes:Cascade Resolutions" }, + { + "author": "al-swaiti", + "title": "All-IN-ONE-style", + "id": "all-in-one-style", + "reference": "https://github.com/al-swaiti/All-IN-ONE-style", + "files": [ + "https://github.com/al-swaiti/All-IN-ONE-style" + ], + "install_type": "git-clone", + "description": "all art styles" + }, + { + "author": "al-swaiti", + "title": "GeminiOllama ComfyUI Extension", + "reference": "https://github.com/al-swaiti/ComfyUI-OllamaGemini", + "files": [ + "https://github.com/al-swaiti/ComfyUI-OllamaGemini" + ], + "install_type": "git-clone", + "description": "This extension integrates Google's Gemini API and Ollama into ComfyUI, allowing users to leverage these powerful language models directly within their ComfyUI workflows." + }, { "author": "mirabarukaso", "title": "ComfyUI_Mira", @@ -6869,17 +7061,6 @@ "install_type": "git-clone", "description": "ComfyUI Node - Hugging Face repositories GTP2 Prompt" }, - { - "author": "1038lab", - "title": "ComfyUI-latentSizeSelector", - "id": "ComfyUI-latentSizeSelector", - "reference": "https://github.com/1038lab/ComfyUI_LatentSizeSelector", - "files": [ - "https://github.com/1038lab/ComfyUI_LatentSizeSelector" - ], - "install_type": "git-clone", - "description": "You'll get a new node Latent Size Selector, you can pick the x and y sizes from a list." - }, { "author": "Klinter", "title": "Klinter_nodes", @@ -6960,7 +7141,7 @@ { "author": "logtd", "title": "ComfyUI-RAVE Attention", - "id": "rave", + "id": "rave-attn", "reference": "https://github.com/logtd/ComfyUI-RAVE_ATTN", "files": [ "https://github.com/logtd/ComfyUI-RAVE_ATTN" @@ -6968,6 +7149,28 @@ "install_type": "git-clone", "description": "ComfyUI nodes to use RAVE attention as a temporal attention mechanism.\nThis differs from other implementations in that it does not concatenate the images together, but within the UNet's Self-Attention mechanism performs the RAVE technique. By not altering the images/latents throughout the UNet, this method does not affect other temporal techniques, style mechanisms, or other UNet modifications.\nFor example, it can be combined with AnimateDiff, ModelScope/ZeroScope, or FLATTEN." }, + { + "author": "logtd", + "title": "ComfyUI-RefUNet", + "id": "refunet", + "reference": "https://github.com/logtd/ComfyUI-RefUNet", + "files": [ + "https://github.com/logtd/ComfyUI-RefUNet" + ], + "install_type": "git-clone", + "description": "A set of nodes to use Reference UNets" + }, + { + "author": "logtd", + "title": "ComfyUI-SEGAttention", + "id": "segattention", + "reference": "https://github.com/logtd/ComfyUI-SEGAttention", + "files": [ + "https://github.com/logtd/ComfyUI-SEGAttention" + ], + "install_type": "git-clone", + "description": "Nodes to use [a/Smoothed Energy Guidance](https://github.com/SusungHong/SEG-SDXL) for ComfyUI." + }, { "author": "Big-Idea-Technology", "title": "ComfyUI-Book-Tools Nodes for ComfyUI", @@ -7111,7 +7314,7 @@ "https://github.com/cerspense/ComfyUI_cspnodes" ], "install_type": "git-clone", - "description": "Nodes:Image Dir Iterator, Modelscopet2v, Modelscopev2v." + "description": "Nodes:Image Dir Iterator, Modelscopet2v, Modelscopev2v, Vid Dir Iterator, Image Dir Iterator, Text File Line Iterator, Remap Range, Split Image Channels, Resize By Image, Increment Every N." }, { "author": "qwixiwp", @@ -7304,10 +7507,21 @@ "install_type": "git-clone", "description": "Partial redraw sampler and variant seed sampler" }, + { + "author": "11dogzi", + "title": "Comfyui-ergouzi-kaiguan", + "id": "ergouzi-kaiguan", + "reference": "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan", + "files": [ + "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan" + ], + "install_type": "git-clone", + "description": "Group switching control, one click control to ignore and disable multiple groups, as well as wired switch combination nodes, allowing for arbitrary switching of annotation names" + }, { "author": "11dogzi", "title": "ComfUI-EGAdapterMadAssistant", - "id": "ergouzi-samplers", + "id": "madassistant", "reference": "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant", "files": [ "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant" @@ -7835,13 +8049,13 @@ }, { "author": "zhangp365", - "title": "zhangp365/Some Utils for ComfyUI", + "title": "zhangp365/ComfyUI-utils-nodes", "reference": "https://github.com/zhangp365/ComfyUI-utils-nodes", "files": [ "https://github.com/zhangp365/ComfyUI-utils-nodes" ], "install_type": "git-clone", - "description": "Nodes:LoadImageWithSwitch, ImageBatchOneOrMore, ConcatText, ModifyTextGender" + "description": "Nodes:LoadImageWithSwitch, ImageBatchOneOrMore, ModifyTextGender, ImageCompositeMaskedWithSwitch, ColorCorrectOfUtils, SplitMask, MaskFastGrow, CheckpointLoaderSimpleWithSwitch, ImageResizeTo8x, MatchImageRatioToPreset etc." }, { "author": "ratulrafsan", @@ -7890,7 +8104,7 @@ { "author": "viperyl", "title": "ComfyUI-BiRefNet", - "id": "birefnet", + "id": "comfyui-birefnet", "reference": "https://github.com/viperyl/ComfyUI-BiRefNet", "files": [ "https://github.com/viperyl/ComfyUI-BiRefNet" @@ -8017,6 +8231,46 @@ "install_type": "git-clone", "description": "Store text to Key-Values pair json." }, + { + "author": "shinich39", + "title": "comfyui-model-db", + "reference": "https://github.com/shinich39/comfyui-model-db", + "files": [ + "https://github.com/shinich39/comfyui-model-db" + ], + "install_type": "git-clone", + "description": "Store settings by model." + }, + { + "author": "shinich39", + "title": "comfyui-load-image-with-cmd", + "reference": "https://github.com/shinich39/comfyui-load-image-with-cmd", + "files": [ + "https://github.com/shinich39/comfyui-load-image-with-cmd" + ], + "install_type": "git-clone", + "description": "Load image and partially workflow with javascript." + }, + { + "author": "shinich39", + "title": "connect-from-afar", + "reference": "https://github.com/shinich39/comfyui-connect-from-afar", + "files": [ + "https://github.com/shinich39/comfyui-connect-from-afar" + ], + "install_type": "git-clone", + "description": "Connect a new link from out of screen." + }, + { + "author": "shinich39", + "title": "comfyui-target-search", + "reference": "https://github.com/shinich39/comfyui-target-search", + "files": [ + "https://github.com/shinich39/comfyui-target-search" + ], + "install_type": "git-clone", + "description": "Move canvas to target on dragging connection." + }, { "author": "wei30172", "title": "comfygen", @@ -8035,7 +8289,7 @@ "https://github.com/zombieyang/sd-ppp" ], "install_type": "git-clone", - "description": "!!Another custom node about Photoshop!! PPP means interoP with your PhotoshoP. You can get or send layers from/to your Photoshop. This custom node is easier to use." + "description": "getting/sending picture from/to Photoshop with a simple connection. Make Photoshop become the workspace of your ComfyUI" }, { "author": "KytraScript", @@ -8067,6 +8321,36 @@ "install_type": "git-clone", "description": "The SuperPrompter node is a ComfyUI node that uses the SuperPrompt-v1 model from Hugging Face to generate text based on a given prompt. It provides various parameters to control the text generation process." }, + { + "author": "NeuralSamurAI", + "title": "Dimensional Latent Perlin for ComfyUI", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin" + ], + "install_type": "git-clone", + "description": "Dimensional Latent Perlin is a custom node for ComfyUI that generates Perlin noise in the latent space. This node is designed to work seamlessly with various diffusion models and can be used as an alternative or complement to standard random noise generators in image generation pipelines." + }, + { + "author": "NeuralSamurAI", + "title": "PromptJSON Node for ComfyUI", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON" + ], + "install_type": "git-clone", + "description": "PromptJSON is a custom node for ComfyUI that structures natural language prompts and generates prompts for external LLM nodes in image generation workflows. It aids in creating consistent, schema-based image descriptions." + }, + { + "author": "NeuralSamurAI", + "title": "FluxPseudoNegative", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt" + ], + "install_type": "git-clone", + "description": "FluxPseudoNegative is an advanced custom node for ComfyUI that converts negative prompts into positive ones. It's designed to enhance prompt engineering for image generation models that don't natively support negative prompts or where using negative prompts significantly increases generation time. So instead of hacking CFG we simply invert your negative words and find their antonyms!" + }, { "author": "MokkaBoss1", "title": "Node Pack mostly for manipulating strings and integers", @@ -8403,7 +8687,7 @@ { "author": "discus0434", "title": "ComfyUI Aesthetic Predictor V2.5", - "id": "caching-embeddings", + "id": "aesthetic-predictor", "reference": "https://github.com/discus0434/comfyui-aesthetic-predictor-v2-5", "files": [ "https://github.com/discus0434/comfyui-aesthetic-predictor-v2-5" @@ -8411,6 +8695,17 @@ "install_type": "git-clone", "description": "Simple ComfyUI node that predicts the score of an aesthetic image with SigLIP-based predictor." }, + { + "author": "AIFSH", + "title": "StyleShot-ComfyUI", + "id": "styleshot", + "reference": "https://github.com/AIFSH/StyleShot-ComfyUI", + "files": [ + "https://github.com/AIFSH/StyleShot-ComfyUI" + ], + "install_type": "git-clone", + "description": "a custom node for [a/StyleShot](https://github.com/open-mmlab/StyleShot.git)" + }, { "author": "AIFSH", "title": "VocalSeparation-ComfyUI", @@ -8664,6 +8959,39 @@ "install_type": "git-clone", "description": "a custom node for [a/SenseVoice](https://github.com/FunAudioLLM/SenseVoice)" }, + { + "author": "AIFSH", + "title": "AniTalker-ComfyUI", + "id": "anitalker", + "reference": "https://github.com/AIFSH/AniTalker-ComfyUI", + "files": [ + "https://github.com/AIFSH/AniTalker-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/AniTalker](https://github.com/X-LANCE/AniTalker)" + }, + { + "author": "AIFSH", + "title": "DHLive-ComfyUI", + "id": "dhlive", + "reference": "https://github.com/AIFSH/DHLive-ComfyUI", + "files": [ + "https://github.com/AIFSH/DHLive-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/DH_live](https://github.com/kleinlee/DH_live)" + }, + { + "author": "AIFSH", + "title": "GSTTS-ComfyUI", + "id": "gstts", + "reference": "https://github.com/AIFSH/GSTTS-ComfyUI", + "files": [ + "https://github.com/AIFSH/GSTTS-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS)" + }, { "author": "Koishi-Star", "title": "Euler-Smea-Dyn-Sampler", @@ -8686,6 +9014,28 @@ "install_type": "git-clone", "description": "SDFXBridgeForComfyUI is a custom node designed for seamless integration between ComfyUI and SDFX. This custom node allows users to make ComfyUI compatible with SDFX when running the ComfyUI instance on their local machines." }, + { + "author": "smthemex", + "title": "ComfyUI_FoleyCrafter", + "id": "comfyui_foleycrafter", + "reference": "https://github.com/smthemex/ComfyUI_FoleyCrafter", + "files": [ + "https://github.com/smthemex/ComfyUI_FoleyCrafter" + ], + "install_type": "git-clone", + "description": "FoleyCrafter is a video-to-audio generation framework which can produce realistic sound effects semantically relevant and synchronized with videos." + }, + { + "author": "smthemex", + "title": "ComfyUI_Diffree", + "id": "comfyui_diffree", + "reference": "https://github.com/smthemex/ComfyUI_Diffree", + "files": [ + "https://github.com/smthemex/ComfyUI_Diffree" + ], + "install_type": "git-clone", + "description": "using diffree: Text-Guided Shape Free Object Inpainting with Diffusion Model" + }, { "author": "smthemex", "title": "ComfyUI_Stable_Makeup", @@ -8794,7 +9144,7 @@ "https://github.com/smthemex/ComfyUI_Pic2Story" ], "install_type": "git-clone", - "description": "ComfyUI simple node based on BLIP method, with the function of Image to Txt." + "description": "you can using pic2story in comfyUI" }, { "author": "smthemex", @@ -8816,7 +9166,7 @@ "https://github.com/smthemex/ComfyUI_ParlerTTS" ], "install_type": "git-clone", - "description": "You can call the ParlerTTS tool in comfyUI, which currently only supports English." + "description": "Parler-TTS is a lightweight text-to-speech (TTS) model that can generate high-quality, natural sounding speech in the style of a given speaker (gender, pitch, speaking style, etc)" }, { "author": "smthemex", @@ -8849,7 +9199,7 @@ "https://github.com/smthemex/ComfyUI_CustomNet" ], "install_type": "git-clone", - "description": "This node allows you to use customnet." + "description": "you can using customnet in comfyUI" }, { "author": "smthemex", @@ -8871,23 +9221,34 @@ "https://github.com/smthemex/ComfyUI_Streamv2v_Plus" ], "install_type": "git-clone", - "description": "[a/StreamV2V](https://github.com/Jeff-LiangF/streamv2v) for ComfyUI" + "description": "using [a/StreamV2V](https://github.com/Jeff-LiangF/streamv2v) in ComfyUI" }, { - "author": "choey", - "title": "Comfy-Topaz", - "id": "topaz", - "reference": "https://github.com/choey/Comfy-Topaz", - "files": [ - "https://github.com/choey/Comfy-Topaz" - ], - "install_type": "git-clone", - "description": "Comfy-Topaz is a custom node for ComfyUI, which integrates with Topaz Photo AI to enhance (upscale, sharpen, denoise, etc.) images, allowing this traditionally asynchronous step to become a part of ComfyUI workflows.\nNOTE:Licensed installation of Topaz Photo AI" + "author": "smthemex", + "title": "ComfyUI_MooER", + "id": "comfyui_mooer", + "reference": "https://github.com/smthemex/ComfyUI_MooER", + "files": [ + "https://github.com/smthemex/ComfyUI_MooER" + ], + "install_type": "git-clone", + "description": "MooER is an LLM-based Speech Recognition and Translation Model from Moore Threads.You can use MooER when install ComfyUI_MooER node" + }, + { + "author": "choey", + "title": "Comfy-Topaz", + "id": "topaz", + "reference": "https://github.com/choey/Comfy-Topaz", + "files": [ + "https://github.com/choey/Comfy-Topaz" + ], + "install_type": "git-clone", + "description": "Comfy-Topaz is a custom node for ComfyUI, which integrates with Topaz Photo AI to enhance (upscale, sharpen, denoise, etc.) images, allowing this traditionally asynchronous step to become a part of ComfyUI workflows.\nNOTE:Licensed installation of Topaz Photo AI" }, { "author": "ALatentPlace", "title": "ComfyUI_yanc", - "id": "yanc", + "id": "yanc-alatentplace", "reference": "https://github.com/ALatentPlace/ComfyUI_yanc", "files": [ "https://github.com/ALatentPlace/ComfyUI_yanc" @@ -8925,7 +9286,7 @@ "https://github.com/nullquant/ComfyUI-BrushNet" ], "install_type": "git-clone", - "description": "Custom nodes for ComfyUI allow to inpaint using Brushnet: '[a/BrushNet: A Plug-and-Play Image Inpainting Model with Decomposed Dual-Branch Diffusion](https://arxiv.org/abs/2403.06976)'." + "description": "These are custom nodes for ComfyUI native implementation of [a/BrushNet](https://arxiv.org/abs/2403.06976) (inpaint), PowerPaint (inpaint, object removal) and HiDiffusion (higher resolution for SD15 and SDXL)" }, { "author": "pamparamm", @@ -9217,7 +9578,7 @@ "https://github.com/DarKDinDoN/comfyui-checkpoint-automatic-config" ], "install_type": "git-clone", - "description": "This node was designed to help with checkpoint configuration." + "description": "This node was designed to help with checkpoint configuration. Fee free to add new checkpoint configurations!" }, { "author": "MinusZoneAI", @@ -9263,6 +9624,27 @@ "install_type": "git-clone", "description": "Implementation of Kolors on ComfyUI\nReference from [a/https://github.com/kijai/ComfyUI-KwaiKolorsWrapper](https://github.com/kijai/ComfyUI-KwaiKolorsWrapper)\nUsing ComfyUI Native Sampling" }, + { + "author": "MinusZoneAI", + "title": "ComfyUI-Flux1Quantize-MZ", + "reference": "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ", + "files": [ + "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ" + ], + "pip": ["git+https://github.com/IST-DASLab/marlin"], + "install_type": "git-clone", + "description": "Quantization tools are from [a/https://github.com/casper-hansen/AutoAWQ](https://github.com/casper-hansen/AutoAWQ) and [a/https://github.com/IST-DASLab/marlin](https://github.com/IST-DASLab/marlin)\nOnly applicable to graphics cards with sm_80 and above (30 series and above)\nNeed to install marlin dependencies first" + }, + { + "author": "MinusZoneAI", + "title": "ComfyUI-FluxExt-MZ", + "reference": "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ", + "files": [ + "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ" + ], + "install_type": "git-clone", + "description": "Nodes:MZ_Flux1PartialLoad_Patch. Tool nodes related to flux1" + }, { "author": "blueraincoatli", "title": "comfyUI_SillyNodes", @@ -9337,7 +9719,7 @@ "https://github.com/jeffy5/comfyui-faceless-node" ], "install_type": "git-clone", - "description": "Nodes:Load Video, Load Frames, Save Video, Face Swap, Face Restore, Face Swap (Video), Face Restore (Video)" + "description": "A facefusion custom node for ComfyUI. Swap or restore faces for image or video" }, { "author": "TaiTair", @@ -9370,7 +9752,18 @@ "https://github.com/fofr/ComfyUI-Prompter-fofrAI" ], "install_type": "git-clone", - "description": "A prompt helper. Use templates from [a/https://prompter.fofr.ai](https://prompter.fofr.ai) in ComfyUI." + "description": "A prompt helper for ComfyUI, based on [a/prompter.fofr.ai](https://prompter.fofr.ai)" + }, + { + "author": "fofr", + "title": "comfyui-fofr-toolkit", + "id": "fofr-toolkit", + "reference": "https://github.com/fofr/comfyui-fofr-toolkit", + "files": [ + "https://github.com/fofr/comfyui-fofr-toolkit" + ], + "install_type": "git-clone", + "description": "Nodes:Incrementer, Width and height from aspect ratio, Width and height for scaling image to ideal resolutio. A simple set of tooling nodes." }, { "author": "fofr", @@ -9415,6 +9808,17 @@ "install_type": "git-clone", "description": "This is a custom node that allows you to easily call up and set image size presets. Settings can be made by editing the included config.yaml. It is almost identical to Comfyroll Studio's CR AspectRatio. I created it because I wanted to easily edit the presets." }, + { + "author": "da2el-ai", + "title": "D2 Send Eagle", + "id": "d2-send-eagle", + "reference": "https://github.com/da2el-ai/ComfyUI-d2-send-eagle", + "files": [ + "https://github.com/da2el-ai/ComfyUI-d2-send-eagle" + ], + "install_type": "git-clone", + "description": "This is a custom node for sending images generated in ComfyUI to the image management software Eagle. It's an extension of an existing custom node called [a/ComfyUI-send-eagle-slim](https://github.com/shingo1228/ComfyUI-send-eagle-slim), modified to suit my preferences. I'm grateful to Shingo.T for creating the excellent original custom node." + }, { "author": "nat-chan", "title": "ComfyUI-Transceiver📡", @@ -9715,7 +10119,7 @@ "https://github.com/saftle/suplex_comfy_nodes" ], "install_type": "git-clone", - "description": "Misc Nodes: ControlNet Selector Node, Load Optional ControlNet Model" + "description": "Misc Nodes: ControlNet Selector Node, Load Optional ControlNet Model, Diffusers Selector, Save Image JPG No Meta, Multi Input Variable Rewrite" }, { "author": "mephisto83", @@ -9814,7 +10218,7 @@ "https://github.com/christian-byrne/img2txt-comfyui-nodes" ], "install_type": "git-clone", - "description": "Nodes:img2txt BLIP/Llava Multimodel Tagger" + "description": "Get general description or specify questions to ask about images (medium, art style, background, etc.). Supports Chinese 🇨🇳 questions via MiniCPM model." }, { "author": "christian-byrne", @@ -9836,7 +10240,7 @@ "https://github.com/christian-byrne/size-match-compositing-nodes" ], "install_type": "git-clone", - "description": "Takes two images and matches their sizes using various methods, detailed below." + "description": "Match image/mask sizes" }, { "author": "christian-byrne", @@ -9868,6 +10272,16 @@ "install_type": "git-clone", "description": "comfyui-default-values-manager" }, + { + "author": "christian-byrne", + "title": "youtube-dl-comfyui", + "reference": "https://github.com/christian-byrne/youtube-dl-comfyui", + "files": [ + "https://github.com/christian-byrne/youtube-dl-comfyui" + ], + "install_type": "git-clone", + "description": "Download youtube videos/playlists" + }, { "author": "oztrkoguz", "title": "ComfyUI StoryCreater", @@ -10000,15 +10414,15 @@ "description": "This repo creates a series of nodes that enable you to utilize the [a/Griptape Python Framework](https://github.com/griptape-ai/griptape/) with ComfyUI, integrating AI into your workflow. This repo creates a series of nodes that enable you to utilize the Griptape Python Framework with ComfyUI, integrating AI into your workflow." }, { - "author": "cavinHuang", - "title": "comfyui-nodes-docs", - "id": "nodedocs", - "reference": "https://github.com/CavinHuang/comfyui-nodes-docs", - "files": [ - "https://github.com/CavinHuang/comfyui-nodes-docs" - ], - "install_type": "git-clone", - "description": "This is a plugin for displaying documentation for each comfyui node. " + "author": "cavinHuang", + "title": "comfyui-nodes-docs", + "id": "nodedocs", + "reference": "https://github.com/CavinHuang/comfyui-nodes-docs", + "files": [ + "https://github.com/CavinHuang/comfyui-nodes-docs" + ], + "install_type": "git-clone", + "description": "This is a plugin for displaying documentation for each comfyui node. " }, { "author": "icesun963", @@ -10366,34 +10780,34 @@ "id": "saveimage-plus", "reference": "https://github.com/Goktug/comfyui-saveimage-plus", "files": [ - "https://github.com/Goktug/comfyui-saveimage-plus" + "https://github.com/Goktug/comfyui-saveimage-plus" ], "install_type": "git-clone", "description": "Save Image Plus is a custom node for ComfyUI that allows you to save images in JPEG and WEBP formats with optional metadata embedding." - }, - { - "author": "wujm424606", - "title": "ComfyUi-Ollama-YN", - "id": "ollama-YN", - "reference": "https://github.com/wujm424606/ComfyUi-Ollama-YN", - "files": [ - "https://github.com/wujm424606/ComfyUi-Ollama-YN" - ], - "install_type": "git-clone", - "description": "Custom ComfyUI Nodes for interacting with [a/Ollama](https://ollama.com/) using the [a/ollama python client](https://github.com/ollama/ollama-python).\n Meanwhile it will provide better prompt descriptor for stable diffusion." - }, - { - "author": "tmagara", - "title": "ComfyUI-Prediction-Boost", - "id": "prediction-boost", - "reference": "https://github.com/tmagara/ComfyUI-Prediction-Boost", - "files": [ - "https://github.com/tmagara/ComfyUI-Prediction-Boost" - ], - "install_type": "git-clone", - "description": "prediction boost custom node for ComfyUI" - }, - { + }, + { + "author": "wujm424606", + "title": "ComfyUi-Ollama-YN", + "id": "ollama-YN", + "reference": "https://github.com/wujm424606/ComfyUi-Ollama-YN", + "files": [ + "https://github.com/wujm424606/ComfyUi-Ollama-YN" + ], + "install_type": "git-clone", + "description": "Custom ComfyUI Nodes for interacting with [a/Ollama](https://ollama.com/) using the [a/ollama python client](https://github.com/ollama/ollama-python).\n Meanwhile it will provide better prompt descriptor for stable diffusion." + }, + { + "author": "tmagara", + "title": "ComfyUI-Prediction-Boost", + "id": "prediction-boost", + "reference": "https://github.com/tmagara/ComfyUI-Prediction-Boost", + "files": [ + "https://github.com/tmagara/ComfyUI-Prediction-Boost" + ], + "install_type": "git-clone", + "description": "prediction boost custom node for ComfyUI" + }, + { "author": "chesnokovivan", "title": "ComfyUI-Novakid", "id": "novakid", @@ -10566,7 +10980,7 @@ "https://github.com/Scorpinaus/ComfyUI-DiffusersLoader" ], "install_type": "git-clone", - "description": "This node pack allows loading of CLIP, MODEL, VAE aspects for both SD1.5 and SDXL checkpoints that is converted to diffusers format." + "description": "This project aims to create loaders for diffusers format checkpoint models, making it easier for ComfyUI users to use diffusers format checkpoints instead of the standard checkpoint formats." }, { "author": "chakib-belgaid", @@ -10599,7 +11013,7 @@ "https://github.com/ThereforeGames/ComfyUI-Unprompted" ], "install_type": "git-clone", - "description": "This is a ComfyUI node that processes your input text with the [a/Unprompted templating language](https://github.com/ThereforeGames/unprompted). Early alpha release.\n" + "description": "A node that processes input text with the [a/Unprompted templating language](https://github.com/ThereforeGames/unprompted)." }, { "author": "Tool Of North america", @@ -10756,37 +11170,37 @@ "description": "Nodes:Selector. Quick and dirty parameter generator node for ComfyUI." }, { - "author": "Jin Liu", - "title": "ComfyUI-LJNodes", - "id": "ComfyUI-LJNodes", - "reference": "https://github.com/coolzilj/ComfyUI-LJNodes", - "files": [ + "author": "Jin Liu", + "title": "ComfyUI-LJNodes", + "id": "ComfyUI-LJNodes", + "reference": "https://github.com/coolzilj/ComfyUI-LJNodes", + "files": [ "https://github.com/coolzilj/ComfyUI-LJNodes" - ], - "install_type": "git-clone", - "description": "A variety of custom nodes to enhance ComfyUI for a buttery smooth experience." + ], + "install_type": "git-clone", + "description": "A variety of custom nodes to enhance ComfyUI for a buttery smooth experience." }, { - "author": "GavChap", - "title": "ComfyUI-SD3LatentSelectRes", - "id": "sd3latent-select-res", - "reference": "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes", - "files": [ + "author": "GavChap", + "title": "ComfyUI-SD3LatentSelectRes", + "id": "sd3latent-select-res", + "reference": "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes", + "files": [ "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes" - ], - "install_type": "git-clone", - "description": "You'll get a new node called SD3 Latent Select Resolution, you can pick the x and y sizes from a list." + ], + "install_type": "git-clone", + "description": "You'll get a new node called SD3 Latent Select Resolution, you can pick the x and y sizes from a list." }, { - "author": "BenNarum", - "title": "SigmaWaveFormNodes", - "id": "sigmawaveform", - "reference": "https://github.com/BenNarum/SigmaWaveFormNode", - "files": [ + "author": "BenNarum", + "title": "SigmaWaveFormNodes", + "id": "sigmawaveform", + "reference": "https://github.com/BenNarum/SigmaWaveFormNode", + "files": [ "https://github.com/BenNarum/SigmaWaveFormNode" - ], - "install_type": "git-clone", - "description": "A set of tools for generating and altering sigmas in ComfyUI." + ], + "install_type": "git-clone", + "description": "A set of tools for generating and altering sigmas in ComfyUI." }, { "author": "shobhitic", @@ -10852,7 +11266,7 @@ "https://github.com/dicksondickson/ComfyUI-Dickson-Nodes" ], "install_type": "git-clone", - "description": "Custom nodes for ComfyUI by DicksonDickson." + "description": "A set of custom nodes that I've either written myself or adapted from other authors" }, { "author": "juehackr", @@ -11178,17 +11592,6 @@ "install_type": "git-clone", "description": "a comfyui custom node, which can select value from inputs" }, - { - "author": "mingqizhang", - "title": "ComfyUI_InSPyResNet_zmq", - "id": "inspy", - "reference": "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq", - "files": [ - "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq" - ], - "install_type": "git-clone", - "description": "Nodes:INSPY removebg ModelLoader, INSPY RMBG" - }, { "author": "GreenLandisaLie", "title": "AuraSR-ComfyUI", @@ -11211,17 +11614,6 @@ "install_type": "git-clone", "description": "This extension is a node that directly expands the functionality of KSampler, rather than being in the form of a custom node. [w/Workflows created using this feature are not compatible with other users.]" }, - { - "author": "Fuou Marinas", - "title": "ComfyUI-FirstOrderMM", - "id": "fomm", - "reference": "https://github.com/FuouM/ComfyUI-FirstOrderMM", - "files": [ - "https://github.com/FuouM/ComfyUI-FirstOrderMM" - ], - "install_type": "git-clone", - "description": "Run [a/First Order Motion Model](https://github.com/AliaksandrSiarohin/first-order-model) for Image Animation in ComfyUI." - }, { "author": "my-opencode", "title": "ComfyUI_IndustrialMagick", @@ -11255,6 +11647,16 @@ "install_type": "git-clone", "description": "This custom node for ComfyUI allows you to save images in multiple formats, including PNG, JPG, WebP, and ICO.\n[w/ComfyUI-Save-Multi-Format is renamed to SaveAs. Remove previous one and reinstall to this.]" }, + { + "author": "SEkINVR", + "title": "ComfyUI-Animator", + "reference": "https://github.com/SEkINVR/ComfyUI-Animator", + "files": [ + "https://github.com/SEkINVR/ComfyUI-Animator" + ], + "install_type": "git-clone", + "description": "This custom node for ComfyUI provides full-body animation capabilities, including facial rigging, various lighting styles, and green screen output." + }, { "author": "MrSamSeen", "title": "ComfyUI_SSStereoscope", @@ -11278,24 +11680,24 @@ "description": "This is a simple node for creating prompts using a .csv file. I created this node as an easy way to output different prompts each time a workflow is run." }, { - "author": "DeJoker", - "title": "Pipeline Parallel ComfyUI", - "reference": "https://github.com/DeJoker/pipeline-parallel-comfy", - "files": [ - "https://github.com/DeJoker/pipeline-parallel-comfy" - ], - "install_type": "git-clone", - "description": "provide extra api to run prompt request with parallel execution of independent node" + "author": "DeJoker", + "title": "Pipeline Parallel ComfyUI", + "reference": "https://github.com/DeJoker/pipeline-parallel-comfy", + "files": [ + "https://github.com/DeJoker/pipeline-parallel-comfy" + ], + "install_type": "git-clone", + "description": "provide extra api to run prompt request with parallel execution of independent node" }, { - "author": "yiwangsimple", - "title": "comfy-groqchat", - "reference": "https://github.com/yiwangsimple/ComfyUI_GroqChat", - "files": [ - "https://github.com/yiwangsimple/ComfyUI_GroqChat" - ], - "install_type": "git-clone", - "description": "Content generation with open source models in comfyui via graq api implementation." + "author": "yiwangsimple", + "title": "ComfyUI_DW_Chat", + "reference": "https://github.com/yiwangsimple/ComfyUI_DW_Chat", + "files": [ + "https://github.com/yiwangsimple/ComfyUI_DW_Chat" + ], + "install_type": "git-clone", + "description": "Content generation with open source models in comfyui via graq api implementation.\n[w/This repo is renamed from ComfyUI_GroqChat to ComfyUI_DW_CHAT. Please remove previous one and reinstall to this.]" }, { "author": "Tritant", @@ -11346,7 +11748,7 @@ "https://github.com/wTechArtist/ComfyUI-CustomNodes" ], "install_type": "git-clone", - "description": "Nodes:Image Blending Mode Mask" + "description": "Nodes:Image Blending Mode Mask, Load Image With Bool, IPAdapter Mad Scientist Weight_Type, IPAdapter FaceID With Bool" }, { "author": "mullakhmetov", @@ -11420,12 +11822,22 @@ "install_type": "git-clone", "description": "ComfyUI-Documents is a powerful extension for ComfyUI that enhances workflows with advanced document processing capabilities. It includes nodes for loading and parsing various document types (PDF, TXT, DOC, DOCX), converting PDF pages to images, splitting PDFs into individual pages, and selecting specific images from batches. Features include text extraction, image conversion, and seamless integration with existing ComfyUI projects." }, + { + "author": "Indra's Mirror", + "title": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper", + "reference": "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper", + "files": [ + "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper" + ], + "install_type": "git-clone", + "description": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper is a custom node for ComfyUI that integrates the advanced Lumina-Next-SFT model. It offers high-quality image generation with features like time-aware scaling, optional ODE sampling, and support for high-resolution outputs. This node brings the power of the Lumina text-to-image pipeline directly into ComfyUI workflows, allowing for flexible and powerful image generation capabilities." + }, { "author": "Expo", "title": "LM Studio Image to Text Node for ComfyUI", "reference": "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node", "files": [ - "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node" + "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node" ], "install_type": "git-clone", "description": "A custom node for ComfyUI that integrates LM Studio's vision models to generate text descriptions of images. It provides a flexible and customizable way to add image-to-text capabilities to your ComfyUI workflows, working with LM Studio's local API." @@ -11435,7 +11847,7 @@ "title": "comfyui_extra_api", "reference": "https://github.com/injet-zhou/comfyui_extra_api", "files": [ - "https://github.com/injet-zhou/comfyui_extra_api" + "https://github.com/injet-zhou/comfyui_extra_api" ], "install_type": "git-clone", "description": "Add more endpoints to make easy for utilizing ComfyUI API." @@ -11445,7 +11857,7 @@ "title": "ComfyUI-GG", "reference": "https://github.com/leestuartx/ComfyUI-GG", "files": [ - "https://github.com/leestuartx/ComfyUI-GG" + "https://github.com/leestuartx/ComfyUI-GG" ], "install_type": "git-clone", "description": "ComfyUI-GG is a collection of ComfyUI nodes designed to enhance productivity in image processing workflows. This plugin provides a set of custom nodes that perform various image manipulations and metadata extractions to streamline your tasks." @@ -11455,7 +11867,7 @@ "title": "ComfyUI-FrameFX", "reference": "https://github.com/mgfxer/ComfyUI-FrameFX", "files": [ - "https://github.com/mgfxer/ComfyUI-FrameFX" + "https://github.com/mgfxer/ComfyUI-FrameFX" ], "install_type": "git-clone", "description": "A set of custom nodes for frame interpolation and video processing in ComfyUI." @@ -11465,7 +11877,7 @@ "title": "ComfyUI Checkpoint Loader Config", "reference": "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader", "files": [ - "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader" + "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader" ], "install_type": "git-clone", "description": "Provides a custom node to load config for sampler nodes from a yaml file." @@ -11501,18 +11913,18 @@ "https://github.com/JackEllie/ComfyUI_AI_Assistant" ], "install_type": "git-clone", - "description": "Provides two additional preprocessors and a prompt organizing tool.[Original Project](https://github.com/tori29umai0123/AI-Assistant/blob/main/README.md?plain=1)." + "description": "ComfyUI native implementation of [a/AI-Assistant](https://github.com/tori29umai0123/AI-Assistant)." }, { "author": "APZmedia", - "title": "APZmedia Clean File Name Node", + "title": "APZmedia Clean Name", "id": "clean-filename", "reference": "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string", "files": [ "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string" ], "install_type": "git-clone", - "description": "The Clean File Name Node is a custom node for ComfyUI designed to process and sanitize text strings for use as valid file names. It replaces invalid characters with a user-specified character and truncates the resulting string to a defined length." + "description": "A custom node to sanitize text to make clean file names from strings." }, { "author": "N3rd00d", @@ -11591,78 +12003,88 @@ { "author": "aaronchm", "title": "z-a1111-sd-webui-DanTagGen", - "id":"z-a1111-sd-webui-DanTagGen", + "id": "z-a1111-sd-webui-DanTagGen", "reference": "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen", - "files":[ + "files": [ "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen" ], - "install_type":"git-clone", - "description":"Improved DanTagGen implementation that posesses all functionality of the A1111 webui extension." + "install_type": "git-clone", + "description": "Improved DanTagGen implementation that posesses all functionality of the A1111 webui extension." }, { "author": "mikebilly", "title": "Transparent-background-comfyUI", - "id":"transparent-background-comfyui", + "id": "transparent-background-comfyui", "reference": "https://github.com/mikebilly/Transparent-background-comfyUI", - "files":[ + "files": [ "https://github.com/mikebilly/Transparent-background-comfyUI" ], - "install_type":"git-clone", - "description":"Removes background using Transparent Background" + "install_type": "git-clone", + "description": "Removes background using Transparent Background" }, { "author": "un-seen", "title": "comfyui-tensorop", - "id":"comfyui-tensorop", + "id": "comfyui-tensorop", "reference": "https://github.com/un-seen/comfyui-tensorops", - "files":[ + "files": [ "https://github.com/un-seen/comfyui-tensorops" ], - "install_type":"git-clone", - "description":"Nodes to perform tensor operations in ComfyUI" + "install_type": "git-clone", + "description": "Nodes to perform tensor operations in ComfyUI" + }, + { + "author": "un-seen", + "title": "ComfyUI Segment Anything", + "reference": "https://github.com/un-seen/comfyui_segment_anything_plus", + "files": [ + "https://github.com/un-seen/comfyui_segment_anything_plus" + ], + "install_type": "git-clone", + "description": "This project is a ComfyUI version of [a/sd-webui-segment-anything](https://github.com/continue-revolution/sd-webui-segment-anything). At present, only the most core functionalities have been implemented. I would like to express my gratitude to [a/continue-revolution](https://github.com/continue-revolution) for their preceding work on which this is based." }, { "author": "john-mnz", "title": "ComfyUI-Inspyrenet-Rembg", - "id":"inspyrenet", + "id": "inspyrenet", "reference": "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg", - "files":[ + "files": [ "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg" ], - "install_type":"git-clone", - "description":"ComfyUI node for background removal implementing [a/InSPyReNet](https://github.com/plemeri/InSPyReNet)" + "install_type": "git-clone", + "description": "ComfyUI node for background removal implementing [a/InSPyReNet](https://github.com/plemeri/InSPyReNet)" }, { "author": "Koushakur", "title": "ComfyUI-DenoiseChooser", - "id":"denoise-chooser", + "id": "denoise-chooser", "reference": "https://github.com/Koushakur/ComfyUI-DenoiseChooser", - "files":[ + "files": [ "https://github.com/Koushakur/ComfyUI-DenoiseChooser" ], - "install_type":"git-clone", - "description":"The latent gets passed straight through unaltered, if it's empty (i.e from a 'Empty Latent Image' node) FLOAT outputs the first value, otherwise it outputs the second value" + "install_type": "git-clone", + "description": "The latent gets passed straight through unaltered, if it's empty (i.e from a 'Empty Latent Image' node) FLOAT outputs the first value, otherwise it outputs the second value" }, { "author": "ycchanau", "title": "ComfyUI Preview Magnifier", - "id":"magnifier", + "id": "magnifier", "reference": "https://github.com/ycchanau/ComfyUI_Preview_Magnifier", - "files":[ + "files": [ "https://github.com/ycchanau/ComfyUI_Preview_Magnifier" ], - "install_type":"git-clone", - "description":"Custom nodes that preview image with a magnifier." + "install_type": "git-clone", + "description": "Custom nodes that preview image with a magnifier." }, { "author": "lrzjason", "title": "Comfyui Kolors Utils", "reference": "https://github.com/lrzjason/Comfyui-Kolors-Utils", - "files":[ + "files": [ "https://github.com/lrzjason/Comfyui-Kolors-Utils" ], - "install_type":"git-clone", - "description":"Nodes: Save Weight As Kolors Unet" + "install_type": "git-clone", + "description": "Nodes: Save Weight As Kolors Unet, Save Kolors" }, { "author": "lrzjason", @@ -11708,7 +12130,7 @@ "https://github.com/RhizoNymph/ComfyUI-Latte" ], "install_type": "git-clone", - "description": "Nodes:LatteVideoGenerator" + "description": "Nodes to use [a/latte](https://github.com/Vchitect/Latte) for text to video generation" }, { "author": "Marksusu", @@ -11730,7 +12152,7 @@ "https://github.com/fssorc/ComfyUI_FaceShaper" ], "install_type": "git-clone", - "description": "Nodes:Match two faces' shape before using other face swap nodes\nFace-swapping tools typically only replace facial features during the swap, without altering the facial shape. When there is a significant difference in facial shape between the target person and the person in the original photo, the result of the face swap is less satisfactory.\nThis project is a small script that can first liquefy and stretch the face in the original photo according to the horizontal and vertical proportions of the target person's facial contour. The resulting image can be used as input for other face-swapping nodes." + "description": "Match two faces' shape before using other face swap nodes\nFace-swapping tools typically only replace facial features during the swap, without altering the facial shape. When there is a significant difference in facial shape between the target person and the person in the original photo, the result of the face swap is less satisfactory.\nThis project is a small script that can first liquefy and stretch the face in the original photo according to the horizontal and vertical proportions of the target person's facial contour. The resulting image can be used as input for other face-swapping nodes." }, { "author": "BetaDoggo", @@ -11743,6 +12165,16 @@ "install_type": "git-clone", "description": "Just a simple node to filter out NSFW outputs. This node utilizes [a/AdamCodd/vit-base-nsfw-detector](https://huggingface.co/AdamCodd/vit-base-nsfw-detector) to score the outputs. I chose this model because it's small, fast, and performed very well in my testing. Nudity tends to be scored in the 0.95+ range, but I've set the default to 0.8 as a safe baseline." }, + { + "author": "BetaDoggo", + "title": "neggles/ComfyUI-WDV-Nodes [gist-wrapper]", + "reference": "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes", + "files": [ + "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes" + ], + "install_type": "git-clone", + "description": "100% of code taken from [a/https://gist.github.com/neggles/ecb6327251a9e274428d07636c727eb9](https://gist.github.com/neggles/ecb6327251a9e274428d07636c727eb9)." + }, { "author": "BetaDoggo", "title": "ComfyUI Video Player", @@ -11752,7 +12184,7 @@ "https://github.com/BetaDoggo/ComfyUI-VideoPlayer" ], "install_type": "git-clone", - "description": "1 step closer to replacing all software with comfy" + "description": "A silly POC Video Player for ComfyUI" }, { "author": "WX-NPS1598", @@ -11779,7 +12211,7 @@ { "author": "wootwootwootwoot", "title": "ComfyUI-RK-Sampler", - "id": "rk-sampler", + "id": "rk_sampler", "reference": "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler", "files": [ "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler" @@ -11796,17 +12228,839 @@ "https://github.com/TechnoByteJS/ComfyUI-TechNodes" ], "install_type": "git-clone", - "description": "ComfyUI nodes for merging, testing and more. SDNext Merge, VAE Merge, MBW Layers, Repeat VAE, Quantization." + "description": "ComfyUI nodes for merging, testing and more.\nNOTE: SDNext Merge, VAE Merge, MBW Layers, Repeat VAE, Quantization." + }, + { + "author": "Fantasy AI Studio", + "title": "FAI-Node", + "id": "FAI-Node", + "reference": "https://github.com/alanhuang67/ComfyUI-FAI-Node", + "files": [ + "https://github.com/alanhuang67/ComfyUI-FAI-Node" + ], + "install_type": "git-clone", + "description": "Various custom nodes for ComfyUI" + }, + { + "author": "MuziekMagie", + "title": "ComfyUI-Matchering", + "id": "matchering", + "reference": "https://github.com/MuziekMagie/ComfyUI-Matchering", + "files": [ + "https://github.com/MuziekMagie/ComfyUI-Matchering" + ], + "install_type": "git-clone", + "description": "A [a/Matchering](https://github.com/sergree/matchering)-node for ComfyUI.\nNOTE: You take TWO audio files and feed them into Matchering" + }, + { + "author": "filliptm", + "title": "ComfyUI_FL-Trainer", + "reference": "https://github.com/filliptm/ComfyUI_FL-Trainer", + "files": [ + "https://github.com/filliptm/ComfyUI_FL-Trainer" + ], + "install_type": "git-clone", + "description": "Train Image Loras on both sd1.5 and SDXL. This repo git clones the pieces needed to train. It pops open a second terminal window do do the training. It will also display the inference samples in the node itself so you can track the results." + }, + { + "author": "Mintbeer96", + "title": "ComfyUI-KerasOCR", + "reference": "https://github.com/Mintbeer96/ComfyUI-KerasOCR", + "files": [ + "https://github.com/Mintbeer96/ComfyUI-KerasOCR" + ], + "install_type": "git-clone", + "description": "An OCR node for detect text in image and returns covering mask." + }, + { + "author": "pikenrover", + "title": "ComfyUI_PRNodes", + "reference": "https://github.com/pikenrover/ComfyUI_PRNodes", + "files": [ + "https://github.com/pikenrover/ComfyUI_PRNodes" + ], + "install_type": "git-clone", + "description": "Nodes:RandomPrompt, RandomPromptMixed, ImageScaleTo, EmptyLatentImageScaleBy, LoraLoaderExtended, Save Image w/Metadata, CheckpointLoaderSimpleExtended" + }, + { + "author": "EnragedAntelope", + "title": "ComfyUI-Doubutsu-Describer", + "reference": "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer", + "files": [ + "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer" + ], + "install_type": "git-clone", + "description": "This custom node for ComfyUI allows you to use the Doubutsu small VLM model to describe images. Credit and further information on Doubutsu: [a/https://huggingface.co/qresearch/doubutsu-2b-pt-756](https://huggingface.co/qresearch/doubutsu-2b-pt-756)" + }, + { + "author": "jn-jairo", + "title": "JNComfy", + "reference": "https://github.com/jn-jairo/jn_comfyui", + "files": [ + "https://github.com/jn-jairo/jn_comfyui" + ], + "install_type": "git-clone", + "description": "ComfyUI extension with patches and nodes.\nPatches:Preview device, Extension device, Temperature, Memory estimation, Optimizations, Easy generic inputs, Easy multiple inputs.\nNODES: Image nodes, Image/Area nodes, Image/Blip nodes, Image/Face nodes, Sampling nodes, Patch nodes, Primitive nodes, Primitive/Conversion nodes, Primitive/Process nodes, Workflow nodes, etc..." + }, + { + "author": "akierson", + "title": "comfyui-colornodes", + "reference": "https://github.com/akierson/comfyui-colornodes", + "files": [ + "https://github.com/akierson/comfyui-colornodes" + ], + "install_type": "git-clone", + "description": "Basic Color Nodes for ComfyUI" + }, + { + "author": "akierson", + "title": "ComfyUI-textnodes", + "reference": "https://github.com/akierson/ComfyUI-textnodes", + "files": [ + "https://github.com/akierson/ComfyUI-textnodes" + ], + "install_type": "git-clone", + "description": "Misc Text Nodes for Comfy UI" + }, + { + "author": "ai-shizuka", + "title": "ComfyUI-tbox", + "reference": "https://github.com/ai-shizuka/ComfyUI-tbox", + "files": [ + "https://github.com/ai-shizuka/ComfyUI-tbox" + ], + "install_type": "git-clone", + "description": "Nodes:ImageLoader, ImageSaver, ImagesSaver, ImageResize, ImageSize." + }, + { + "author": "neverbiasu", + "title": "ComfyUI-Image-Captioner", + "id": "image-captioner", + "reference": "https://github.com/neverbiasu/ComfyUI-Image-Captioner", + "files": [ + "https://github.com/neverbiasu/ComfyUI-Image-Captioner" + ], + "install_type": "git-clone", + "description": "A ComfyUI extension for generating captions for your images. Runs on your own system, no external services used, no filter.\nUses various VLMs with APIs to generate captions for images. You can give instructions or ask questions in natural language." + }, + { + "author": "neverbiasu", + "title": "ComfyUI SAM2(Segment Anything 2)", + "id": "sam2", + "reference": "https://github.com/neverbiasu/ComfyUI-SAM2", + "files": [ + "https://github.com/neverbiasu/ComfyUI-SAM2" + ], + "install_type": "git-clone", + "description": "This project adapts the SAM2 to incorporate functionalities from [a/comfyui_segment_anything](https://github.com/storyicon/comfyui_segment_anything). Many thanks to continue-revolution for their foundational work." + }, + { + "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": "var1ableX", + "title": "ComfyUI_Accessories", + "reference": "https://github.com/var1ableX/ComfyUI_Accessories", + "files": [ + "https://github.com/var1ableX/ComfyUI_Accessories" + ], + "install_type": "git-clone", + "description": "Get Mask Dimensions" + }, + { + "author": "Makki_Shizu", + "title": "comfyui_reimgsize", + "id": "reimgsize", + "reference": "https://github.com/MakkiShizu/comfyui_reimgsize", + "files": [ + "https://github.com/MakkiShizu/comfyui_reimgsize" + ], + "install_type": "git-clone", + "description": "a simple reimgsize node(s) in comfyui." + }, + { + "author": "JosefKuchar", + "title": "ComfyUI-AdvancedTiling", + "reference": "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling", + "files": [ + "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling" + ], + "install_type": "git-clone", + "description": "Advanced tiling of various shapes for ComfyUI" + }, + { + "author": "Fuou Marinas", + "title": "ComfyUI-EbSynth", + "id": "comfyEbsynth", + "reference": "https://github.com/FuouM/ComfyUI-EbSynth", + "files": [ + "https://github.com/FuouM/ComfyUI-EbSynth" + ], + "install_type": "git-clone", + "description": "Run EbSynth, Fast Example-based Image Synthesis and Style Transfer, in ComfyUI." + }, + { + "author": "Parameshvadivel", + "title": "ComfyUI-SVGview", + "id": "svgview", + "reference": "https://github.com/Parameshvadivel/ComfyUI-SVGview", + "files": [ + "https://github.com/Parameshvadivel/ComfyUI-SVGview" + ], + "install_type": "git-clone", + "description": "Nodes:Preview SVG" + }, + { + "author": "Visionatrix", + "title": "ComfyUI-Visionatrix", + "id": "visionatrix", + "reference": "https://github.com/Visionatrix/ComfyUI-Visionatrix", + "files": [ + "https://github.com/Visionatrix/ComfyUI-Visionatrix" + ], + "install_type": "git-clone", + "description": "The ComfyUI-Visionatrix nodes are designed for convenient ComfyUI to [a/Visionatrix](https://github.com/Visionatrix/Visionatrix) workflow support migration, in particular to extract prompt input params (input, textarea, checkbox, select, range, file) to be used in simplified Visionatrix UI." + }, + { + "author": "liangt", + "title": "comfyui-loadimagewithsubfolder", + "reference": "https://github.com/liangt/comfyui-loadimagewithsubfolder", + "files": [ + "https://github.com/liangt/comfyui-loadimagewithsubfolder" + ], + "install_type": "git-clone", + "description": "Extend LoadImage node with subfolder support" + }, + { + "author": "vault-developer", + "title": "ImageBlender", + "reference": "https://github.com/vault-developer/comfyui-image-blender", + "files": [ + "https://github.com/vault-developer/comfyui-image-blender" + ], + "install_type": "git-clone", + "description": "ComfyuiImageBlender is a custom node for ComfyUI. It may be used to blend two images together using a specified blending mode." + }, + { + "author": "gisu", + "title": "foxpack", + "id": "foxp", + "reference": "https://github.com/gisu/comfyui-foxpack", + "files": [ + "https://github.com/gisu/comfyui-foxpack" + ], + "install_type": "git-clone", + "description": "Collection of nodes for the automation of workflows" + }, + { + "author": "webfiltered", + "title": "WTF? - a debug node for ComfyUI", + "id": "debugnode", + "reference": "https://github.com/webfiltered/DebugNode-ComfyUI", + "files": [ + "https://github.com/webfiltered/DebugNode-ComfyUI" + ], + "install_type": "git-clone", + "description": "This node provides a simple way to view the output of many nodes, without leaving ComfyUI." + }, + { + "author": "pzc163", + "title": "Comfyui-CatVTON", + "id": "catvton", + "reference": "https://github.com/pzc163/Comfyui-CatVTON", + "files": [ + "https://github.com/pzc163/Comfyui-CatVTON" + ], + "install_type": "git-clone", + "description": "Comfyui-CatVTON This repository is the modified official Comfyui node of CatVTON, which is a simple and efficient virtual try-on diffusion model with 1) Lightweight Network (899.06M parameters totally), 2) Parameter-Efficient Training (49.57M parameters trainable) 3) Simplified Inference (< 8G VRAM for 1024X768 resolution).\nThe original GitHub project is [a/https://github.com/Zheng-Chong/CatVTON](https://github.com/Zheng-Chong/CatVTON)" + }, + { + "author": "aisabervisionlab", + "title": "ComfyUI_merge_ASVL", + "id": "merge-asvl", + "reference": "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL", + "files": [ + "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL" + ], + "install_type": "git-clone", + "description": "This is a simple node for connecting images. For pictures of the same size, users can choose to fill in vertical in the parameter to connect the pictures vertically or fill in horizontal to connect the pictures horizontally." + }, + { + "author": "akatz-ai", + "title": "Akatz Custom Nodes", + "id": "akatz-ai", + "reference": "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes", + "files": [ + "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes" + ], + "install_type": "git-clone", + "description": "Simple custom node pack for nodes I use in my workflows. Includes Dilate Mask Linear for animating masks." + }, + { + "author": "teward", + "title": "Comfy-Sentry", + "reference": "https://github.com/teward/Comfy-Sentry", + "files": [ + "https://github.com/teward/Comfy-Sentry" + ], + "install_type": "git-clone", + "description": "ComfyUI custom node that activates integration with a Sentry instance for loading. Has no actual nodes." + }, + { + "author": "Fuou Marinas", + "title": "FM_nodes", + "reference": "https://github.com/FuouM/FM_nodes", + "files": [ + "https://github.com/FuouM/FM_nodes" + ], + "install_type": "git-clone", + "description": "A collection of ComfyUI nodes. Including: WFEN, RealViFormer, ProPIH" + }, + { + "author": "Fuou Marinas", + "title": "ComfyUI-FirstOrderMM", + "id": "fomm", + "reference": "https://github.com/FuouM/ComfyUI-FirstOrderMM", + "files": [ + "https://github.com/FuouM/ComfyUI-FirstOrderMM" + ], + "install_type": "git-clone", + "description": "Run [a/First Order Motion Model](https://github.com/AliaksandrSiarohin/first-order-model) for Image Animation in ComfyUI." + }, + { + "author": "Fuou Marinas", + "title": "ComfyUI-StyleTransferPlus", + "id": "styletransferplus", + "reference": "https://github.com/FuouM/ComfyUI-StyleTransferPlus", + "files": [ + "https://github.com/FuouM/ComfyUI-StyleTransferPlus" + ], + "install_type": "git-clone", + "description": "Nodes:Neural Neighbor, CAST, EFDM, MicroAST, Coral Color Transfer." + }, + { + "author": "MiddleKD", + "title": "ComfyUI-mem-safe-wrapper", + "reference": "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper", + "files": [ + "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper" + ], + "install_type": "git-clone", + "description": "ComfyUI's Smart Memory Management efficiently manages RAM, GPU memory, and garbage collection. This feature keeps frequently used models in memory to increase inference speed, and dynamically releases less important models when memory is low to optimize resources. However, not all ComfyUI custom node developers create nodes that are compatible with Smart memory management. This includes several impressive models. Mem-safe-wrapper is a custom node that wraps these model nodes to enable ComfyUI's Smart memory management capabilities." + }, + { + "author": "MiddleKD", + "title": "ComfyUI-productfix", + "reference": "https://github.com/MiddleKD/ComfyUI-productfix", + "files": [ + "https://github.com/MiddleKD/ComfyUI-productfix" + ], + "install_type": "git-clone", + "description": "This is a ComfyUI custom node that helps generate images while preserving the text, logos, and details of e-commerce products." + }, + { + "author": "PowerHouseMan", + "title": "ComfyUI-AdvancedLivePortrait", + "id": "advancedliveportrait", + "reference": "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait", + "files": [ + "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait" + ], + "install_type": "git-clone", + "description": "AdvancedLivePortrait with Facial expression editor" + }, + { + "author": "cdxOo", + "title": "Text Node With Comments (@cdxoo)", + "reference": "https://github.com/cdxOo/comfyui-text-node-with-comments", + "files": [ + "https://github.com/cdxOo/comfyui-text-node-with-comments" + ], + "install_type": "git-clone", + "description": "multiline text node that strips c-style comments (i.e.'//' and '/* ... */') before passing output string downstream" + }, + { + "author": "noarche", + "title": "noarche/Color Enhance", + "id": "color-enhance", + "reference": "https://github.com/noarche/sd-webui-color-enhance", + "files": [ + "https://github.com/noarche/sd-webui-color-enhance" + ], + "install_type": "git-clone", + "description": "Script for [a/AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) and node for ComfyUI to enhance colors.\nThis is the same algorithm GIMP/GEGL uses for color enhancement. The gist of this implementation is that it converts the color space to [CIELCh(ab) and normalizes the chroma (or '[a/colorfulness](https://en.wikipedia.org/wiki/Colorfulness)') component. Original source can be found in the link below." + }, + { + "author": "emojiiii", + "title": "ComfyUI_Emojiiii_Custom_Nodes", + "reference": "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes", + "files": [ + "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes" + ], + "install_type": "git-clone", + "description": "Nodes:MultiTextEncode, KolorsMultiTextEncode" + }, + { + "author": "aonekoss", + "title": "ComfyUI-Counter", + "reference": "https://github.com/oleksandr612/ComfyUI-Counter", + "files": [ + "https://github.com/oleksandr612/ComfyUI-Counter" + ], + "install_type": "git-clone", + "description": "A simple counter, when pressing 'Queue Prompt' resets the count." + }, + { + "author": "syaofox", + "title": "ComfyUI_FoxTools", + "reference": "https://github.com/syaofox/ComfyUI_FoxTools", + "files": [ + "https://github.com/syaofox/ComfyUI_FoxTools" + ], + "install_type": "git-clone", + "description": "Nodes:BatchImageFromList, Load Face Occlusion Model, Create Face Mask, Simple FaceAlign, Cacul FaceAlign, Gen Blurbord, Face Align, Face Rotate, ImageAdd, LoadImageList, SaveImage Plus, RegTextFind" + }, + { + "author": "alpertunga-bile", + "title": "image-caption-comfyui", + "reference": "https://github.com/alpertunga-bile/image-caption-comfyui", + "files": [ + "https://github.com/alpertunga-bile/image-caption-comfyui" + ], + "install_type": "git-clone", + "description": "Using image caption models to extract prompts in ComfyUI" + }, + { + "author": "Anibaaal", + "title": "ComfyUI UX Nodes", + "reference": "https://github.com/Anibaaal/ComfyUI-UX-Nodes", + "files": [ + "https://github.com/Anibaaal/ComfyUI-UX-Nodes" + ], + "install_type": "git-clone", + "description": "Nodes: Easy Resolution Picker, Step Calculator" + }, + { + "author": "NMWave", + "title": "Image Captioning and Tagging Assistor Nodes", + "id": "naderimagecaptionandtag", + "reference": "https://github.com/NMWave/ComfyUI-Nader-Tagging", + "files": [ + "https://github.com/NMWave/ComfyUI-Nader-Tagging" + ], + "install_type": "git-clone", + "description": "A small set of useful nodes which aid with the tagging process by splitting tags and strings, alternating tags from multiple sources and removing duplicates." + }, + { + "author": "caleboleary", + "title": "Arc2Face ComfyUI Node Library", + "reference": "https://github.com/caleboleary/ComfyUI-Arc2Face", + "files": [ + "https://github.com/caleboleary/ComfyUI-Arc2Face" + ], + "install_type": "git-clone", + "description": "This ComfyUI node library builds upon the work done to train the [a/Arc2Face](https://github.com/foivospar/Arc2Face) model by foivospar. It provides a set of nodes for ComfyUI that allow users to extract face embeddings, generate images based on these embeddings, and perform image-to-image transformations." + }, + { + "author": "GeekyGhost", + "title": "ComfyUI-GeekyRemB", + "reference": "https://github.com/GeekyGhost/ComfyUI-GeekyRemB", + "files": [ + "https://github.com/GeekyGhost/ComfyUI-GeekyRemB" + ], + "install_type": "git-clone", + "description": "GeekyRemB is a powerful and versatile image processing node for ComfyUI, designed to remove backgrounds from images with advanced customization options. This node leverages the rembg library and offers a wide range of features for fine-tuning the background removal process and enhancing the resulting images." + }, + { + "author": "Dobidop", + "title": "Dobidop ComfyStereo", + "id": "simple-stereoscopic", + "reference": "https://github.com/Dobidop/ComfyStereo", + "files": [ + "https://github.com/Dobidop/ComfyStereo" + ], + "install_type": "git-clone", + "description": "Two simple nodes for stereoscopic image generation. Nodes: Stereo Image Node - a basic port from the Automatic1111 stereo script in thygate/stable-diffusion-webui-depthmap-script, LazyStereo - a naïve stereo image generator" + }, + { + "author": "SeniorPioner", + "title": "SP-Nodes", + "id": "spnodes", + "reference": "https://github.com/bananasss00/ComfyUI-SP-Nodes", + "files": [ + "https://github.com/bananasss00/ComfyUI-SP-Nodes" + ], + "install_type": "git-clone", + "description": "Node Pack: PromptChecker for token toggling, KoboldCPP API, ModelMerging, Telegram-Bot-API, and more" + }, + { + "author": "leeguandong", + "title": "ComfyUI_M3Net", + "reference": "https://github.com/leeguandong/ComfyUI_M3Net", + "files": [ + "https://github.com/leeguandong/ComfyUI_M3Net" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/M3Net](https://github.com/I2-Multimedia-Lab/M3Net)" + }, + { + "author": "leeguandong", + "title": "ComfyUI_InternVL2", + "reference": "https://github.com/leeguandong/ComfyUI_InternVL2", + "files": [ + "https://github.com/leeguandong/ComfyUI_InternVL2" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/InternVL](https://github.com/OpenGVLab/InternVL)" + }, + { + "author": "leeguandong", + "title": "ComfyUI_LLaSM", + "reference": "https://github.com/leeguandong/ComfyUI_LLaSM", + "files": [ + "https://github.com/leeguandong/ComfyUI_LLaSM" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/LLaSM](https://huggingface.co/spaces/LinkSoul/LLaSM)" + }, + { + "author": "leeguandong", + "title": "ComfyUI nodes to use VideoEditing", + "reference": "https://github.com/leeguandong/ComfyUI_VideoEditing", + "files": [ + "https://github.com/leeguandong/ComfyUI_VideoEditing" + ], + "install_type": "git-clone", + "description": "Nodes:Load Video to Images, Image to Canny, ControlNet Model Loader, VEDit Model Loader, VEdit Sampler. [a/https://github.com/SingleZombie/DiffusersExample/tree/main/ReplaceAttn](https://github.com/SingleZombie/DiffusersExample/tree/main/ReplaceAttn)" + }, + { + "author": "lenskikh", + "title": "Propmt Worker", + "reference": "https://github.com/lenskikh/ComfyUI-Prompt-Worker", + "files": [ + "https://github.com/lenskikh/ComfyUI-Prompt-Worker" + ], + "install_type": "git-clone", + "description": "Node:Prompt Worker. A text manipulation node for postprocessing of prompt." + }, + { + "author": "kappa54", + "title": "ComfyUI Usability", + "id": "comfyui_usability", + "reference": "https://github.com/kappa54m/ComfyUI_Usability", + "files": [ + "https://github.com/kappa54m/ComfyUI_Usability" + ], + "install_type": "git-clone", + "description": "Custom nodes intended to improve usability." + }, + { + "author": "IuvenisSapiens", + "title": "ComfyUI_MiniCPM-V-2_6-int4", + "id": "minicpm-v-2_6-int4", + "reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4", + "files": [ + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4" + ], + "install_type": "git-clone", + "description": "This is an implementation of [a/MiniCPM-V-2_6-int4](https://github.com/OpenBMB/MiniCPM-V) by [a/ComfyUI](https://github.com/comfyanonymous/ComfyUI), including support for text-based queries, video queries, single-image queries, and multi-image queries to generate captions or responses." + }, + { + "author": "mltask", + "title": "MLTask_ComfyUI", + "id": "mltask_comfyui", + "reference": "https://github.com/misterjoessef/MLTask_ComfyUI", + "files": [ + "https://github.com/misterjoessef/MLTask_ComfyUI" + ], + "install_type": "git-clone", + "description": "a set of nodes to help u run ai code using MLTask" + }, + { + "author": "smlbiobot", + "title": "ComfyUI-Flux-Replicate-API", + "id": "replicate-api", + "reference": "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API", + "files": [ + "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API" + ], + "install_type": "git-clone", + "description": "Flux Pro via Replicate API\nCreate API key at [a/https://replicate.com/account/api-tokens](https://replicate.com/account/api-tokens)\nCopy config.ini.example to config.ini and put the replicate key there." + }, + { + "author": "Jjulianadv", + "title": "Wild Divide", + "reference": "https://github.com/Julian-adv/WildDivide", + "files": [ + "https://github.com/Julian-adv/WildDivide" + ], + "install_type": "git-clone", + "description": "This extension provides the ability to build prompts using wildcards for each region of a split image." + }, + { + "author": "goburiin", + "title": "nsfwrecog-comfyui", + "reference": "https://github.com/goburiin/nsfwrecog-comfyui", + "files": [ + "https://github.com/goburiin/nsfwrecog-comfyui" + ], + "install_type": "git-clone", + "description": "Nodes:NSFW Detector" + }, + { + "author": "eastoc", + "title": "Semantic-SAM", + "reference": "https://github.com/eastoc/ComfyUI_SemanticSAM", + "files": [ + "https://github.com/eastoc/ComfyUI_SemanticSAM" + ], + "install_type": "git-clone", + "description": "Segment and Recognize Anything at Any Granularity." + }, + { + "author": "LING-APE", + "title": "ComfyUI-PixelResolutionCalculator", + "id": "PixelCalulator", + "reference": "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator", + "files": [ + "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator" + ], + "install_type": "git-clone", + "description": "Simple resuluition calculator to convert pixel resolution and aspect ratio to laten friendlt pixel width and height size." + }, + { + "author": "Cyber-Blacat", + "title": "ComfyUI-Yuan", + "reference": "https://github.com/Cyber-Blacat/ComfyUI-Yuan", + "files": [ + "https://github.com/Cyber-Blacat/ComfyUI-Yuan" + ], + "install_type": "git-clone", + "description": "Some simple&practical ComfyUI image processing nodes." + }, + { + "author": "blackcodetavern", + "title": "ComfyUI-Benripack", + "reference": "https://github.com/blackcodetavern/ComfyUI-Benripack", + "files": [ + "https://github.com/blackcodetavern/ComfyUI-Benripack" + ], + "install_type": "git-clone", + "description": "ComfyUI-Benripack is an extension for ComfyUI that provides a CharacterPipe node. This node allows for managing various elements such as images, prompts, and models in a single structure, simplifying the workflow for character-based image generation." + }, + { + "author": "MohammadAboulEla", + "title": "ComfyUI-iTools", + "reference": "https://github.com/MohammadAboulEla/ComfyUI-iTools", + "files": [ + "https://github.com/MohammadAboulEla/ComfyUI-iTools" + ], + "install_type": "git-clone", + "description": "The iTools are some quality of life nodes, like read a possible prompt used to create an image, save a prompt to file as a new line, read prompts from a multiline file." + }, + { + "author": "Hellrunner2k", + "title": "Hellrunner's Magical Nodes", + "reference": "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes", + "files": [ + "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes" + ], + "install_type": "git-clone", + "description": "Nodes:Magical Save Node, Thermal Latenator. This package contains a collection of neat nodes that are supposed to ease your comfy-flow." + }, + { + "author": "caleboleary", + "title": "Comfyui-calbenodes", + "reference": "https://github.com/caleboleary/Comfyui-calbenodes", + "files": [ + "https://github.com/caleboleary/Comfyui-calbenodes" + ], + "install_type": "git-clone", + "description": "Nodes:CharacterManagerNode, FilmGrain, FlipFlopperSameArch" + }, + { + "author": "Raapys", + "title": "LatentGC Aggressive", + "id": "latentgcaggressive", + "reference": "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive", + "files": [ + "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive" + ], + "install_type": "git-clone", + "description": "Simple latent-passthrough node for running a full VRAM cleanup between workflow stages." + }, + { + "author": "Pheat-AI", + "title": "Remade_nodes", + "reference": "https://github.com/Pheat-AI/Remade_nodes", + "files": [ + "https://github.com/Pheat-AI/Remade_nodes" + ], + "install_type": "git-clone", + "description": "Nodes:Batch Image Blend by Mask" + }, + { + "author": "OgreLemonSoup", + "title": "Load Image Gallery", + "id": "LoadImageGallery", + "reference": "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery", + "files": [ + "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery" + ], + "install_type": "git-clone", + "description": "Adds a gallery to the Load Image node" + }, + { + "author": "OuticNZ", + "title": "ComfyUI-Simple-Of-Complex", + "reference": "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex", + "files": [ + "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex" + ], + "install_type": "git-clone", + "description": "Nodes:Text Switch 2 Way, Prompt Tidy, Text With Context." + }, + { + "author": "justUmen", + "title": "Bjornulf_custom_nodes", + "reference": "https://github.com/justUmen/Bjornulf_custom_nodes", + "files": [ + "https://github.com/justUmen/Bjornulf_custom_nodes" + ], + "install_type": "git-clone", + "description": "Nodes: Ollama, Green Screen to Transparency, Save image for Bjornulf LobeChat, Text with random Seed, Random line from input, Combine images (Background+Overlay alpha), Image to grayscale (black & white), Remove image Transparency (alpha), Resize Image, ..." + }, + { + "author": "jstit", + "title": "comfyui_custom_node_image", + "reference": "https://github.com/jstit/comfyui_custom_node_image", + "files": [ + "https://github.com/jstit/comfyui_custom_node_image" + ], + "install_type": "git-clone", + "description": "Nodes:ImageCropCircle." + }, + { + "author": "jstit", + "title": "ComfyUI-HeadshotPro", + "reference": "https://github.com/HeadshotPro/ComfyUI-HeadshotPro", + "files": [ + "https://github.com/HeadshotPro/ComfyUI-HeadshotPro" + ], + "install_type": "git-clone", + "description": "Nodes:Download Dreambooth Checkpoint, Get Random Value From List, Load Canny Pose Face, Transparent to White Background, Download Flux Lora." + }, + { + "author": "Isi-dev", + "title": "UniAnimate Nodes for ComfyUI", + "id": "comfyuiunianimatenodes", + "reference": "https://github.com/Isi-dev/ComfyUI-UniAnimate-W", + "files": [ + "https://github.com/Isi-dev/ComfyUI-UniAnimate-W" + ], + "install_type": "git-clone", + "description": "These are nodes to animate an image with a reference video using UniAnimate. [w/Name conflict with AIFSH/ComfyUI-UniAnimate. Cannot install simulatenously.]" + }, + { + "author": "XLabs-AI", + "title": "x-flux-comfyui", + "reference": "https://github.com/XLabs-AI/x-flux-comfyui", + "files": [ + "https://github.com/XLabs-AI/x-flux-comfyui" + ], + "install_type": "git-clone", + "description": "Nodes:Load Flux LoRA, Load Flux ControlNet, Apply Flux ControlNet, Xlabs Sampler" + }, + { + "author": "okgo4", + "title": "ComfyUI-Mosaic-Mask", + "reference": "https://github.com/okgo4/ComfyUI-Mosaic-Mask", + "files": [ + "https://github.com/okgo4/ComfyUI-Mosaic-Mask" + ], + "install_type": "git-clone", + "description": "ComfyUI-Mosaic-Mask is an automatic tool designed to detect and mask mosaic areas in input images." + }, + { + "author": "ChrisColeTech", + "title": "ComfyUI-Line-counter", + "reference": "https://github.com/ChrisColeTech/ComfyUI-Line-counter", + "files": [ + "https://github.com/ChrisColeTech/ComfyUI-Line-counter" + ], + "install_type": "git-clone", + "description": "Custom node to count the number of lines in a text file" + }, + { + "author": "dadoirie", + "title": "ComfyUI_Dados_Nodes", + "reference": "https://github.com/dadoirie/ComfyUI_Dados_Nodes", + "files": [ + "https://github.com/dadoirie/ComfyUI_Dados_Nodes" + ], + "install_type": "git-clone", + "description": "ComfyUI_Dados_Nodes is a collection of custom nodes for ComfyUI, designed to enhance functionality and provide integration with various services, including Pinterest. This privacy policy explains how these nodes handle user data.\nNOTE: [a/privacy_policy](https://github.com/dadoirie/ComfyUI_Dados_Nodes/blob/master/privacy_policy.md)" + }, + { + "author": "fanfanfan", + "title": "chinese_clip_encode", + "id": "chinese_clip_encode", + "reference": "https://github.com/yuan199696/chinese_clip_encode", + "files": [ + "https://github.com/yuan199696/chinese_clip_encode" + ], + "install_type": "git-clone", + "description": "Support input of Chinese prompts." + }, + { + "author": "fanfanfan", + "title": "add_text_2_img", + "id": "add_text_2_img", + "reference": "https://github.com/yuan199696/add_text_2_img", + "files": [ + "https://github.com/yuan199696/add_text_2_img" + ], + "install_type": "git-clone", + "description": "Support adding custom text to the generated images." + }, + { + "author": "fairy-root", + "title": "Ollama and Llava Vision integration for ComfyUI", + "reference": "https://github.com/fairy-root/comfyui-ollama-llms", + "files": [ + "https://github.com/fairy-root/comfyui-ollama-llms" + ], + "install_type": "git-clone", + "description": "The PonySwitch node is a custom node for ComfyUI that modifies prompts based on a toggle switch and adds configurable pony tags." + }, + { + "author": "ryanontheinside", + "title": "ComfyUI_RyanOnTheInside", + "reference": "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside", + "files": [ + "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside" + ], + "install_type": "git-clone", + "description": "RyanOnTheInside node pack introduces the following (so far): Particle Systems, Optical Flow, Temporal Masks." }, - - - - - - - + + + + + + + + { "author": "Ser-Hilary", "title": "SDXL_sizing", diff --git a/extension-node-map.json b/extension-node-map.json index 9c21addc..d51a9b9d 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -9,15 +9,6 @@ "title_aux": "alkemann nodes" } ], - "https://git.mmaker.moe/mmaker/sd-webui-color-enhance": [ - [ - "MMakerColorBlend", - "MMakerColorEnhance" - ], - { - "title_aux": "Color Enhance" - } - ], "https://github.com/0xbitches/ComfyUI-LCM": [ [ "LCM_Sampler", @@ -37,14 +28,6 @@ "title_aux": "ComfyUI-GPT2P" } ], - "https://github.com/1038lab/ComfyUI_LatentSizeSelector": [ - [ - "LatentSizeSelector" - ], - { - "title_aux": "ComfyUI-latentSizeSelector" - } - ], "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant": [ [ "EGIPAdapter_Mad_Assistant", @@ -52,7 +35,8 @@ "EGIPAdapter_Mad_AssistantV2", "EGIPAdapter_Mad_AssistantV3", "EGIPAdapter_Mad_AssistantV4", - "EGIPAdapter_Mad_AssistantV5" + "EGIPAdapter_Mad_AssistantV5", + "EGIPAdapter_Mad_AssistantV6" ], { "title_aux": "ComfUI-EGAdapterMadAssistant" @@ -112,6 +96,21 @@ "title_aux": "Comfyui-ergouzi-Nodes" } ], + "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan": [ + [ + "ALLty", + "EGRYDZQHNode", + "GroupSwitchNode", + "GroupSwitchNodee", + "GroupSwitchNodeee", + "GroupSwitchNodeeee", + "hulue", + "jinyong" + ], + { + "title_aux": "Comfyui-ergouzi-kaiguan" + } + ], "https://github.com/11dogzi/Comfyui-ergouzi-samplers": [ [ "EGBYZZCYQ", @@ -246,6 +245,8 @@ "cam-pos-bus", "mesh_data_bus", "mesh_remap_cubvh", + "ply_load", + "ply_normalize", "show_any", "string-to-array", "vc_to_texture" @@ -293,6 +294,15 @@ "title_aux": "Image-vector-for-ComfyUI" } ], + "https://github.com/AIFSH/AniTalker-ComfyUI": [ + [ + "AniTalkerNode", + "PreViewVideo" + ], + { + "title_aux": "AniTalker-ComfyUI" + } + ], "https://github.com/AIFSH/ComfyUI-3d-photo-inpainting": [ [ "LoadImagePath", @@ -513,6 +523,17 @@ "title_aux": "CosyVoice-ComfyUI" } ], + "https://github.com/AIFSH/DHLive-ComfyUI": [ + [ + "DHLiveNode", + "LoadVideo", + "PreViewVideo", + "StaticVideo" + ], + { + "title_aux": "DHLive-ComfyUI" + } + ], "https://github.com/AIFSH/DiffMorpher-ComfyUI": [ [ "DiffMorpherNode", @@ -523,6 +544,22 @@ "title_aux": "DiffMorpher-ComfyUI" } ], + "https://github.com/AIFSH/GSTTS-ComfyUI": [ + [ + "ASRNode", + "AudioSlicerNode", + "ConfigGPTNode", + "ConfigSoVITSNode", + "DatasetNode", + "ExperienceNode", + "GSFinetuneNone", + "GSVTTSNode", + "TextDictNode" + ], + { + "title_aux": "GSTTS-ComfyUI" + } + ], "https://github.com/AIFSH/SenseVoice-ComfyUI": [ [ "SenseVoiceNode", @@ -532,6 +569,15 @@ "title_aux": "SenseVoice-ComfyUI" } ], + "https://github.com/AIFSH/StyleShot-ComfyUI": [ + [ + "StyleShotNode", + "TextNode" + ], + { + "title_aux": "StyleShot-ComfyUI" + } + ], "https://github.com/AIFSH/VocalSeparation-ComfyUI": [ [ "VocalSeparationNode" @@ -650,7 +696,7 @@ "CleanFileNameNode" ], { - "title_aux": "APZmedia Clean File Name Node" + "title_aux": "APZmedia Clean Name" } ], "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen": [ @@ -753,7 +799,8 @@ "ETN_MergeImageTile", "ETN_NSFWFilter", "ETN_SendImageWebSocket", - "ETN_TileLayout" + "ETN_TileLayout", + "ETN_Translate" ], { "title_aux": "ComfyUI Nodes for External Tooling" @@ -809,8 +856,18 @@ "FILTER MASK (JOV) \ud83e\udd3f", "FLATTEN (JOV) \u2b07\ufe0f", "GLSL (JOV) \ud83c\udf69", + "GLSL BLEND LINEAR (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL GRAYSCALE (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL HSV-2-LAB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL HSV-2-RGB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL LAB-2-HSV (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL LAB-2-RGB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL NORMAL (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL RGB-2-HSV (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL RGB-2-LAB (JOV) \ud83e\uddd9\ud83c\udffd", "GRADIENT MAP (JOV) \ud83c\uddf2\ud83c\uddfa", "GRAPH (JOV) \ud83d\udcc8", + "IMAGE INFO (JOV) \ud83d\udcda", "LERP (JOV) \ud83d\udd30", "MIDI FILTER (JOV) \u2733\ufe0f", "MIDI FILTER EZ (JOV) \u2747\ufe0f", @@ -848,6 +905,16 @@ "title_aux": "Jovimetrix Composition Nodes" } ], + "https://github.com/Anibaaal/ComfyUI-UX-Nodes": [ + [ + "DenoiseCalculator", + "EasyResolutionPicker", + "StepCalculator" + ], + { + "title_aux": "ComfyUI UX Nodes" + } + ], "https://github.com/AonekoSS/ComfyUI-LoRA-Tuner": [ [ "LoraTuner" @@ -1151,6 +1218,7 @@ "ComfyUIDeployExternalNumberInt", "ComfyUIDeployExternalNumberSlider", "ComfyUIDeployExternalText", + "ComfyUIDeployExternalTextList", "ComfyUIDeployExternalVid", "ComfyUIDeployExternalVideo" ], @@ -1164,12 +1232,24 @@ ], "https://github.com/BetaDoggo/ComfyUI-VideoPlayer": [ [ - "LoadFrame" + "AllInOnePlayer", + "ImageToEmoji", + "LoadFrame", + "LoadJPGFrame", + "LoadVideoFrame" ], { "title_aux": "ComfyUI Video Player" } ], + "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes": [ + [ + "ModelSamplingWaifuDiffusionV" + ], + { + "title_aux": "neggles/ComfyUI-WDV-Nodes [gist-wrapper]" + } + ], "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker": [ [ "YetAnotherSafetyChecker" @@ -1384,6 +1464,15 @@ "title_aux": "ComfyUI_Ib_CustomNodes" } ], + "https://github.com/ChrisColeTech/ComfyUI-Line-counter": [ + [ + "DirectoryFileCounter", + "TextFileLineCounter" + ], + { + "title_aux": "ComfyUI-Line-counter" + } + ], "https://github.com/Clybius/ComfyUI-Extra-Samplers": [ [ "GeometricCFGGuider", @@ -1483,6 +1572,18 @@ "title_aux": "Primere nodes for ComfyUI" } ], + "https://github.com/Cyber-Blacat/ComfyUI-Yuan": [ + [ + "Image Judgment", + "ImageMinusMask", + "Yuan", + "Yuan Transfer", + "YuanBW" + ], + { + "title_aux": "ComfyUI-Yuan" + } + ], "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader": [ [ "Checkpoint Loader Config" @@ -1551,6 +1652,15 @@ "title_aux": "Derfuu_ComfyUI_ModdedNodes" } ], + "https://github.com/Dobidop/ComfyStereo": [ + [ + "LazyStereo", + "StereoImageNode" + ], + { + "title_aux": "Dobidop ComfyStereo" + } + ], "https://github.com/DonBaronFactory/ComfyUI-Cre8it-Nodes": [ [ "ApplySerialPrompter", @@ -1614,6 +1724,14 @@ "title_aux": "ComfyUI-post-processing-nodes" } ], + "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer": [ + [ + "DoubutsuDescriber" + ], + { + "title_aux": "ComfyUI-Doubutsu-Describer" + } + ], "https://github.com/Excidos/ComfyUI-Documents": [ [ "ChunkRouter", @@ -1627,6 +1745,14 @@ "title_aux": "ComfyUI-Documents" } ], + "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": [ + [ + "LuminaDiffusersNode" + ], + { + "title_aux": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper" + } + ], "https://github.com/ExponentialML/ComfyUI_ModelScopeT2V": [ [ "ModelScopeT2VLoader" @@ -1684,6 +1810,17 @@ "title_aux": "LoadLoraWithTags" } ], + "https://github.com/Extraltodeus/Skimmed_CFG": [ + [ + "Skimmed CFG", + "Skimmed CFG - linear interpolation", + "Skimmed CFG - linear interpolation dual scales", + "Skimmed CFG - replace" + ], + { + "title_aux": "Skimmed_CFG" + } + ], "https://github.com/Extraltodeus/Stable-Diffusion-temperature-settings": [ [ "CLIP Temperature", @@ -1718,37 +1855,13 @@ ], "https://github.com/Extraltodeus/noise_latent_perlinpinpin": [ [ - "NoisyLatentPerlin" + "NoisyLatentPerlin", + "NoisyLatentPerlin16ch" ], { "title_aux": "noise latent perlinpinpin" } ], - "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI": [ - [ - "Conditioning set timestep from sigma", - "Individual channel selector", - "Post CFG make a dot", - "Post CFG subtract mean", - "Pre CFG PAG", - "Pre CFG automatic scale", - "Pre CFG channel multiplier", - "Pre CFG color control", - "Pre CFG consensus sharpening", - "Pre CFG exponentiation", - "Pre CFG perp-neg", - "Pre CFG sharpening", - "Pre CFG subtract mean", - "Pre CFG uncond zero", - "Pre CFG variable scaling", - "Pre CFG zero attention", - "Shape attention", - "Support empty uncond" - ], - { - "title_aux": "pre_cfg_comfy_nodes_for_ComfyUI" - } - ], "https://github.com/Extraltodeus/sigmas_tools_and_the_golden_scheduler": [ [ "Aligned Scheduler", @@ -2180,6 +2293,14 @@ "title_aux": "ComfyUI-Mana-Nodes" } ], + "https://github.com/Franck-Demongin/NX_HuggingFace_Flux": [ + [ + "HFFlux" + ], + { + "title_aux": "NX_HuggingFace_Flux" + } + ], "https://github.com/Franck-Demongin/NX_PromptStyler": [ [ "NX_PromptStyler" @@ -2188,22 +2309,94 @@ "title_aux": "NX_PromptStyler" } ], + "https://github.com/Franck-Demongin/NX_Translator": [ + [ + "Nx_Translator" + ], + { + "title_aux": "NX_Translator" + } + ], + "https://github.com/FuouM/ComfyUI-EbSynth": [ + [ + "ES_Guides7", + "ES_Translate", + "ES_VideoTransfer", + "ES_VideoTransferExtra" + ], + { + "author": "Fuou Marinas", + "description": "Run EbSynth in ComfyUI.", + "nickname": "EbSynth", + "title": "ComfyUI-EbSynth", + "title_aux": "ComfyUI-EbSynth" + } + ], "https://github.com/FuouM/ComfyUI-FirstOrderMM": [ [ + "Articulate_Runner", "FOMM_Partswap", "FOMM_Runner", "FOMM_Seg10Chooser", "FOMM_Seg15Chooser", - "FOMM_Seg5Chooser" + "FOMM_Seg5Chooser", + "FSRT_Runner", + "MRFA_Runner", + "Spline_Runner" ], { "author": "Fuou Marinas", - "description": "Run First Order Motion Model for Image Animation in ComfyUI.", + "description": "ComfyUI-native nodes to run First Order Motion Model for Image Animation and its non-diffusion-based successors.", "nickname": "FOMM", "title": "ComfyUI-FirstOrderMM", "title_aux": "ComfyUI-FirstOrderMM" } ], + "https://github.com/FuouM/ComfyUI-StyleTransferPlus": [ + [ + "AESFA", + "AesFAStyleBlend", + "AesPA", + "CAST", + "CoralColorTransfer", + "EFDM", + "MicroAST", + "NeuralNeighbor", + "TSSAT", + "UniST", + "UniST_Video" + ], + { + "author": "ZJU", + "description": "A collection of style transfer nodes.", + "nickname": "StyleTransferPlus", + "title": "ComfyUI-StyleTransferPlus", + "title_aux": "ComfyUI-StyleTransferPlus" + } + ], + "https://github.com/FuouM/FM_nodes": [ + [ + "CoLIE_LowLight_Enhance", + "ConvIR_DeHaze", + "ConvIR_DeRain", + "ConvIR_DeSnow", + "ConvIR_DefocusDeblur", + "ConvIR_MotionDeBlur", + "ProPIH_Harmonizer", + "RealViFormerSR", + "StabStitch", + "StabStitch_Crop_Resize", + "StabStitch_Stabilize", + "WFEN" + ], + { + "author": "Fuou Marinas", + "description": "A collection of nodes.", + "nickname": "FM_nodes", + "title": "FM Nodes", + "title_aux": "FM_nodes" + } + ], "https://github.com/G-370/ComfyUI-SD3-Powerlab": [ [ "G370SD3PowerLab_AttentionToImage", @@ -2259,6 +2452,14 @@ "title_aux": "ComfyUI-SD3LatentSelectRes" } ], + "https://github.com/GeekyGhost/ComfyUI-GeekyRemB": [ + [ + "GeekyRemB" + ], + { + "title_aux": "ComfyUI-GeekyRemB" + } + ], "https://github.com/GentlemanHu/ComfyUI-SunoAI": [ [ "GentlemanHu_SunoAI", @@ -2408,7 +2609,7 @@ "Recenter XL" ], { - "title_aux": "ComfyUI Diffusion Color Grading" + "title_aux": "Diffusion CG" } ], "https://github.com/Haoming02/comfyui-floodgate": [ @@ -2416,7 +2617,7 @@ "FloodGate" ], { - "title_aux": "ComfyUI Floodgate" + "title_aux": "Floodgate" } ], "https://github.com/Haoming02/comfyui-resharpen": [ @@ -2435,6 +2636,18 @@ "title_aux": "ComfyUI Better Strings" } ], + "https://github.com/HeadshotPro/ComfyUI-HeadshotPro": [ + [ + "[HSP] Download Dreambooth Checkpoint", + "[HSP] Download Flux Lora", + "[HSP] Get Random Value From List", + "[HSP] Load Canny Pose Face", + "[HSP] Transparent to White Background" + ], + { + "title_aux": "ComfyUI-HeadshotPro" + } + ], "https://github.com/HebelHuber/comfyui-enhanced-save-node": [ [ "EnhancedSaveNode" @@ -2443,6 +2656,15 @@ "title_aux": "comfyui-enhanced-save-node" } ], + "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes": [ + [ + "MagicalSaveNode", + "ThermalLatenator" + ], + { + "title_aux": "Hellrunner's Magical Nodes" + } + ], "https://github.com/Hiero207/ComfyUI-Hiero-Nodes": [ [ "Load Prompt Travel file", @@ -2554,6 +2776,26 @@ "title_aux": "ComfyUI-Stereopsis" } ], + "https://github.com/Isi-dev/ComfyUI-UniAnimate-W": [ + [ + "Gen_align_pose", + "UniAnimateImage" + ], + { + "title_aux": "UniAnimate Nodes for ComfyUI" + } + ], + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": [ + [ + "DisplayText", + "LoadVideo", + "MiniCPM_VQA", + "PreViewVideo" + ], + { + "title_aux": "ComfyUI_MiniCPM-V-2_6-int4" + } + ], "https://github.com/JPS-GER/ComfyUI_JPS-Nodes": [ [ "CLIPTextEncode SDXL Plus (JPS)", @@ -2677,6 +2919,7 @@ "JNodes_BooleanSelectorWithString", "JNodes_BreakMediaInfo", "JNodes_CheckpointSelectorWithString", + "JNodes_ConditioningInOut", "JNodes_CreateStereoscopicImageFromDepth", "JNodes_FloatLiteral", "JNodes_GetComfyDirectory", @@ -2692,6 +2935,7 @@ "JNodes_LoadVisualMediaFromPath_Batch", "JNodes_LoraExtractor", "JNodes_MediaInfoToString", + "JNodes_ModelInOut", "JNodes_OutVideoInfo", "JNodes_ParseDynamicPrompts", "JNodes_ParseParametersToGlobalList", @@ -2708,11 +2952,11 @@ "JNodes_SearchAndReplaceFromFile", "JNodes_SearchAndReplaceFromList", "JNodes_SelectRandomFileFromDirectory", - "JNodes_SetMetadataA1111", "JNodes_SetNegativePromptInMetaData", "JNodes_SetPositivePromptInMetaData", "JNodes_SplitAndJoin", "JNodes_StringLiteral", + "JNodes_SubdirectorySelector", "JNodes_SyncedStringLiteral", "JNodes_TokenCounter", "JNodes_TrimAndStrip", @@ -2726,9 +2970,11 @@ ], "https://github.com/JayLyu/ComfyUI_BaiKong_Node": [ [ + "BK_ColorContrast", "BK_ColorLimit", "BK_ColorSelector", "BK_GradientImage", + "BK_ImageFilterByAspectRatio", "BK_Img2Color" ], { @@ -2806,6 +3052,30 @@ "title_aux": "comfy-plasma" } ], + "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling": [ + [ + "AdvancedTiling", + "AdvancedTilingSettings", + "AdvancedTilingVAEDecode" + ], + { + "title_aux": "ComfyUI-AdvancedTiling" + } + ], + "https://github.com/Julian-adv/WildDivide": [ + [ + "Attention couple", + "Comfy Divide", + "WildcardEncode" + ], + { + "author": "Julian Adventurer.", + "description": "This node is used to encode a wildcard string.", + "nickname": "WildDivide", + "title": "Wild Divide", + "title_aux": "Wild Divide" + } + ], "https://github.com/Kangkang625/ComfyUI-paint-by-example": [ [ "PaintbyExamplePipeLoader", @@ -2929,6 +3199,20 @@ "ADE_ConditioningSetMask", "ADE_ConditioningSetMaskAndCombine", "ADE_ConditioningSetUnmaskedAndCombine", + "ADE_ContextExtras_ContextRef", + "ADE_ContextExtras_ContextRef_Keyframe", + "ADE_ContextExtras_ContextRef_KeyframeFromList", + "ADE_ContextExtras_ContextRef_KeyframeInterpolation", + "ADE_ContextExtras_ContextRef_ModeFirst", + "ADE_ContextExtras_ContextRef_ModeIndexes", + "ADE_ContextExtras_ContextRef_ModeSliding", + "ADE_ContextExtras_ContextRef_TuneAttn", + "ADE_ContextExtras_ContextRef_TuneAttnAdain", + "ADE_ContextExtras_NaiveReuse", + "ADE_ContextExtras_NaiveReuse_Keyframe", + "ADE_ContextExtras_NaiveReuse_KeyframeFromList", + "ADE_ContextExtras_NaiveReuse_KeyframeInterpolation", + "ADE_ContextExtras_Set", "ADE_CustomCFG", "ADE_CustomCFGKeyframe", "ADE_CustomCFGKeyframeFromList", @@ -2955,6 +3239,7 @@ "ADE_MultivalConvertToMask", "ADE_MultivalDynamic", "ADE_MultivalDynamicFloatInput", + "ADE_MultivalDynamicFloats", "ADE_MultivalScaledMask", "ADE_NoiseLayerAdd", "ADE_NoiseLayerAddWeighted", @@ -3146,6 +3431,15 @@ "title_aux": "ComfyUI-Diffusers" } ], + "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator": [ + [ + "LatentSizeToPixelSize", + "PixelResolutionCalculator" + ], + { + "title_aux": "ComfyUI-PixelResolutionCalculator" + } + ], "https://github.com/Loewen-Hob/rembg-comfyui-node-better": [ [ "Image Remove Background (rembg)" @@ -3297,6 +3591,15 @@ "title_aux": "ComfyUI-promptLAB" } ], + "https://github.com/MakkiShizu/comfyui_reimgsize": [ + [ + "Cropimg", + "Resize" + ], + { + "title_aux": "comfyui_reimgsize" + } + ], "https://github.com/Mamaaaamooooo/batchImg-rembg-ComfyUI-nodes": [ [ "Image Remove Background (rembg)" @@ -3407,6 +3710,33 @@ "title_aux": "Mosaica" } ], + "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper": [ + [ + "MakeModelMemorySafe-safewrapper", + "ResetModelPatcher-safewrapper", + "SimpleDummyModel-safewrapper", + "SimpleDummyRun-safewrapper" + ], + { + "title_aux": "ComfyUI-mem-safe-wrapper" + } + ], + "https://github.com/MiddleKD/ComfyUI-productfix": [ + [ + "ApplyLatentInjection", + "DetailTransferAdd", + "DetailTransferLatentAdd", + "DynamicImageResize", + "GetTextMask", + "ResetModelPatcherCalculateWeight", + "VQDecoder", + "VQEncoder", + "VQLoader" + ], + { + "title_aux": "ComfyUI-productfix" + } + ], "https://github.com/MilitantHitchhiker/MilitantHitchhiker-SwitchbladePack": [ [ "IntegratedRandomPromptGenerator", @@ -3420,45 +3750,12 @@ "title_aux": "Militant Hitchhiker's Switchblade Pack" } ], - "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ": [ + "https://github.com/Mintbeer96/ComfyUI-KerasOCR": [ [ - "IPAAdapterFaceIDBatch", - "IPAdapter", - "IPAdapterAdvanced", - "IPAdapterBatch", - "IPAdapterCombineEmbeds", - "IPAdapterCombineParams", - "IPAdapterCombineWeights", - "IPAdapterEmbeds", - "IPAdapterEmbedsBatch", - "IPAdapterEncoder", - "IPAdapterFaceID", - "IPAdapterFromParams", - "IPAdapterInsightFaceLoader", - "IPAdapterLoadEmbeds", - "IPAdapterMS", - "IPAdapterModelLoader", - "IPAdapterNoise", - "IPAdapterPreciseComposition", - "IPAdapterPreciseCompositionBatch", - "IPAdapterPreciseStyleTransfer", - "IPAdapterPreciseStyleTransferBatch", - "IPAdapterPromptScheduleFromWeightsStrategy", - "IPAdapterRegionalConditioning", - "IPAdapterSaveEmbeds", - "IPAdapterStyleComposition", - "IPAdapterStyleCompositionBatch", - "IPAdapterTiled", - "IPAdapterTiledBatch", - "IPAdapterUnifiedLoader", - "IPAdapterUnifiedLoaderCommunity", - "IPAdapterUnifiedLoaderFaceID", - "IPAdapterWeights", - "IPAdapterWeightsFromStrategy", - "PrepImageForClipVision" + "KerasOCR" ], { - "title_aux": "ComfyUI-Kolors-MZ" + "title_aux": "ComfyUI-KerasOCR" } ], "https://github.com/Miosp/ComfyUI-FBCNN": [ @@ -3480,6 +3777,16 @@ "title_aux": "ComfyUI Slothful Attention" } ], + "https://github.com/MohammadAboulEla/ComfyUI-iTools": [ + [ + "iToolsLoadImagePlus", + "iToolsPromptLoader", + "iToolsPromptSaver" + ], + { + "title_aux": "ComfyUI-iTools" + } + ], "https://github.com/MokkaBoss1/ComfyUI_Mokkaboss1": [ [ "AnimeCosplayDir", @@ -3582,6 +3889,25 @@ "title_aux": "ComfyUI-TextOverlay" } ], + "https://github.com/MushroomFleet/DJZ-Nodes": [ + [ + "AspectSize", + "AspectSizeV2" + ], + { + "title_aux": "DJZ-Nodes" + } + ], + "https://github.com/MuziekMagie/ComfyUI-Matchering": [ + [ + "Matchering", + "MatcheringAdvanced", + "MatcheringLimiterConfig" + ], + { + "title_aux": "ComfyUI-Matchering" + } + ], "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes": [ [ "3D_GenerateDepthImage", @@ -3598,6 +3924,43 @@ "title_aux": "ComfyUI-Paint3D-Nodes" } ], + "https://github.com/NMWave/ComfyUI-Nader-Tagging": [ + [ + "Load Text List", + "Split Sentences", + "Split Tags", + "Tag Alternating Combiner", + "Tag Duplicate Remover", + "Token Counter" + ], + { + "title_aux": "Image Captioning and Tagging Assistor Nodes" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin": [ + [ + "NoisyLatentPerlinD" + ], + { + "title_aux": "Dimensional Latent Perlin for ComfyUI" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt": [ + [ + "FluxPseudoNegativeNode" + ], + { + "title_aux": "FluxPseudoNegative" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON": [ + [ + "PromptJSON" + ], + { + "title_aux": "PromptJSON Node for ComfyUI" + } + ], "https://github.com/NeuralSamurAI/Comfyui-Superprompt-Unofficial": [ [ "SuperPrompterNode" @@ -3833,6 +4196,18 @@ "title_aux": "QRNG_Node_ComfyUI" } ], + "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex": [ + [ + "Pipe From Parameters", + "Pipe To Parameters", + "Prompt Tidy", + "Text Switch 2 Way", + "Text With Context" + ], + { + "title_aux": "ComfyUI-Simple-Of-Complex" + } + ], "https://github.com/PCMonsterx/ComfyUI-CSV-Loader": [ [ "Load Artists CSV", @@ -3850,6 +4225,14 @@ "title_aux": "ComfyUI-CSV-Loader" } ], + "https://github.com/Parameshvadivel/ComfyUI-SVGview": [ + [ + "SVGPreview" + ], + { + "title_aux": "ComfyUI-SVGview" + } + ], "https://github.com/ParisNeo/lollms_nodes_suite": [ [ "Artbot", @@ -3884,6 +4267,14 @@ "title_aux": "pfaeff-comfyui" } ], + "https://github.com/Pheat-AI/Remade_nodes": [ + [ + "Batch Image Blend by Mask" + ], + { + "title_aux": "Remade_nodes" + } + ], "https://github.com/PnthrLeo/comfyUI-image-search": [ [ "CloseImagesSearcher" @@ -3925,6 +4316,19 @@ "title_aux": "Cyclist" } ], + "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait": [ + [ + "AdvancedLivePortrait", + "ExpData", + "ExpressionEditor", + "LoadExpData", + "PrintExpData:", + "SaveExpData" + ], + { + "title_aux": "ComfyUI-AdvancedLivePortrait" + } + ], "https://github.com/QaisMalkawi/ComfyUI-QaisHelper": [ [ "Bool Binary Operation", @@ -3939,6 +4343,14 @@ "title_aux": "ComfyUI-Qais-Helper" } ], + "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive": [ + [ + "LatentGC" + ], + { + "title_aux": "LatentGC Aggressive" + } + ], "https://github.com/RedRayz/ComfyUI-Danbooru-To-WD": [ [ "DanbooruToWD" @@ -4049,6 +4461,14 @@ "title_aux": "comfyui_io_helpers" } ], + "https://github.com/SEkINVR/ComfyUI-Animator": [ + [ + "Animator" + ], + { + "title_aux": "ComfyUI-Animator" + } + ], "https://github.com/SEkINVR/ComfyUI-SaveAs": [ [ "ComfyUISaveAs" @@ -4131,12 +4551,14 @@ ], "https://github.com/SayanoAI/Comfy-RVC": [ [ + "Any2ListNode", "AudioBatchValueNode", "AudioTranscriptionNode", + "BatchedTranscriptionEncoderNode", "DownloadAudio", "ImageRepeatInterleavedNode", "LatentRepeatInterleavedNode", - "LoadAudio", + "List2AnyNode", "LoadHubertModel", "LoadPitchExtractionParams", "LoadRVCModelNode", @@ -4144,9 +4566,17 @@ "MergeAudioNode", "MergeImageBatches", "MergeLatentBatches", - "PreviewAudio", + "MuseAudioFeatureExtractionNode", + "MuseImageFeatureExtractionNode", + "MuseTalkNode", + "RVC-Studio.LoadAudio", + "RVC-Studio.PreviewAudio", "RVCNode", - "UVR5Node" + "SimpleMathNode", + "SliceNode", + "SortImagesNode", + "UVR5Node", + "ZipNode" ], { "title_aux": "Comfy-RVC" @@ -4521,6 +4951,7 @@ ], "https://github.com/ShmuelRonen/ComfyUI_wav2lip": [ [ + "AudioPath", "Wav2Lip" ], { @@ -4575,6 +5006,14 @@ "title_aux": "comfyui_meme_maker" } ], + "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix": [ + [ + "DeepCache_Fix" + ], + { + "title_aux": "ComfyUI-DeepCache-Fix" + } + ], "https://github.com/SoftMeng/ComfyUI_ImageToText": [ [ "ComfyUI_ImageToText" @@ -4691,6 +5130,15 @@ "title_aux": "ComfyUI_Seg_VITON" } ], + "https://github.com/StartHua/Comfyui_CXH_joy_caption": [ + [ + "Joy_caption", + "Joy_caption_load" + ], + { + "title_aux": "Comfyui_CXH_joy_caption" + } + ], "https://github.com/StartHua/Comfyui_joytag": [ [ "CXH_JoyTag" @@ -4701,7 +5149,8 @@ ], "https://github.com/StartHua/Comfyui_segformer_b2_clothes": [ [ - "segformer_b2_clothes" + "segformer_b2_clothes", + "segformer_b3_fashion" ], { "title_aux": "comfyui_segformer_b2_clothes" @@ -4709,12 +5158,12 @@ ], "https://github.com/SuperBeastsAI/ComfyUI-SuperBeasts": [ [ - "Deflicker (SuperBeasts.AI)", + "Deflicker - Experimental (SuperBeasts.AI)", "HDR Effects (SuperBeasts.AI)", "Image Batch Manager (SuperBeasts.AI)", "Make Resized Mask Batch (SuperBeasts.AI)", "Mask Batch Manager (SuperBeasts.AI)", - "Pixel Deflicker (SuperBeasts.AI)", + "Pixel Deflicker - Experimental (SuperBeasts.AI)", "String List Manager (SuperBeasts.AI)" ], { @@ -5062,6 +5511,7 @@ "tri3d-atr-parse", "tri3d-atr-parse-batch", "tri3d-bgremove-mega", + "tri3d-clean_mask", "tri3d-clear-memory", "tri3d-clipdrop-bgremove-api", "tri3d-clipdrop-bgreplace-api", @@ -5073,6 +5523,7 @@ "tri3d-extract-parts-batch2", "tri3d-extract-parts-mask-batch", "tri3d-extract-pascal-parts-batch", + "tri3d-extract_pose_part", "tri3d-face-recognise", "tri3d-flexible_color_extract", "tri3d-float-to-image", @@ -5101,10 +5552,13 @@ "tri3d-renormalize_array", "tri3d-run_AEMatter_inference", "tri3d-scaled-paste", + "tri3d-scaled-paste_unsafe", "tri3d-simple_bg_swap", "tri3d-simple_rescale_histogram", "tri3d-skin-feathered-padded-mask", - "tri3d-swap-pixels" + "tri3d-swap-pixels", + "tri3d_fill_mask", + "tri3d_position_pose_part" ], { "title_aux": "tri3d-comfyui-nodes" @@ -5323,6 +5777,7 @@ "ttN text7BOX_concat", "ttN textCycleLine", "ttN textDebug", + "ttN textOutput", "ttN tinyLoader", "ttN xyPlot" ], @@ -5427,12 +5882,29 @@ "TripoAPIDraft", "TripoAnimateRetargetNode", "TripoAnimateRigNode", - "TripoGLBViewer" + "TripoGLBViewer", + "TripoRefineModel" ], { "title_aux": "Tripo for ComfyUI" } ], + "https://github.com/Visionatrix/ComfyUI-Visionatrix": [ + [ + "VixUiCheckbox", + "VixUiCheckboxLogic", + "VixUiList", + "VixUiListLogic", + "VixUiPrompt", + "VixUiRangeFloat", + "VixUiRangeInt", + "VixUiRangeScaleFloat", + "VixUiWorkflowMetadata" + ], + { + "title_aux": "ComfyUI-Visionatrix" + } + ], "https://github.com/WASasquatch/ASTERR": [ [ "ASTERR", @@ -5517,6 +5989,7 @@ "Bus Node", "CLIP Input Switch", "CLIP Vision Input Switch", + "CLIPSEG2", "CLIPSeg Batch Masking", "CLIPSeg Masking", "CLIPSeg Model Loader", @@ -5758,6 +6231,18 @@ "title_aux": "ComfyUI Simply Nodes" } ], + "https://github.com/XLabs-AI/x-flux-comfyui": [ + [ + "ApplyFluxControlNet", + "FluxLoraLoader", + "LoadFluxControlNet", + "LoadFluxModel", + "XlabsSampler" + ], + { + "title_aux": "x-flux-comfyui" + } + ], "https://github.com/XmYx/deforum-comfy-nodes": [ [ "DeforumAddNoiseNode", @@ -6126,13 +6611,12 @@ "AmplitudeToGraph", "AmplitudeToNumber", "AudioToAmplitudeGraph", + "AudioToAudioData", "AudioToFFTs", "BatchAmplitudeSchedule", "ClipAmplitude", "FloatArrayToGraph", "GateNormalizedAmplitude", - "LoadAudio", - "LoadVHSAudio", "NormalizeAmplitude", "NormalizedAmplitudeDrivenString", "NormalizedAmplitudeToGraph", @@ -6229,7 +6713,8 @@ ], "https://github.com/adigayung/ComfyUI-Translator": [ [ - "CLIP Text Encode (Auto Translate)" + "CLIP Text Encode (Auto Translate)", + "Prompt Text (Auto Translate)" ], { "title_aux": "ComfyUI-Translator" @@ -6314,6 +6799,25 @@ "title_aux": "LiamUtil (single node)" } ], + "https://github.com/ai-shizuka/ComfyUI-tbox": [ + [ + "AnimalPosePreprocessor", + "ConstrainImageNode", + "DWPosePreprocessor", + "DWPreprocessor", + "DensePosePreprocessor", + "ImageLoader", + "ImageResize", + "ImageSaver", + "ImageSize", + "ImagesSaver", + "MiDaSDepthPreprocessor" + ], + { + "author": "tstandley", + "title_aux": "ComfyUI-tbox" + } + ], "https://github.com/aianimation55/ComfyUI-FatLabels": [ [ "FatLabels" @@ -6322,6 +6826,59 @@ "title_aux": "Comfy UI FatLabels" } ], + "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL": [ + [ + "ASVL" + ], + { + "title_aux": "ComfyUI_merge_ASVL" + } + ], + "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes": [ + [ + "AK_AnimatedDilationMaskLinear", + "AK_AudioreactiveDilationMask", + "AK_IPAdapterCustomWeights", + "AK_NormalizeMaskImage" + ], + { + "author": "akatz", + "description": "Custom node pack for nodes I use in my workflows. Includes Dilation mask nodes for animating subject masks.", + "nickname": "Akatz Custom Nodes", + "title": "Akatz Custom Nodes", + "title_aux": "Akatz Custom Nodes" + } + ], + "https://github.com/akierson/ComfyUI-textnodes": [ + [ + "Prompt Truncate", + "Tidy Tags" + ], + { + "title_aux": "ComfyUI-textnodes" + } + ], + "https://github.com/akierson/comfyui-colornodes": [ + [ + "Color Picker", + "Color to Hex", + "Color to RGB", + "Image Replace Color", + "Invert Color" + ], + { + "title_aux": "comfyui-colornodes" + } + ], + "https://github.com/al-swaiti/All-IN-ONE-style": [ + [ + "ComfyUIStyler", + "menus" + ], + { + "title_aux": "All-IN-ONE-style" + } + ], "https://github.com/al-swaiti/ComfyUI-CascadeResolutions": [ [ "CascadeResolutions" @@ -6330,6 +6887,32 @@ "title_aux": "ComfyUI-CascadeResolutions" } ], + "https://github.com/al-swaiti/ComfyUI-OllamaGemini": [ + [ + "BRIA_RMBG", + "BRIA_RMBG_ModelLoader", + "ComfyUIStyler", + "ConvertRasterToVector", + "FLUXResolutions", + "GeminiOllamaAPI", + "SaveSVG", + "TextSplitByDelimiter", + "menus" + ], + { + "title_aux": "GeminiOllama ComfyUI Extension" + } + ], + "https://github.com/alanhuang67/ComfyUI-FAI-Node": [ + [ + "FAIDynamicMask", + "FAIScaleScheduler", + "FAI_Voronoi_Generator" + ], + { + "title_aux": "FAI-Node" + } + ], "https://github.com/alessandrozonta/ComfyUI-CenterNode": [ [ "BBoxCrop" @@ -6389,6 +6972,15 @@ "title_aux": "ComfyUI-Ollama-Describer" } ], + "https://github.com/alpertunga-bile/image-caption-comfyui": [ + [ + "Image Caption Node", + "Insert Prompt Node" + ], + { + "title_aux": "image-caption-comfyui" + } + ], "https://github.com/alpertunga-bile/prompt-generator-comfyui": [ [ "Prompt Generator" @@ -6565,7 +7157,8 @@ ], "https://github.com/asagi4/ComfyUI-Adaptive-Guidance": [ [ - "AdaptiveGuidance" + "AdaptiveGuidance", + "PerpNegAdaptiveGuidanceGuider" ], { "title_aux": "Adaptive Guidance for ComfyUI" @@ -6736,6 +7329,52 @@ "title_aux": "ComfyUI-FrameSkipping" } ], + "https://github.com/bananasss00/ComfyUI-SP-Nodes": [ + [ + "BoolSwitchOutStr", + "CivitaiPrompts", + "FaceScatter", + "FaceScatter2", + "GodnessMerger_Apply", + "GodnessMerger_InputBlocks", + "GodnessMerger_InputBlocksExperimental", + "GodnessMerger_LabelEmb", + "GodnessMerger_MiddleBlock", + "GodnessMerger_MiddleBlockExperimental", + "GodnessMerger_NoiseInjection", + "GodnessMerger_Out", + "GodnessMerger_OutputBlocks", + "GodnessMerger_OutputBlocksExperimental", + "GodnessMerger_RAW_Apply", + "GodnessMerger_TimeEmbed", + "ImageMonitor", + "ImgMetaValueExtractor", + "LoraLoaderByPath", + "LoraLoaderOnlyModelByPath", + "PreviewImageWEBP", + "PromptChecker", + "RandomPromptFromBook", + "Random_Model_Merge", + "SD3BlocksMultiply", + "SD3Multiply", + "SP-CheckpointSave", + "SP_KoboldCpp", + "SP_WebsocketSendImage", + "ScatterParams", + "ScatterParamsBatch", + "SendTelegramChatBot", + "StrToCombo", + "TESTER", + "TextSplitJoinByDelimiter" + ], + { + "author": "SeniorPioner", + "description": "Node Pack: PromptChecker for token toggling, KoboldCPP API, ModelMerging, Telegram-Bot-API, and more", + "nickname": "SP-Nodes", + "title": "SP-Nodes", + "title_aux": "SP-Nodes" + } + ], "https://github.com/banodoco/steerable-motion": [ [ "BatchCreativeInterpolation", @@ -6763,6 +7402,7 @@ "Batch Resize Image for SDXL", "Checkpoint Loader Simple Mikey", "CheckpointHash", + "CheckpointSaveModelOnly", "CinematicLook", "Empty Latent Ratio Custom SDXL", "Empty Latent Ratio Select SDXL", @@ -6790,6 +7430,9 @@ "MikeyLatentTileSamplerCustom", "MikeySamplerTiledAdvanced", "MikeySamplerTiledAdvancedBaseOnly", + "ModelMergePixArtSigmaXL2_1024MS", + "ModelMergeTrainDiff", + "ModelMergeTrainDiffPixartSigmaXL2_1024MS", "MosaicExpandImage", "OobaPrompt", "PresetRatioSelector", @@ -6831,13 +7474,19 @@ ], "https://github.com/bedovyy/ComfyUI_NAIDGenerator": [ [ + "ColorizeNAID", + "DeclutterNAID", + "EmotionNAID", "GenerateNAID", "Img2ImgOptionNAID", "InpaintingOptionNAID", + "LineArtNAID", "MaskImageToNAID", "ModelOptionNAID", "NetworkOptionNAID", "PromptToNAID", + "RemoveBGNAID", + "SketchNAID", "VibeTransferOptionNAID" ], { @@ -6875,6 +7524,14 @@ "title_aux": "BrevImage" } ], + "https://github.com/blackcodetavern/ComfyUI-Benripack": [ + [ + "CharacterPipe" + ], + { + "title_aux": "ComfyUI-Benripack" + } + ], "https://github.com/blepping/ComfyUI-bleh": [ [ "BlehBlockOps", @@ -6922,7 +7579,21 @@ "ApplyRAUNetSimple" ], { - "title_aux": "ComfyUI jank HiDiffusion" + "title_aux": "comfyui_jankhidiffusion" + } + ], + "https://github.com/blepping/comfyui_overly_complicated_sampling": [ + [ + "OCS Group", + "OCS ModelSetMaxSigma", + "OCS MultiParam", + "OCS Param", + "OCS Sampler", + "OCS SimpleRestartSchedule", + "OCS Substeps" + ], + { + "title_aux": "comfyui_overly_complicated_sampling" } ], "https://github.com/blueraincoatli/comfyUI_SillyNodes": [ @@ -7224,13 +7895,6 @@ "https://github.com/bvhari/ComfyUI_SUNoise": [ [ "SUNoiseLatent", - "SamplerDPM2Ancestral_SUN", - "SamplerDPMPP2SAncestral_SUN", - "SamplerDPMPP_2M_SDE_SUN", - "SamplerDPMPP_3M_SDE_SUN", - "SamplerDPMPP_SDE_SUN", - "SamplerEulerAncestralCFGpp_SUN", - "SamplerEulerAncestral_SUN", "SamplersSUNoise", "SamplersSUNoiseAdvanced" ], @@ -7238,6 +7902,19 @@ "title_aux": "ComfyUI_SUNoise" } ], + "https://github.com/caleboleary/ComfyUI-Arc2Face": [ + [ + "Arc2FaceEncoderLoader", + "Arc2FaceFaceExtractor", + "Arc2FaceGenerator", + "Arc2FaceImageGridGenerator", + "Arc2FaceImg2ImgGenerator", + "Arc2FaceUNetLoader" + ], + { + "title_aux": "Arc2Face ComfyUI Node Library" + } + ], "https://github.com/catscandrive/comfyui-imagesubfolders/raw/main/loadImageWithSubfolders.py": [ [ "LoadImagewithSubfolders" @@ -7274,6 +7951,14 @@ "title_aux": "comfyui-image-round" } ], + "https://github.com/cdxOo/comfyui-text-node-with-comments": [ + [ + "text-node-with-comments" + ], + { + "title_aux": "Text Node With Comments (@cdxoo)" + } + ], "https://github.com/celsojr2013/comfyui_jamworks_client": [ [ "Jamworks_Download", @@ -7296,10 +7981,13 @@ ], "https://github.com/cerspense/ComfyUI_cspnodes": [ [ + "DepthToNormalMap", "ImageDirIterator", + "IncrementEveryN", "Modelscopet2v", "Modelscopev2v", "RemapRange", + "ResizeByImage", "SplitImageChannels", "TextFileLineIterator", "VidDirIterator" @@ -7797,6 +8485,18 @@ "title_aux": "ComfyUI-Novakid" } ], + "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper": [ + [ + "CatVTONWrapper" + ], + { + "author": "chflame", + "description": "CatVTON warpper for ComfyUI", + "nickname": "CatVTON_Wrapper", + "title": "CatVTON_Wrapper", + "title_aux": "ComfyUI_CatVTON_Wrapper" + } + ], "https://github.com/chflame163/ComfyUI_FaceSimilarity": [ [ "Face Similarity" @@ -7839,7 +8539,9 @@ "LayerMask: BiRefNetUltra", "LayerMask: BlendIf Mask", "LayerMask: CreateGradientMask", + "LayerMask: Florence2Ultra", "LayerMask: ImageToMask", + "LayerMask: LoadFlorence2Model", "LayerMask: MaskBoxDetect", "LayerMask: MaskByColor", "LayerMask: MaskByDifferent", @@ -7860,6 +8562,9 @@ "LayerMask: RemBgUltra", "LayerMask: RmBgUltra V2", "LayerMask: SegformerB2ClothesUltra", + "LayerMask: SegformerClothesPipelineLoader", + "LayerMask: SegformerFashionPipelineLoader", + "LayerMask: SegformerUltraV2", "LayerMask: SegmentAnythingUltra", "LayerMask: SegmentAnythingUltra V2", "LayerMask: Shadow & Highlight Mask", @@ -7896,6 +8601,7 @@ "LayerUtility: ExtendCanvas", "LayerUtility: ExtendCanvasV2", "LayerUtility: Float", + "LayerUtility: Florence2Image2Prompt", "LayerUtility: GetColorTone", "LayerUtility: GetColorToneV2", "LayerUtility: GetImageSize", @@ -8068,15 +8774,15 @@ "title_aux": "Image chooser" } ], - "https://github.com/chrisgoringe/cg-noise": [ + "https://github.com/chrisgoringe/cg-noisetools": [ [ - "Hijack", - "KSampler Advanced with Variations", - "KSampler with Variations", - "UnHijack" + "Batch Noise Simulate", + "Mix Noise", + "Seperable Batch Noise", + "Shape Noise" ], { - "title_aux": "Variation seeds" + "title_aux": "Noise variation and batch noise tools" } ], "https://github.com/chrisgoringe/cg-use-everywhere": [ @@ -8114,6 +8820,16 @@ "title_aux": "img2colors-comfyui-node" } ], + "https://github.com/christian-byrne/img2txt-comfyui-nodes": [ + [ + "img2txt BLIP/Llava Multimodel Tagger" + ], + { + "author": "christian-byrne", + "title": "Img2Txt auto captioning", + "title_aux": "img2txt-comfyui-nodes" + } + ], "https://github.com/christian-byrne/size-match-compositing-nodes": [ [ "Composite Alpha Layer", @@ -8123,6 +8839,22 @@ "title_aux": "Node - Size Matcher" } ], + "https://github.com/christian-byrne/youtube-dl-comfyui": [ + [ + "YoutubeDL" + ], + { + "title_aux": "youtube-dl-comfyui" + } + ], + "https://github.com/city96/ComfyUI-GGUF": [ + [ + "UnetLoaderGGUF" + ], + { + "title_aux": "ComfyUI-GGUF" + } + ], "https://github.com/city96/ComfyUI_ColorMod": [ [ "CV2Tonemap", @@ -8134,6 +8866,7 @@ "ColorModEdges", "ColorModMove", "ColorModPivot", + "ColorspaceConvert", "HDRCreate", "HDRExposureFusion", "LoadImageHDR", @@ -8171,6 +8904,8 @@ "HYDiTTextEncoderLoader", "MiaoBiCLIPLoader", "MiaoBiDiffusersLoader", + "OverrideCLIPDevice", + "OverrideVAEDevice", "PixArtCheckpointLoader", "PixArtCheckpointLoaderSimple", "PixArtControlNetCond", @@ -8266,6 +9001,8 @@ "CLIPSetLastLayer", "CLIPTextEncode", "CLIPTextEncodeControlnet", + "CLIPTextEncodeFlux", + "CLIPTextEncodeHunyuanDiT", "CLIPTextEncodeSD3", "CLIPTextEncodeSDXL", "CLIPTextEncodeSDXLRefiner", @@ -8302,6 +9039,7 @@ "ExponentialScheduler", "FeatherMask", "FlipSigmas", + "FluxGuidance", "FreeU", "FreeU_V2", "GITSScheduler", @@ -8361,6 +9099,7 @@ "MaskToImage", "ModelMergeAdd", "ModelMergeBlocks", + "ModelMergeFlux1", "ModelMergeSD1", "ModelMergeSD2", "ModelMergeSD3_2B", @@ -8371,6 +9110,7 @@ "ModelSamplingContinuousEDM", "ModelSamplingContinuousV", "ModelSamplingDiscrete", + "ModelSamplingFlux", "ModelSamplingSD3", "ModelSamplingStableCascade", "Morphology", @@ -8398,6 +9138,7 @@ "SamplerCustomAdvanced", "SamplerDPMAdaptative", "SamplerDPMPP_2M_SDE", + "SamplerDPMPP_2S_Ancestral", "SamplerDPMPP_3M_SDE", "SamplerDPMPP_SDE", "SamplerEulerAncestral", @@ -8588,6 +9329,7 @@ "IPAdapterAdvanced", "IPAdapterBatch", "IPAdapterClipVisionEnhancer", + "IPAdapterClipVisionEnhancerBatch", "IPAdapterCombineEmbeds", "IPAdapterCombineParams", "IPAdapterCombineWeights", @@ -8595,6 +9337,7 @@ "IPAdapterEmbedsBatch", "IPAdapterEncoder", "IPAdapterFaceID", + "IPAdapterFaceIDKolors", "IPAdapterFromParams", "IPAdapterInsightFaceLoader", "IPAdapterLoadEmbeds", @@ -8620,6 +9363,44 @@ "PrepImageForClipVision" ], { + "preemptions": [ + "IPAAdapterFaceIDBatch", + "IPAdapter", + "IPAdapterAdvanced", + "IPAdapterBatch", + "IPAdapterClipVisionEnhancer", + "IPAdapterClipVisionEnhancerBatch", + "IPAdapterCombineEmbeds", + "IPAdapterCombineParams", + "IPAdapterCombineWeights", + "IPAdapterEmbeds", + "IPAdapterEmbedsBatch", + "IPAdapterEncoder", + "IPAdapterFaceID", + "IPAdapterFromParams", + "IPAdapterInsightFaceLoader", + "IPAdapterLoadEmbeds", + "IPAdapterMS", + "IPAdapterModelLoader", + "IPAdapterNoise", + "IPAdapterPreciseComposition", + "IPAdapterPreciseCompositionBatch", + "IPAdapterPreciseStyleTransfer", + "IPAdapterPreciseStyleTransferBatch", + "IPAdapterPromptScheduleFromWeightsStrategy", + "IPAdapterRegionalConditioning", + "IPAdapterSaveEmbeds", + "IPAdapterStyleComposition", + "IPAdapterStyleCompositionBatch", + "IPAdapterTiled", + "IPAdapterTiledBatch", + "IPAdapterUnifiedLoader", + "IPAdapterUnifiedLoaderCommunity", + "IPAdapterUnifiedLoaderFaceID", + "IPAdapterWeights", + "IPAdapterWeightsFromStrategy", + "PrepImageForClipVision" + ], "title_aux": "ComfyUI_IPAdapter_plus" } ], @@ -8656,11 +9437,13 @@ "DebugTensorShape+", "DrawText+", "ExtractKeyframes+", + "FluxSamplerParams+", "GetImageSize+", "ImageApplyLUT+", "ImageBatchMultiple+", "ImageCASharpening+", "ImageColorMatch+", + "ImageColorMatchAdobe+", "ImageComposite+", "ImageCompositeFromMaskBatch+", "ImageCrop+", @@ -8678,6 +9461,7 @@ "ImageRemoveBackground+", "ImageResize+", "ImageSeamCarving+", + "ImageSmartSharpen+", "ImageTile+", "ImageToDevice+", "ImageUntile+", @@ -8701,11 +9485,15 @@ "ModelCompile+", "NoiseFromImage+", "PixelOEPixelize+", + "PlotParameters+", "RemBGSession+", "RemoveLatentMask+", "SD3NegativeConditioning+", "SDXLEmptyLatentSizePicker+", + "SamplerSelectHelper+", + "SchedulerSelectHelper+", "SimpleMath+", + "TextEncodeForSamplerParams+", "TransitionMask+", "TransparentBGSession+" ], @@ -8756,6 +9544,17 @@ "title_aux": "Face Compare" } ], + "https://github.com/da2el-ai/ComfyUI-d2-send-eagle": [ + [ + "D2 Send Eagle" + ], + { + "author": "da2el", + "description": "Send images to Eagle, an image management application", + "title": "D2 Send Eagle", + "title_aux": "D2 Send Eagle" + } + ], "https://github.com/da2el-ai/ComfyUI-d2-size-selector": [ [ "D2_SizeSelector" @@ -8780,10 +9579,33 @@ "title_aux": "D2 Steps" } ], + "https://github.com/dadoirie/ComfyUI_Dados_Nodes": [ + [ + "PinterestImageNode" + ], + { + "title_aux": "ComfyUI_Dados_Nodes" + } + ], "https://github.com/dagthomas/comfyui_dagthomas": [ [ + "APNLatent", + "ApplyBloom", + "CFGSkimming", + "CustomPromptLoader", + "DynamicStringCombinerNode", + "FlexibleStringMergerNode", + "GPT4MiniNode", + "GPT4VisionNode", + "Gpt4CustomVision", + "Gpt4VisionCloner", + "MergedOllamaNode", + "OllamaNode", "PGSD3LatentGenerator", - "PromptGenerator" + "PromptGenerator", + "RandomIntegerNode", + "SentenceMixerNode", + "StringMergerNode" ], { "title_aux": "SDXL Auto Prompter" @@ -9272,6 +10094,16 @@ "title_aux": "ComfyUI Easy Padding" } ], + "https://github.com/eastoc/ComfyUI_SemanticSAM": [ + [ + "PointPrompt", + "SemanticSAMLoader", + "SemanticSAMSegment" + ], + { + "title_aux": "Semantic-SAM" + } + ], "https://github.com/edenartlab/eden_comfy_pipelines": [ [ "Animation_RGB_Mask", @@ -9317,6 +10149,15 @@ "title_aux": "Various custom nodes by Eden.art" } ], + "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes": [ + [ + "KolorsMultiTextEncode", + "MultiTextEncode" + ], + { + "title_aux": "ComfyUI_Emojiiii_Custom_Nodes" + } + ], "https://github.com/evanspearman/ComfyMath": [ [ "CM_BoolBinaryOperation", @@ -9402,6 +10243,16 @@ "title_aux": "ComfyUI-Showrunner-Utils" } ], + "https://github.com/fairy-root/comfyui-ollama-llms": [ + [ + "ConcatenateText", + "llava", + "ollama" + ], + { + "title_aux": "Ollama and Llava Vision integration for ComfyUI" + } + ], "https://github.com/fearnworks/ComfyUI_FearnworksNodes": [ [ "Count Files in Directory (FW)", @@ -9485,31 +10336,55 @@ "title_aux": "Pixelization" } ], + "https://github.com/filliptm/ComfyUI_FL-Trainer": [ + [ + "FL_ImageCaptionSaver", + "FL_KohyaSSAdvConfig", + "FL_KohyaSSDatasetConfig", + "FL_KohyaSSInitWorkspace", + "FL_KohyaSSTrain", + "FL_Kohya_EasyTrain", + "FL_LoadImagesFromDirectoryPath", + "FL_SliderLoraAdvConfig", + "FL_SliderLoraDatasetConfig", + "FL_SliderLoraInitWorkspace", + "FL_SliderLoraTrain" + ], + { + "title_aux": "ComfyUI_FL-Trainer" + } + ], "https://github.com/filliptm/ComfyUI_Fill-Nodes": [ [ "FL_Ascii", - "FL_AudioConverter", - "FL_AudioFrameCalculator", - "FL_AudioPreview", "FL_BatchAlign", "FL_BulletHellGame", + "FL_CaptionToCSV", "FL_CodeNode", + "FL_ColorPicker", "FL_DirectoryCrawl", "FL_Dither", + "FL_FractalKSampler", + "FL_GPT_Vision", "FL_Glitch", + "FL_HFHubModelUploader", + "FL_HF_Character", "FL_HalftonePattern", "FL_HexagonalPattern", + "FL_ImageCaptionLayout", "FL_ImageCaptionSaver", "FL_ImageCollage", "FL_ImageDimensionDisplay", - "FL_ImageDurationSync", "FL_ImageNotes", "FL_ImagePixelator", "FL_ImageRandomizer", "FL_InfiniteZoom", "FL_InpaintCrop", "FL_Inpaint_Stitch", + "FL_KsamplerBasic", + "FL_KsamplerPlus", "FL_KsamplerSettings", + "FL_MirrorAndAppendCaptions", "FL_NFTGenerator", "FL_PaperDrawn", "FL_PasteOnCanvas", @@ -9520,12 +10395,20 @@ "FL_RetroEffect", "FL_Ripple", "FL_SDUltimate_Slices", + "FL_SendToDiscordWebhook", "FL_SeparateMaskComponents", "FL_Shadertoy", + "FL_SimpleGPTVision", + "FL_SystemCheck", "FL_TD_Sampler", "FL_TetrisGame", + "FL_TimeLine", + "FL_UpscaleModel", "FL_VideoCropMask", - "FL_VideoRecompose" + "FL_VideoRecompose", + "FL_ZipDirectory", + "FL_ZipSave", + "GradientImageGenerator" ], { "title_aux": "ComfyUI_Fill-Nodes" @@ -9686,6 +10569,16 @@ "title_aux": "ComfyUI-Prompter-fofrAI" } ], + "https://github.com/fofr/comfyui-fofr-toolkit": [ + [ + "Incrementer \ud83e\udeb4", + "Width and height for scaling image to ideal resolution \ud83e\udeb4", + "Width and height from aspect ratio \ud83e\udeb4" + ], + { + "title_aux": "comfyui-fofr-toolkit" + } + ], "https://github.com/forever22777/comfyui-self-guidance": [ [ "CLIPConditioning", @@ -9908,100 +10801,7 @@ "SimpleChat" ], { - "title_aux": "SaltAI Language Toolkit" - } - ], - "https://github.com/get-salt-AI/SaltAI_LlamaIndex": [ - [ - "AddTool", - "ChangeSystemMessage", - "ClearMemory", - "ConversableAgentCreator", - "ConversableAgentCreatorAdvanced", - "ConvertAgentAsTool", - "ConvertAgentToLlamaindex", - "CreateTavilySearchTool", - "Example", - "GenerateReply", - "GroupChat", - "GroupChatAdvanced", - "GroupChatManagerCreator", - "LLMCSVReader", - "LLMChat", - "LLMChatBot", - "LLMChatEngine", - "LLMChatMessageConcat", - "LLMChatMessages", - "LLMChatMessagesAdv", - "LLMComplete", - "LLMCustomNodeComposer", - "LLMDirectoryReader", - "LLMDocumentListAppend", - "LLMDocxReader", - "LLMEpubReader", - "LLMFlatReader", - "LLMHTMLTagReader", - "LLMHWPReader", - "LLMHtmlComposer", - "LLMHtmlRepair", - "LLMIPYNBReader", - "LLMImageCaptionReader", - "LLMImageTabularChartReader", - "LLMImageTextReader", - "LLMImageVisionLLMReader", - "LLMInputToDocuments", - "LLMJsonComposer", - "LLMJsonRepair", - "LLMLLaVANextImageEvaluator", - "LLMLLaVANextModelLoader", - "LLMMarkdownComposer", - "LLMMarkdownReader", - "LLMMarkdownRepair", - "LLMMboxReader", - "LLMMultiModalImageEvaluation", - "LLMNotionReader", - "LLMOpenAIModel", - "LLMOpenAIModelOpts", - "LLMPDFReader", - "LLMPagedCSVReader", - "LLMPandasCSVReader", - "LLMParquetDatasetSearcher", - "LLMPostProcessDocuments", - "LLMPptxReader", - "LLMPyMuPDFReader", - "LLMQueryEngine", - "LLMQueryEngineAdv", - "LLMQueryEngineAsTool", - "LLMRTFReader", - "LLMRegexCreator", - "LLMRegexRepair", - "LLMRssReaderNode", - "LLMSaltWebCrawler", - "LLMScaleSERPSearch", - "LLMSemanticSplitterNodeParser", - "LLMSentenceSplitterNodeCreator", - "LLMServiceContextAdv", - "LLMServiceContextDefault", - "LLMSimpleWebPageReader", - "LLMSimpleWebPageReaderAdv", - "LLMSummaryIndex", - "LLMTavilyResearch", - "LLMTrafilaturaWebReader", - "LLMTrafilaturaWebReaderAdv", - "LLMTreeIndex", - "LLMUnstructuredReader", - "LLMVectorStoreIndex", - "LLMVectorStoreIndexAdv", - "LLMVideoAudioReader", - "LLMXMLReader", - "LLMYamlComposer", - "LLMYamlRepair", - "SaltJSONQueryEngine", - "SendMessage", - "SimpleChat" - ], - { - "title_aux": "SaltAI_LlamaIndex" + "title_aux": "SaltAI_Language_Toolkit" } ], "https://github.com/giriss/comfy-image-saver": [ @@ -10020,6 +10820,44 @@ "title_aux": "Save Image with Generation Metadata" } ], + "https://github.com/gisu/comfyui-foxpack": [ + [ + "Add_To_List", + "BaseSamplerSetup", + "Big_Prompter", + "Change_Entries_In_A_List", + "Change_Entry_From_List", + "CheckpointMetaExtractor", + "CheckpointSelector", + "Complete_Setup", + "Convert_Into", + "Negate_Boolean", + "Optional_Value_Override", + "OverrideSamplerSetup", + "Override_Value_If_Unset", + "Pick_Value_From_Dict", + "Pick_Values_From_List", + "Refine_Prompt", + "Refine_Setup", + "Remap_Values", + "Remove_Values_From_List", + "Select_By_Index", + "Select_Line_By_Index", + "Select_String_By_Index", + "SetupSelector", + "Show_Type", + "Split_Entry_In_2Chunks", + "Split_Entry_In_4Chunks", + "Split_Entry_In_6Chunks", + "Split_Entry_In_8Chunks", + "Step_Denoise", + "UniversalLatentHelper", + "Universal_VAE_Loader" + ], + { + "title_aux": "foxpack" + } + ], "https://github.com/githubYiheng/ComfyUI_Change_IMAGE_BOREDER": [ [ "ChangeImageBorder" @@ -10099,6 +10937,23 @@ "title_aux": "Load Image From Base64 URI" } ], + "https://github.com/glowcone/comfyui-string-converter": [ + [ + "StringToFloat", + "StringToInt" + ], + { + "title_aux": "String Converter" + } + ], + "https://github.com/goburiin/nsfwrecog-comfyui": [ + [ + "NSFWDetectorNode" + ], + { + "title_aux": "nsfwrecog-comfyui" + } + ], "https://github.com/godspede/ComfyUI_Substring": [ [ "SubstringTheory" @@ -10201,14 +11056,15 @@ "Griptape Agent Config: Amazon Bedrock", "Griptape Agent Config: Anthropic", "Griptape Agent Config: Azure OpenAI", + "Griptape Agent Config: Custom Structure", + "Griptape Agent Config: Environment Variables", "Griptape Agent Config: Google", "Griptape Agent Config: HuggingFace", "Griptape Agent Config: LM Studio", "Griptape Agent Config: Ollama", "Griptape Agent Config: OpenAI", - "Griptape Agent Config: OpenAI Compatable", - "Griptape Audio Driver: ElevenLabs", - "Griptape Audio Driver: OpenAI", + "Griptape Agent Config: OpenAI Compatible", + "Griptape Audio Transcription Driver: OpenAI", "Griptape Combine: Merge Inputs", "Griptape Combine: Merge Texts", "Griptape Combine: Rules List", @@ -10218,6 +11074,7 @@ "Griptape Convert: Text to CLIP Encode", "Griptape Convert: Text to Combo", "Griptape Create: Agent", + "Griptape Create: Agent from Config", "Griptape Create: CLIP Text Encode", "Griptape Create: Image Variation", "Griptape Create: Image from Text", @@ -10230,15 +11087,38 @@ "Griptape Display: Text", "Griptape Driver: Amazon Bedrock Stable Diffusion", "Griptape Driver: Amazon Bedrock Titan", - "Griptape Driver: DuckDuckGo WebSearch", - "Griptape Driver: Google WebSearch", + "Griptape Driver: Azure OpenAI Image Generation", "Griptape Driver: Leonardo.AI", "Griptape Driver: OpenAI Image Generation", + "Griptape Embedding Driver: Amazon Bedrock Titan", + "Griptape Embedding Driver: Amazon SageMaker Jumpstart", + "Griptape Embedding Driver: Azure OpenAI", + "Griptape Embedding Driver: Cohere", + "Griptape Embedding Driver: Google", + "Griptape Embedding Driver: HuggingFace", + "Griptape Embedding Driver: Ollama", + "Griptape Embedding Driver: OpenAI", + "Griptape Embedding Driver: OpenAI Compatible", + "Griptape Embedding Driver: Voyage AI", "Griptape Expand: Agent Nodes", "Griptape Load: Audio", "Griptape Load: Image From URL", + "Griptape Load: Text", "Griptape Pipeline: Add Task", "Griptape Pipeline: Insert Task", + "Griptape Prompt Driver: Amazon Bedrock", + "Griptape Prompt Driver: Amazon SageMaker Jumpstart", + "Griptape Prompt Driver: Anthropic", + "Griptape Prompt Driver: Azure OpenAI", + "Griptape Prompt Driver: Cohere", + "Griptape Prompt Driver: Google", + "Griptape Prompt Driver: HuggingFace", + "Griptape Prompt Driver: LM Studio", + "Griptape Prompt Driver: Ollama", + "Griptape Prompt Driver: OpenAI", + "Griptape Prompt Driver: OpenAI Compatible", + "Griptape Replace: Rulesets on Agent", + "Griptape Replace: Tools on Agent", "Griptape Run: Agent", "Griptape Run: Audio Transcription", "Griptape Run: Image Description", @@ -10249,15 +11129,34 @@ "Griptape Run: Text to Speech", "Griptape Run: Tool Task", "Griptape Run: Toolkit Task", + "Griptape Save: Text", "Griptape Set: Default Agent", + "Griptape Text To Speech Driver: ElevenLabs", + "Griptape Text To Speech Driver: OpenAI", "Griptape Tool: Audio Transcription", "Griptape Tool: Calculator", "Griptape Tool: DateTime", "Griptape Tool: FileManager", "Griptape Tool: Griptape Cloud KnowledgeBase", "Griptape Tool: Text to Speech", + "Griptape Tool: VectorStore", "Griptape Tool: WebScraper", - "Griptape Tool: WebSearch" + "Griptape Tool: WebSearch", + "Griptape Vector Store Driver: Amazon OpenSearch", + "Griptape Vector Store Driver: Azure MongoDB", + "Griptape Vector Store Driver: Griptape Cloud KnowledgeBase", + "Griptape Vector Store Driver: Local", + "Griptape Vector Store Driver: Marqo", + "Griptape Vector Store Driver: MongoDB Atlas", + "Griptape Vector Store Driver: PGVector", + "Griptape Vector Store Driver: Pinecone", + "Griptape Vector Store Driver: Qdrant", + "Griptape Vector Store Driver: Redis", + "Griptape Vector Store: Add Text", + "Griptape Vector Store: Query", + "Griptape WebSearch Driver: DuckDuckGo", + "Griptape WebSearch Driver: Google", + "Gt Run Agent" ], { "author": "Jason Schleifer", @@ -10394,11 +11293,22 @@ "https://github.com/heshengtao/comfyui_LLM_party": [ [ "About_us", + "AmapRegeoTool", + "AmapWeatherTool", "CLIPTextEncode_party", "ChatTTS_Node", "CosyVoice", "Dingding", "Dingding_tool", + "FeishuDownloadAudio", + "FeishuDownloadImage", + "FeishuGetHistory", + "FeishuSendMsg", + "FileOnlineDelete_gitee", + "FileOnlineStorage_gitee", + "FilePathExists", + "GeocodeTool", + "Images2Image", "KG_csv_toolkit_developer", "KG_csv_toolkit_user", "KG_json_toolkit_developer", @@ -10411,13 +11321,16 @@ "LLM_local", "LLM_local_loader", "LLavaLoader", + "URL2IMG", "VAEDecode_party", "accuweather_tool", + "advance_ebd_tool", "api_function", "api_tool", "arxiv_tool", "bing_loader", "bing_tool", + "bool_logic", "check_web_tool", "classify_function", "classify_function_plus", @@ -10425,19 +11338,30 @@ "classify_persona_plus", "clear_model", "custom_persona", + "discord_bot", + "discord_file_monitor", + "discord_send", + "duckduckgo_loader", + "duckduckgo_tool", "ebd_tool", + "embeddings_function", "end_dialog", "end_workflow", + "extra_parameters", "feishu", "feishu_tool", "file_combine", "file_combine_plus", + "flux_persona", "get_string", "github_tool", "google_loader", "google_tool", "image_iterator", + "img2path", + "interpreter_function", "interpreter_tool", + "json2text", "json_get_value", "json_parser", "keyword_tool", @@ -10446,26 +11370,32 @@ "list_extend", "list_extend_plus", "listen_audio", - "llama_guff_loader", - "load_embeddings", + "load_ebd", "load_excel", "load_file", "load_file_folder", + "load_img_path", + "load_int", "load_keyword", "load_name", + "load_openai_ebd", "load_persona", "load_url", "load_wikipedia", "new_interpreter_tool", + "none2false", "omost_decode", + "omost_json2py", "omost_setting", + "openai_ebd_tool", "openai_tts", "openai_whisper", "parameter_combine", "parameter_combine_plus", "parameter_function", - "play_audio", "replace_string", + "save_ebd_database", + "save_openai_ebd", "show_text_party", "start_dialog", "start_workflow", @@ -10473,6 +11403,7 @@ "string_logic", "substring", "text2json", + "text2parameters", "text_iterator", "time_tool", "tool_combine", @@ -10731,6 +11662,7 @@ ], "https://github.com/iemesowum/ComfyUI_IsaacNodes": [ [ + "I_AmplitudeToWeights", "I_BinaryAmplitudeGate", "I_UnmixAudio", "I_WeightsListToWeights" @@ -10973,6 +11905,8 @@ "CM_NumberToInt JK", "CM_NumberUnaryCondition JK", "CM_NumberUnaryOperation JK", + "CM_PromptCombine_JK", + "CM_StringBinaryCondition_JK", "CM_Vec2BinaryCondition JK", "CM_Vec2BinaryOperation JK", "CM_Vec2FloatOperation_JK", @@ -11014,6 +11948,7 @@ "CR Obit Pose Input Switch JK", "CR Orbit Pose Input Switch JK", "CR Pipe Input Switch JK", + "CR Ply Input Switch JK", "CR SD1.5 Aspect Ratio JK", "CR SDXL Aspect Ratio JK", "CR Switch Model and CLIP JK", @@ -11137,6 +12072,8 @@ "JWImageLevels", "JWImageLoadRGB", "JWImageLoadRGBA", + "JWImageLoadRGBA From Clipboard", + "JWImageLoadRGBFromClipboard", "JWImageLoadRGBIfExists", "JWImageMix", "JWImageResize", @@ -11211,9 +12148,9 @@ [ "FacelessFaceRestore", "FacelessFaceSwap", - "FacelessLoadFrames", "FacelessLoadImageUrl", "FacelessLoadVideo", + "FacelessLoadVideoImages", "FacelessLoadVideoUrl", "FacelessMergeVideos", "FacelessRemoveBackground", @@ -11275,9 +12212,152 @@ "title_aux": "ULTools for ComfyUI" } ], + "https://github.com/jn-jairo/jn_comfyui": [ + [ + "JN_AreaAround", + "JN_AreaInfo", + "JN_AreaNormalize", + "JN_AreaToMask", + "JN_AreaWidthHeight", + "JN_AreaXY", + "JN_AudioArrayToBatch", + "JN_AudioAutoTune", + "JN_AudioBatchToArray", + "JN_AudioCompare", + "JN_AudioConcatenation", + "JN_AudioGetChannels", + "JN_AudioInfo", + "JN_AudioNoiseReduction", + "JN_AudioNormalize", + "JN_AudioPitch", + "JN_AudioPlot", + "JN_AudioReverberation", + "JN_AudioSampleRate", + "JN_AudioSetChannels", + "JN_AudioSlice", + "JN_AudioSpeed", + "JN_AudioStackChannels", + "JN_AudioTempo", + "JN_AudioTrimSilence", + "JN_AudioVolume", + "JN_Blip", + "JN_BlipLoader", + "JN_BooleanOperation", + "JN_Condition", + "JN_CoolDown", + "JN_CoolDownOutput", + "JN_DatetimeFormat", + "JN_DatetimeInfo", + "JN_DatetimeNow", + "JN_Dump", + "JN_DumpOutput", + "JN_Exec", + "JN_ExecOutput", + "JN_FaceCrop", + "JN_FaceRestoreModelLoader", + "JN_FaceRestoreWithModel", + "JN_FirstActive", + "JN_Flow", + "JN_FlowOutput", + "JN_ImageAddBackground", + "JN_ImageAddMask", + "JN_ImageBatch", + "JN_ImageCenterArea", + "JN_ImageCrop", + "JN_ImageGrid", + "JN_ImageInfo", + "JN_ImageRemoveBackground", + "JN_ImageSharpness", + "JN_ImageSquare", + "JN_ImageToMask", + "JN_ImageUncrop", + "JN_KSampler", + "JN_KSamplerAdvancedParams", + "JN_KSamplerFaceRestoreParams", + "JN_KSamplerResizeInputParams", + "JN_KSamplerResizeMaskAreaParams", + "JN_KSamplerResizeOutputParams", + "JN_KSamplerSeamlessParams", + "JN_KSamplerTileParams", + "JN_KeyValue", + "JN_LoadAudioDirectory", + "JN_LoadImageDirectory", + "JN_LogicOperation", + "JN_MaskBatch", + "JN_MaskInfo", + "JN_MaskToArea", + "JN_MaskToImage", + "JN_MathOperation", + "JN_MathOperationArray", + "JN_MeowLoadVoice", + "JN_MeowSaveVoice", + "JN_MeowSentenceSplit", + "JN_MeowTts", + "JN_MeowTtsAudioToContext", + "JN_MeowTtsCoarse", + "JN_MeowTtsDecode", + "JN_MeowTtsFine", + "JN_MeowTtsLoadContext", + "JN_MeowTtsModel", + "JN_MeowTtsModelCoarse", + "JN_MeowTtsModelEncodec", + "JN_MeowTtsModelFine", + "JN_MeowTtsModelHubert", + "JN_MeowTtsModelSemantic", + "JN_MeowTtsSaveContext", + "JN_MeowTtsSemantic", + "JN_MeowTtsTokenizerHubert", + "JN_MeowVc", + "JN_MeowVcConvertVoice", + "JN_MeowVcEncodeSource", + "JN_MeowVcEncodeTarget", + "JN_MeowVcLoadSpeaker", + "JN_MeowVcModelFreeVC", + "JN_MeowVcModelWavLM", + "JN_MeowVcSaveSpeaker", + "JN_PreviewAudio", + "JN_PreviewImage", + "JN_PreviewMask", + "JN_PrimitiveArrayInfo", + "JN_PrimitiveBatchToArray", + "JN_PrimitiveBoolean", + "JN_PrimitiveFloat", + "JN_PrimitiveInt", + "JN_PrimitivePrompt", + "JN_PrimitiveString", + "JN_PrimitiveStringMultiline", + "JN_PrimitiveStringToArray", + "JN_PrimitiveToArray", + "JN_PrimitiveToBoolean", + "JN_PrimitiveToFloat", + "JN_PrimitiveToInt", + "JN_PrimitiveToString", + "JN_RemBGSession", + "JN_SaveAudio", + "JN_SaveImage", + "JN_Seamless", + "JN_SeamlessBorder", + "JN_SeamlessBorderCrop", + "JN_SelectItem", + "JN_Sleep", + "JN_SleepOutput", + "JN_SliceOperation", + "JN_StopIf", + "JN_StopIfOutput", + "JN_TensorInfo", + "JN_TextConcatenation", + "JN_TextReplace", + "JN_TimedeltaFormat", + "JN_TimedeltaInfo" + ], + { + "title_aux": "JNComfy" + } + ], "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": [ [ - "InspyrenetRembg" + "InspyrenetRembg", + "InspyrenetRembgAdvanced" ], { "title_aux": "ComfyUI-Inspyrenet-Rembg" @@ -11288,7 +12368,9 @@ "LCMScheduler", "SamplerLCMAlternative", "SamplerLCMCycle", - "SamplerLCMDualNoise" + "SamplerLCMDualNoise", + "SamplerLCMDuoFusion", + "SamplerLCMParallel" ], { "title_aux": "ComfyUI-sampler-lcm-alternative" @@ -11311,6 +12393,14 @@ "title_aux": "ComfyUI-CSV-prompt-builder" } ], + "https://github.com/jstit/comfyui_custom_node_image": [ + [ + "ImageCropCircle" + ], + { + "title_aux": "comfyui_custom_node_image" + } + ], "https://github.com/jtrue/ComfyUI-JaRue": [ [ "Text2Image_jru", @@ -11342,6 +12432,51 @@ "title_aux": "ComfyUI Unique3D" } ], + "https://github.com/justUmen/Bjornulf_custom_nodes": [ + [ + "Bjornulf_CheckBlackImage", + "Bjornulf_ClearVRAM", + "Bjornulf_CombineBackgroundOverlay", + "Bjornulf_CombineTexts", + "Bjornulf_CustomStringType", + "Bjornulf_GrayscaleTransform", + "Bjornulf_GreenScreenToTransparency", + "Bjornulf_LoopAllLines", + "Bjornulf_LoopBasicBatch", + "Bjornulf_LoopCombosSamplersSchedulers", + "Bjornulf_LoopFloat", + "Bjornulf_LoopInteger", + "Bjornulf_LoopSamplers", + "Bjornulf_LoopSchedulers", + "Bjornulf_LoopTexts", + "Bjornulf_RandomLineFromInput", + "Bjornulf_RandomModelClipVae", + "Bjornulf_RandomTexts", + "Bjornulf_RemoveTransparency", + "Bjornulf_ResizeImage", + "Bjornulf_SaveApiImage", + "Bjornulf_SaveBjornulfLobeChat", + "Bjornulf_SaveImagePath", + "Bjornulf_SaveImageToFolder", + "Bjornulf_SaveText", + "Bjornulf_SaveTmpImage", + "Bjornulf_ShowFloat", + "Bjornulf_ShowInt", + "Bjornulf_ShowText", + "Bjornulf_TextToStringAndSeed", + "Bjornulf_VideoPingPong", + "Bjornulf_WriteImageAllInOne", + "Bjornulf_WriteImageCharacter", + "Bjornulf_WriteImageCharacters", + "Bjornulf_WriteImageEnvironment", + "Bjornulf_WriteText", + "Bjornulf_imagesToVideo", + "Bjornulf_ollamaLoader" + ], + { + "title_aux": "Bjornulf_custom_nodes" + } + ], "https://github.com/ka-puna/comfyui-yanc": [ [ "YANC.ConcatStrings", @@ -11509,6 +12644,16 @@ "title_aux": "ComfyUI-text-file-util" } ], + "https://github.com/kappa54m/ComfyUI_Usability": [ + [ + "KLoadImageByPath", + "KLoadImageByPathAdvanced", + "KLoadImageDedup" + ], + { + "title_aux": "ComfyUI Usability" + } + ], "https://github.com/katalist-ai/comfyUI-nsfw-detection": [ [ "NudenetDetector" @@ -11622,6 +12767,19 @@ "title_aux": "ComfyUI-CCSR" } ], + "https://github.com/kijai/ComfyUI-ControlNeXt-SVD": [ + [ + "ControlNextDecode", + "ControlNextDiffusersScheduler", + "ControlNextGetPoses", + "ControlNextSVDApply", + "ControlNextSampler", + "DownloadAndLoadControlNeXt" + ], + { + "title_aux": "ComfyUI nodes for ControlNext-SVD v2" + } + ], "https://github.com/kijai/ComfyUI-DDColor": [ [ "DDColor_Colorize" @@ -11681,7 +12839,9 @@ ], "https://github.com/kijai/ComfyUI-Florence2": [ [ + "DownloadAndLoadFlorence2Lora", "DownloadAndLoadFlorence2Model", + "Florence2ModelLoader", "Florence2Run" ], { @@ -11750,7 +12910,7 @@ "CustomSigmas", "DownloadAndLoadCLIPSeg", "DrawInstanceDiffusionTracking", - "DummyLatentOut", + "DummyOut", "EmptyLatentImagePresets", "FilterZeroMasksAndCorrespondingImages", "FlipSigmasAdjusted", @@ -11802,6 +12962,7 @@ "OffsetMask", "OffsetMaskByNormalizedAmplitude", "PlotCoordinates", + "PointsEditor", "PreviewAnimation", "RemapImageRange", "RemapMaskRange", @@ -11812,6 +12973,7 @@ "SV3D_BatchSchedule", "SaveImageWithAlpha", "ScaleBatchPromptSchedule", + "Screencap_mss", "Sleep", "SomethingToString", "SoundReactive", @@ -11824,6 +12986,7 @@ "StringConstantMultiline", "Superprompt", "VRAM_Debug", + "WebcamCaptureCV2", "WeightScheduleConvert", "WeightScheduleExtend", "WidgetToString" @@ -11858,7 +13021,15 @@ "https://github.com/kijai/ComfyUI-LivePortraitKJ": [ [ "DownloadAndLoadLivePortraitModels", - "LivePortraitProcess" + "KeypointScaler", + "KeypointsToImage", + "LivePortraitComposite", + "LivePortraitCropper", + "LivePortraitLoadCropper", + "LivePortraitLoadFaceAlignmentCropper", + "LivePortraitLoadMediaPipeCropper", + "LivePortraitProcess", + "LivePortraitRetargeting" ], { "title_aux": "ComfyUI-LivePortraitKJ" @@ -11953,6 +13124,19 @@ "title_aux": "ComfyUI-moondream" } ], + "https://github.com/kijai/ComfyUI-segment-anything-2": [ + [ + "DownloadAndLoadSAM2Model", + "Florence2toCoordinates", + "Sam2AutoSegmentation", + "Sam2Segmentation", + "Sam2VideoSegmentation", + "Sam2VideoSegmentationAddPoints" + ], + { + "title_aux": "ComfyUI-segment-anything-2" + } + ], "https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink": [ [ "GradientPatchModelAddDownscale", @@ -11990,6 +13174,7 @@ "SingleString", "SizeSelector", "YellowBus", + "YellowBusV2", "concat" ], { @@ -12184,13 +13369,59 @@ "title_aux": "LNL Frame Selector" } ], + "https://github.com/leeguandong/ComfyUI_InternVL2": [ + [ + "DynamicPreprocess", + "InternVLHFInference", + "InternVLLMDEPLOYInference", + "InternVLModelLoader" + ], + { + "title_aux": "ComfyUI_InternVL2" + } + ], + "https://github.com/leeguandong/ComfyUI_LLaSM": [ + [ + "LLaSM2Interface", + "LLaSM2ModelLoader", + "LLaSMLoadAudio" + ], + { + "title_aux": "ComfyUI_LLaSM" + } + ], + "https://github.com/leeguandong/ComfyUI_M3Net": [ + [ + "M3Net_Interface", + "M3Net_ModelLoader" + ], + { + "title_aux": "ComfyUI_M3Net" + } + ], + "https://github.com/leeguandong/ComfyUI_VideoEditing": [ + [ + "LoadVideo2Images", + "VEdit_ControlNet_ModelLoader", + "VEdit_ModelLoader", + "VEdit_Sampler", + "VEdit_image2canny" + ], + { + "title_aux": "ComfyUI nodes to use VideoEditing" + } + ], "https://github.com/leestuartx/ComfyUI-GG": [ [ "AddPaddingToImage", + "ForLoopNode", "ImageMetadataExtractor", + "InputNode", "MetadataExtractBySeed", "MetadataExtractorBySeed", - "ResizeImageProportionally" + "OutputNode", + "ResizeImageProportionally", + "WorkspaceNode" ], { "title_aux": "ComfyUI-GG" @@ -12211,6 +13442,14 @@ "title_aux": "ComfyUI-TRA" } ], + "https://github.com/lenskikh/ComfyUI-Prompt-Worker": [ + [ + "Prompt Worker" + ], + { + "title_aux": "Propmt Worker" + } + ], "https://github.com/leoleelxh/ComfyUI-LLMs": [ [ "\ud83d\uddbc\ufe0f LLMs_Vison_Ali", @@ -12223,6 +13462,14 @@ "title_aux": "ComfyUI-LLMs" } ], + "https://github.com/liangt/comfyui-loadimagewithsubfolder": [ + [ + "LoadImageWithSubfolder" + ], + { + "title_aux": "comfyui-loadimagewithsubfolder" + } + ], "https://github.com/linshier/comfyui-remote-tools": [ [ "LoadBase64(js)", @@ -12413,6 +13660,29 @@ "title_aux": "ComfyUI-RefSampling" } ], + "https://github.com/logtd/ComfyUI-RefUNet": [ + [ + "ConfigRefMapAdv", + "ConfigureRefNet", + "CreateRefBank", + "CustomRefMapSD1", + "PrepareRefLatents", + "ReadSampler", + "RefModelSamplingPred", + "WriteSampler" + ], + { + "title_aux": "ComfyUI-RefUNet" + } + ], + "https://github.com/logtd/ComfyUI-SEGAttention": [ + [ + "SEGAttention" + ], + { + "title_aux": "ComfyUI-SEGAttention" + } + ], "https://github.com/logtd/ComfyUI-TrackingNodes": [ [ "OpenPoseTrackerNode", @@ -12488,23 +13758,6 @@ "title_aux": "comfyui-mask-util" } ], - "https://github.com/longgui0318/comfyui-oms-diffusion": [ - [ - "Add Magic Clothing Attention", - "Change Pipeline Dtype And Device", - "Change Pixel Value Normalization", - "Diffusers Model Makeup &MC", - "Diffusers Scheduler Loader &MC", - "Load Magic Clothing Adapter", - "Load Magic Clothing Model", - "Load Magic Clothing Pipeline", - "Load Magic Clothing Pipeline With Path", - "RUN Magic Clothing Diffusers Model" - ], - { - "title_aux": "comfyui-oms-diffusion" - } - ], "https://github.com/lordgasmic/ComfyUI-Wildcards/raw/master/wildcards.py": [ [ "CLIPTextEncodeWithWildcards" @@ -12561,7 +13814,8 @@ ], "https://github.com/lrzjason/Comfyui-Kolors-Utils": [ [ - "Save Weight As Kolors Unet" + "SaveKolors", + "SaveWeightAsKolorsUnet" ], { "title_aux": "Comfyui Kolors Utils" @@ -12627,6 +13881,7 @@ "ImpactDilate_Mask_SEG_ELT", "ImpactDummyInput", "ImpactEdit_SEG_ELT", + "ImpactExecutionOrderController", "ImpactFloat", "ImpactFrom_SEG_ELT", "ImpactFrom_SEG_ELT_bbox", @@ -12651,6 +13906,7 @@ "ImpactMakeTileSEGS", "ImpactMinMax", "ImpactNeg", + "ImpactNegativeConditioningPlaceholder", "ImpactNodeSetMuteState", "ImpactQueueTrigger", "ImpactQueueTriggerCountdown", @@ -12971,9 +14227,13 @@ "https://github.com/matan1905/ComfyUI-Serving-Toolkit": [ [ "DiscordServing", + "ServingInputImage", + "ServingInputImageAsLatent", "ServingInputNumber", "ServingInputText", + "ServingMultiImageOutput", "ServingOutput", + "ServingTextOutput", "WebSocketServing" ], { @@ -13026,7 +14286,7 @@ "DynamicThresholdingSimple" ], { - "title_aux": "Stable Diffusion Dynamic Thresholding (CFG Scale Fix)" + "title_aux": "Dynamic Thresholding" } ], "https://github.com/meap158/ComfyUI-Background-Replacement": [ @@ -13272,16 +14532,6 @@ "title_aux": "ComfyUI - Mask Bounding Box" } ], - "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq": [ - [ - "INSPY removebg Apply", - "INSPY removebg ModelLoader", - "INSPY removebg ModelLoaderFromPath" - ], - { - "title_aux": "ComfyUI_InSPyResNet_zmq" - } - ], "https://github.com/mirabarukaso/ComfyUI_Mira": [ [ "BooleanListInterpreter1", @@ -13295,6 +14545,7 @@ "CreateCircleMask", "CreateMaskWithCanvas", "CreateNestedPNGMask", + "CreatePolygonPNGMask", "CreateSimpleMask", "CreateTillingPNGMask", "CreateWatermarkRemovalMask", @@ -13334,6 +14585,8 @@ "TextBox", "TextCombinerSix", "TextCombinerTwo", + "TextSwitcherThreeWays", + "TextSwitcherTwoWays", "TextWithBooleanSwitchAndCommonTextInput", "TwoBooleanTrigger", "TwoFloats" @@ -13342,6 +14595,24 @@ "title_aux": "ComfyUI_Mira" } ], + "https://github.com/misterjoessef/MLTask_ComfyUI": [ + [ + "FacebookPosterData", + "InstagramPosterData", + "LinkedinPosterData", + "MLTaskUtilsTextImageGenerator", + "PinterestPosterData", + "SocialManMediaToPoster", + "SocialManPostData", + "SocialManPoster", + "TiktokPosterData", + "TwitterPosterData", + "YoutubePosterData" + ], + { + "title_aux": "MLTask_ComfyUI" + } + ], "https://github.com/modusCell/ComfyUI-dimension-node-modusCell": [ [ "DimensionProviderFree modusCell", @@ -13453,6 +14724,26 @@ "title_aux": "ComfyUI-NegiTools" } ], + "https://github.com/neverbiasu/ComfyUI-Image-Captioner": [ + [ + "ImageCaptioner" + ], + { + "title_aux": "ComfyUI-Image-Captioner" + } + ], + "https://github.com/neverbiasu/ComfyUI-SAM2": [ + [ + "GroundingDinoModelLoader (segment anything)", + "GroundingDinoSAMSegment (segment anything)", + "InvertMask (segment anything)", + "IsMaskEmpty", + "SAM2ModelLoader (segment anything)" + ], + { + "title_aux": "ComfyUI SAM2(Segment Anything 2)" + } + ], "https://github.com/nickve28/ComfyUI-Nich-Utils": [ [ "Image from Dir Selector (Nich)", @@ -13525,8 +14816,11 @@ "PromptUtilitiesJoinStringList", "PromptUtilitiesLoadPreset", "PromptUtilitiesLoadPresetAdvanced", + "PromptUtilitiesPromptWeight", "PromptUtilitiesRandomPreset", - "PromptUtilitiesRandomPresetAdvanced" + "PromptUtilitiesRandomPresetAdvanced", + "PromptUtilitiesReplaceOrInsertTag", + "PromptUtilitiesRoundPromptWeight" ], { "title_aux": "ComfyUI-PromptUtilities" @@ -13569,6 +14863,15 @@ "title_aux": "ComfyUI-TextOnSegs" } ], + "https://github.com/noarche/sd-webui-color-enhance": [ + [ + "MMakerColorBlend", + "MMakerColorEnhance" + ], + { + "title_aux": "noarche/Color Enhance" + } + ], "https://github.com/noembryo/ComfyUI-noEmbryo": [ [ "PromptTermList1", @@ -13669,6 +14972,14 @@ "title_aux": "BrushNet" } ], + "https://github.com/okgo4/ComfyUI-Mosaic-Mask": [ + [ + "MosaicMask" + ], + { + "title_aux": "ComfyUI-Mosaic-Mask" + } + ], "https://github.com/olduvai-jp/ComfyUI-HfLoader": [ [ "Lora Loader From HF" @@ -13677,6 +14988,14 @@ "title_aux": "ComfyUI-HfLoader" } ], + "https://github.com/oleksandr612/ComfyUI-Counter": [ + [ + "Simple Counter" + ], + { + "title_aux": "ComfyUI-Counter" + } + ], "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92": [ [ "CLIPStringEncode _O", @@ -13822,6 +15141,7 @@ "https://github.com/pamparamm/ComfyUI-ppm": [ [ "AttentionCouplePPM", + "CFGLimiterGuider", "CFGPPSamplerSelect", "CLIPMicroConditioning", "CLIPNegPip", @@ -13851,6 +15171,7 @@ "https://github.com/pamparamm/sd-perturbed-attention": [ [ "PerturbedAttention", + "SmoothedEnergyGuidanceAdvanced", "TRTAttachPag", "TRTPerturbedAttention" ], @@ -13870,13 +15191,18 @@ "https://github.com/patriciogonzalezvivo/comfyui_glslnodes": [ [ "float", + "glslBuffers", "glslEditor", - "glslEditor (ShaderToy)", + "glslEditorPro", + "glslUniforms", "glslViewer", "int", "vec2", + "vec2 (pos)", "vec3", - "vec4" + "vec3 (pos)", + "vec4", + "vec4 (color)" ], { "author": "Patricio Gonzalez Vivo", @@ -13922,6 +15248,21 @@ "title_aux": "comfy_PoP" } ], + "https://github.com/pikenrover/ComfyUI_PRNodes": [ + [ + "CheckpointLoaderSimpleExtended", + "EmptyLatentImageScaleBy", + "ImageScaleTo", + "LoadRandomImage", + "LoraLoaderExtended", + "RandomPrompt", + "RandomPromptMixed", + "Save Image w/Metadata" + ], + { + "title_aux": "ComfyUI_PRNodes" + } + ], "https://github.com/pkpkTech/ComfyUI-SaveAVIF": [ [ "SaveAvif" @@ -13944,6 +15285,7 @@ [ "BMAB Alpha Composit", "BMAB Basic", + "BMAB Black And White", "BMAB Blend", "BMAB Clip Text Encoder SDXL", "BMAB Conditioning To Bind", @@ -13959,6 +15301,7 @@ "BMAB Edge", "BMAB Extractor", "BMAB Face Detailer", + "BMAB Flux Integrator", "BMAB Google Gemini Prompt", "BMAB Import Integrator", "BMAB Integrator", @@ -13977,6 +15320,7 @@ "BMAB Person Detailer", "BMAB Preview Text", "BMAB Prompt", + "BMAB Remote Access And Save", "BMAB Remove Background", "BMAB Resize By Person", "BMAB Resize By Ratio", @@ -13991,11 +15335,13 @@ "BMAB SeedGenerator", "BMAB Segment Anything", "BMAB Simple Hand Detailer", + "BMAB Square", "BMAB Subframe Hand Detailer", "BMAB Text", "BMAB Upscale With Model", "BMAB Upscaler", - "BMAB Watermark" + "BMAB Watermark", + "BMAB Zoom Out" ], { "title_aux": "comfyui_bmab" @@ -14376,6 +15722,31 @@ "title_aux": "Runtime44 ComfyUI Nodes" } ], + "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside": [ + [ + "AudioControlledMaskMorph", + "EmitterMovement", + "GravityWell", + "MaskMath", + "MaskMorph", + "MaskRings", + "MaskTransform", + "MaskWarp", + "MovingShape", + "OpticalFlowDirectionMask", + "OpticalFlowMaskModulation", + "OpticalFlowParticleSystem", + "ParticleEmissionMask", + "ParticleEmitter", + "PulsatingParticleSystemMask", + "TextMaskNode", + "Vortex", + "_mfc" + ], + { + "title_aux": "ComfyUI_RyanOnTheInside" + } + ], "https://github.com/s1dlx/comfy_meh/raw/main/meh.py": [ [ "MergingExecutionHelper" @@ -14389,6 +15760,7 @@ "ControlNet Selector", "ControlNetOptionalLoader", "DiffusersSelector", + "MultiInputVariableRewrite", "SaveImageJPGNoMeta" ], { @@ -14472,6 +15844,9 @@ ], "https://github.com/shadowcz007/comfyui-liveportrait": [ [ + "ExpressionEditor_", + "ExpressionVideo2VideoNode", + "ExpressionVideoNode", "FaceCropInfo", "LivePortraitNode", "LivePortraitVideoNode", @@ -14493,6 +15868,7 @@ "Color", "ComparingTwoFrames_", "CompositeImages_", + "DepthViewer", "DynamicDelayProcessor", "EmbeddingPrompt", "EnhanceImage", @@ -14507,6 +15883,7 @@ "GridDisplayAndSave", "GridInput", "GridOutput", + "ImageBatchToList_", "ImageColorTransfer", "ImageCropByAlpha", "ImageListToBatch_", @@ -14514,6 +15891,7 @@ "IncrementingListNode_", "IntNumber", "JoinWithDelimiter", + "KeyInput", "LimitNumber", "ListSplit_", "LoadImagesFromPath", @@ -14529,6 +15907,7 @@ "NewLayer", "NoiseImage", "OutlineMask", + "P5Input", "PreviewMask_", "PromptImage", "PromptSimplification", @@ -14574,6 +15953,20 @@ "title_aux": "comfyui-sound-lab" } ], + "https://github.com/shadowcz007/comfyui-try-on": [ + [ + "CatVTONNode", + "FashionClothMask", + "FashionClothMask2" + ], + { + "author": "chflame", + "description": "CatVTON warpper for ComfyUI", + "nickname": "CatVTON_Wrapper", + "title": "CatVTON_Wrapper", + "title_aux": "comfyui-try-on" + } + ], "https://github.com/shadowcz007/comfyui-ultralytics-yolo": [ [ "DetectByLabel" @@ -14598,6 +15991,8 @@ "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus": [ [ "PhotoMakerEncodePlus", + "PhotoMakerInsightFaceLoader", + "PhotoMakerLoaderPlus", "PhotoMakerStyles", "PrepImagesForClipVisionFromPath" ], @@ -14616,6 +16011,14 @@ "title_aux": "Tiled Diffusion & VAE for ComfyUI" } ], + "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance": [ + [ + "SemanticAwareGuidance" + ], + { + "title_aux": "Semantic-aware Guidance (S-CFG)" + } + ], "https://github.com/shiimizu/ComfyUI_smZNodes": [ [ "smZ CLIPTextEncode", @@ -14642,6 +16045,18 @@ "title_aux": "ComfyUI-send-Eagle(slim)" } ], + "https://github.com/shinich39/comfyui-load-image-with-cmd": [ + [ + "LoadImageWithCMD" + ], + { + "author": "shinich39", + "description": "Load image and partially workflow with javascript.", + "nickname": "load-image-with-cmd", + "title": "load-image-with-cmd", + "title_aux": "comfyui-load-image-with-cmd" + } + ], "https://github.com/shobhitic/ComfyUI-PlusMinusTextClip": [ [ "PlusMinusTextClip" @@ -14679,6 +16094,7 @@ ], "https://github.com/siliconflow/BizyAir": [ [ + "BizyAirAuraSR", "BizyAirBAE_NormalMapPreprocessor", "BizyAirBinaryPreprocessor", "BizyAirCannyEdgePreprocessor", @@ -14689,10 +16105,7 @@ "BizyAirGenerateLightningImage", "BizyAirHEDPreprocessor", "BizyAirImageCaption", - "BizyAirKolorsSampler", - "BizyAirKolorsTextEncode", - "BizyAirKolorsVAEDecode", - "BizyAirKolorsVAEEncode", + "BizyAirJoyCaption", "BizyAirLeReS_DepthMapPreprocessor", "BizyAirLineArtPreprocessor", "BizyAirM_LSDPreprocessor", @@ -14707,12 +16120,12 @@ "BizyAirRemoveBackground", "BizyAirSAMPreprocessor", "BizyAirScribblePreprocessor", - "BizyAirSetAPIKey", "BizyAirSiliconCloudLLMAPI", "BizyAirSuperResolution", "BizyAirTilePreprocessor", "BizyAirUniFormer_SemSegPreprocessor", "BizyAirZoe_DepthMapPreprocessor", + "BizyAir_MinusZoneChatGLM3TextEncode", "StableDiffusionXLControlNetUnionPipeline" ], { @@ -14830,6 +16243,14 @@ "title_aux": "kb-comfyui-nodes" } ], + "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API": [ + [ + "SML_FluxPro_Replicate_Standalone" + ], + { + "title_aux": "ComfyUI-Flux-Replicate-API" + } + ], "https://github.com/smthemex/ComfyUI_AnyDoor": [ [ "AnyDoor_LoadModel", @@ -14854,12 +16275,22 @@ ], "https://github.com/smthemex/ComfyUI_CustomNet": [ [ - "CustomNet_Plus" + "CustomNet_LoadModel", + "CustomNet_Sampler" ], { "title_aux": "ComfyUI_CustomNet" } ], + "https://github.com/smthemex/ComfyUI_Diffree": [ + [ + "Diffree_Model_Loader", + "Diffree_Sampler" + ], + { + "title_aux": "ComfyUI_Diffree" + } + ], "https://github.com/smthemex/ComfyUI_EchoMimic": [ [ "Echo_LoadModel", @@ -14869,6 +16300,15 @@ "title_aux": "ComfyUI_EchoMimic" } ], + "https://github.com/smthemex/ComfyUI_FoleyCrafter": [ + [ + "FoleyCrafter_LoadModel", + "FoleyCrafter_Sampler" + ], + { + "title_aux": "ComfyUI_FoleyCrafter" + } + ], "https://github.com/smthemex/ComfyUI_FollowYourEmoji": [ [ "Emoji_Make_Temple", @@ -14910,7 +16350,7 @@ ], "https://github.com/smthemex/ComfyUI_MS_Diffusion": [ [ - "MS_Comic_Type", + "MS_Object_img_Batch", "MSdiffusion_Model_Loader", "MSdiffusion_Sampler" ], @@ -14918,9 +16358,19 @@ "title_aux": "ComfyUI_MS_Diffusion" } ], + "https://github.com/smthemex/ComfyUI_MooER": [ + [ + "MooER_LoadModel", + "MooER_Sampler" + ], + { + "title_aux": "ComfyUI_MooER" + } + ], "https://github.com/smthemex/ComfyUI_ParlerTTS": [ [ - "PromptToAudio" + "ParlerTTS_LoadModel", + "ParlerTTS_Sampler" ], { "title_aux": "ComfyUI_ParlerTTS" @@ -14928,7 +16378,8 @@ ], "https://github.com/smthemex/ComfyUI_Pic2Story": [ [ - "Pic2Story" + "Pic2Story_Loader", + "Pic2Story_Sampler" ], { "title_aux": "ComfyUI_Pic2Story" @@ -14944,9 +16395,8 @@ ], "https://github.com/smthemex/ComfyUI_Pops": [ [ - "Imgae_To_Path", - "Pops_Prior_Embedding", - "Pops_Repo_Choice", + "Pops_Decoder", + "Pops_Repo_Loader", "Pops_Sampler" ], { @@ -14955,8 +16405,8 @@ ], "https://github.com/smthemex/ComfyUI_StableAudio_Open": [ [ - "StableAudio_Open", - "Use_LocalModel_Or_Repo" + "StableAudio_ModelLoader", + "StableAudio_Sampler" ], { "title_aux": "ComfyUI_StableAudio_Open" @@ -14985,6 +16435,7 @@ ], "https://github.com/smthemex/ComfyUI_Streamv2v_Plus": [ [ + "Stream_Lora_Loader", "Stream_Model_Loader", "Stream_Sampler" ], @@ -15084,7 +16535,9 @@ "BlurMaskFast", "ClampOutliers", "ColorMatchImage", + "ConditioningSubtract", "ConvertNormals", + "CustomNoise", "DepthToNormals", "DifferenceChecker", "DilateErodeMask", @@ -15103,6 +16556,7 @@ "LatentNormalizeShuffle", "LatentStats", "MedianFilterImage", + "ModelTest", "NormalMapSimple", "OffsetLatentImage", "PrintSigmas", @@ -15222,6 +16676,8 @@ [ "OllamaGenerate", "OllamaGenerateAdvance", + "OllamaLoadContext", + "OllamaSaveContext", "OllamaVision" ], { @@ -15308,6 +16764,51 @@ "title_aux": "comfyui_lumaAPI" } ], + "https://github.com/syaofox/ComfyUI_FoxTools": [ + [ + "FoxBatchImageFromList", + "FoxColorMatch", + "FoxCreateBlurBord", + "FoxCreateFaceMask", + "FoxFaceAlign", + "FoxFaceAlignCacul", + "FoxFaceAlignSimple", + "FoxFaceAnalysisModels", + "FoxFaceBoundingBox", + "FoxFaceEmbedDistance", + "FoxFaceOcclusionModelLoader", + "FoxFaceSegmentation", + "FoxFaceShaper", + "FoxFaceShaperModels", + "FoxFaceWarp", + "FoxGenSwapPathText", + "FoxGrowMaskWithBlur", + "FoxImageAdd", + "FoxImageConcanate", + "FoxImageExtractFromBatch", + "FoxImageResizeBySpecialSide", + "FoxImageRotate", + "FoxImageTileBatch", + "FoxLoadImageBatch", + "FoxLoadImageList", + "FoxMaskAddMask", + "FoxMaskAndMask", + "FoxMaskSubMask", + "FoxPreviewMask", + "FoxPrimitiveText", + "FoxRegTextFind", + "FoxSDXLPromptStyler", + "FoxSDXLPromptStylerAdvanced", + "FoxSaveImagePlus", + "FoxShowText", + "FoxTextConcatenate", + "FoxTrimBlackBoard", + "FoxcleanGPUUsed" + ], + { + "title_aux": "ComfyUI_FoxTools" + } + ], "https://github.com/syllebra/bilbox-comfyui": [ [ "BilboXLut", @@ -15563,6 +17064,7 @@ "https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes": [ [ "CaptureWebcam", + "Direct Screen Capture", "ImageResize_Padding", "LatentDelay", "LoadWebcamImage", @@ -15766,17 +17268,32 @@ [ "ChannelSelector", "DownloadAndLoadFlorence2Model", + "FetchFromRedis", "FetchJsonFromSurreal", "Florence2Run", "ForegroundMask", "MaskImage", + "SaveImageToS3", "SaveJsonToSurreal", - "SaveTextToSurreal" + "SaveTextToSurreal", + "SaveToRedis" ], { "title_aux": "comfyui-tensorop" } ], + "https://github.com/un-seen/comfyui_segment_anything_plus": [ + [ + "GroundingDinoModelLoader (segment anything plus)", + "GroundingDinoSAMSegment (segment anything plus)", + "InvertMask (segment anything plus)", + "IsMaskEmpty (segment anything plus)", + "SAMModelLoader (segment anything plus)" + ], + { + "title_aux": "ComfyUI Segment Anything" + } + ], "https://github.com/unwdef/unwdef-nodes-comfyui": [ [ "RandomTextFromMultiline", @@ -15817,6 +17334,22 @@ "title_aux": "Simple Wildcard" } ], + "https://github.com/var1ableX/ComfyUI_Accessories": [ + [ + "GetMaskDimensions" + ], + { + "title_aux": "ComfyUI_Accessories" + } + ], + "https://github.com/vault-developer/comfyui-image-blender": [ + [ + "ImageBlender" + ], + { + "title_aux": "ImageBlender" + } + ], "https://github.com/veighnsche/comfyui_gr85": [ [ "GR85_ContainsWord", @@ -15932,6 +17465,8 @@ ], "https://github.com/wTechArtist/ComfyUI-CustomNodes": [ [ + "GPT4 WWL", + "IPAdapter FaceID With Bool", "IPAdapter Mad Scientist Weight_Type", "Image Blending Mode Mask", "Load Image With Bool" @@ -15995,6 +17530,14 @@ "title_aux": "ComfyUI Invisible Watermark" } ], + "https://github.com/webfiltered/DebugNode-ComfyUI": [ + [ + "WTFDebugNode" + ], + { + "title_aux": "WTF? - a debug node for ComfyUI" + } + ], "https://github.com/whatbirdisthat/cyberdolphin": [ [ "\ud83d\udc2c Gradio ChatInterface", @@ -16219,7 +17762,8 @@ "https://github.com/ycchanau/ComfyUI_Preview_Magnifier": [ [ "YC.ImageComparerMagnifier", - "YC.PreviewImageMagnifier" + "YC.PreviewImageMagnifier", + "YC.XYPreviewImageMagnifier" ], { "title_aux": "ComfyUI Preview Magnifier" @@ -16234,16 +17778,29 @@ "title_aux": "comfyui_auto_danbooru" } ], - "https://github.com/yiwangsimple/ComfyUI_GroqChat": [ + "https://github.com/yiwangsimple/ComfyUI_DW_Chat": [ [ + "DeepSeekChatNode", + "DeepSeekTranslator", + "ErrorLogNode", + "ExecutionTime", "FileBasedChatNode", + "Gemma2PromptNode", + "GemmaDialogueNode", + "GithubLinkNode", "GroqChatNode", "MoonshotMultiChatNode", "MoonshotSingleChatNode", - "SD3LongCaptionerV2" + "OllamaImageToText", + "OllamaPromptExtractor", + "OllamaTextToText", + "PromptExtractorNode", + "SD3LongCaptionerV2", + "SDPromptAgent", + "dwimage2" ], { - "title_aux": "comfy-groqchat" + "title_aux": "ComfyUI_DW_Chat" } ], "https://github.com/yolain/ComfyUI-Easy-Use": [ @@ -16289,6 +17846,7 @@ "easy detailerFix", "easy dynamiCrafterLoader", "easy float", + "easy fluxLoader", "easy fullCascadeKSampler", "easy fullLoader", "easy fullkSampler", @@ -16333,6 +17891,7 @@ "easy ipadapterApplyADV", "easy ipadapterApplyEmbeds", "easy ipadapterApplyEncoder", + "easy ipadapterApplyFaceIDKolors", "easy ipadapterApplyFromParams", "easy ipadapterApplyRegional", "easy ipadapterStyleComposition", @@ -16352,6 +17911,7 @@ "easy negative", "easy pipeBatchIndex", "easy pipeEdit", + "easy pipeEditPrompt", "easy pipeIn", "easy pipeOut", "easy pipeToBasicPipe", @@ -16499,6 +18059,22 @@ "title_aux": "tdxh_node_comfyui" } ], + "https://github.com/yuan199696/add_text_2_img": [ + [ + "AddText" + ], + { + "title_aux": "add_text_2_img" + } + ], + "https://github.com/yuan199696/chinese_clip_encode": [ + [ + "ChineseCLIPEncode" + ], + { + "title_aux": "chinese_clip_encode" + } + ], "https://github.com/yuvraj108c/ComfyUI-Depth-Anything-Tensorrt": [ [ "DepthAnythingTensorrt" @@ -16507,6 +18083,14 @@ "title_aux": "ComfyUI Depth Anything TensorRT" } ], + "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt": [ + [ + "DwposeTensorrt" + ], + { + "title_aux": "ComfyUI Dwpose TensorRT" + } + ], "https://github.com/yuvraj108c/ComfyUI-PiperTTS": [ [ "PiperTTS" @@ -16615,6 +18199,7 @@ "https://github.com/zeroxoxo/ComfyUI-Fast-Style-Transfer": [ [ "FastStyleTransfer", + "NeuralStyleTransfer", "TrainFastStyleTransfer" ], { @@ -16650,11 +18235,14 @@ "LoadImageWithoutListDir", "MaskAutoSelector", "MaskFastGrow", + "MatchImageRatioToPreset", "ModifyTextGender", - "SplitMask" + "SplitMask", + "TextPreview", + "UpscaleImageWithModelIfNeed" ], { - "title_aux": "zhangp365/Some Utils for ComfyUI" + "title_aux": "zhangp365/ComfyUI-utils-nodes" } ], "https://github.com/zhongpei/ComfyUI-InstructIR": [ @@ -16703,6 +18291,7 @@ "https://github.com/zhulu111/ComfyUI_Bxb": [ [ "sdBxb", + "sdBxb_saveImage", "sdBxb_textInput" ], { diff --git a/git_helper.py b/git_helper.py index 38dd24f7..85ad9dbc 100644 --- a/git_helper.py +++ b/git_helper.py @@ -8,10 +8,34 @@ import configparser import re import json import yaml -from torchvision.datasets.utils import download_url +import requests from tqdm.auto import tqdm from git.remote import RemoteProgress + +def download_url(url, dest_folder, filename=None): + # Ensure the destination folder exists + if not os.path.exists(dest_folder): + os.makedirs(dest_folder) + + # Extract filename from URL if not provided + if filename is None: + filename = os.path.basename(url) + + # Full path to save the file + dest_path = os.path.join(dest_folder, filename) + + # Download the file + response = requests.get(url, stream=True) + if response.status_code == 200: + with open(dest_path, 'wb') as file: + for chunk in response.iter_content(chunk_size=1024): + if chunk: + file.write(chunk) + else: + print(f"Failed to download file from {url}") + + config_path = os.path.join(os.path.dirname(__file__), "config.ini") nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json") working_directory = os.getcwd() diff --git a/github-stats.json b/github-stats.json index f329d62c..b34abe92 100644 --- a/github-stats.json +++ b/github-stats.json @@ -1,5472 +1,6087 @@ { "hhttps://github.com/AIFSH/DiffMorpher-ComfyUI": { - "stars": 8, + "stars": 13, "last_update": "2024-07-17 01:24:59", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/0xbitches/ComfyUI-LCM": { - "stars": 248, + "stars": 249, "last_update": "2023-11-11 21:24:33", - "author_account_age_days": 558 + "author_account_age_days": 583 }, "https://github.com/1038lab/ComfyUI-GPT2P": { - "stars": 3, - "last_update": "2024-07-20 20:26:25", - "author_account_age_days": 479 - }, - "https://github.com/1038lab/ComfyUI_LatentSizeSelector": { - "stars": 1, - "last_update": "2024-07-20 20:27:35", - "author_account_age_days": 479 + "stars": 4, + "last_update": "2024-08-08 19:04:38", + "author_account_age_days": 504 }, "https://github.com/11cafe/comfyui-workspace-manager": { - "stars": 870, - "last_update": "2024-07-10 03:28:00", - "author_account_age_days": 232 + "stars": 939, + "last_update": "2024-08-14 05:11:52", + "author_account_age_days": 256 }, "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant": { - "stars": 26, - "last_update": "2024-07-09 14:44:29", - "author_account_age_days": 152 + "stars": 29, + "last_update": "2024-08-02 05:24:19", + "author_account_age_days": 177 }, "https://github.com/11dogzi/Comfyui-ergouzi-Nodes": { - "stars": 25, + "stars": 32, "last_update": "2024-05-23 00:08:39", - "author_account_age_days": 152 + "author_account_age_days": 177 + }, + "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan": { + "stars": 22, + "last_update": "2024-08-10 04:06:57", + "author_account_age_days": 177 }, "https://github.com/11dogzi/Comfyui-ergouzi-samplers": { - "stars": 21, + "stars": 23, "last_update": "2024-06-28 05:28:05", - "author_account_age_days": 152 + "author_account_age_days": 177 }, "https://github.com/1mckw/Comfyui-Gelbooru": { - "stars": 2, - "last_update": "2024-05-27 07:45:00", - "author_account_age_days": 717 + "stars": 3, + "last_update": "2024-08-08 08:38:19", + "author_account_age_days": 741 }, "https://github.com/2kpr/ComfyUI-UltraPixel": { - "stars": 162, - "last_update": "2024-07-19 07:27:28", - "author_account_age_days": 946 + "stars": 207, + "last_update": "2024-07-27 14:52:10", + "author_account_age_days": 970 }, "https://github.com/42lux/ComfyUI-safety-checker": { - "stars": 23, + "stars": 24, "last_update": "2024-05-22 22:11:59", - "author_account_age_days": 3726 + "author_account_age_days": 3750 }, "https://github.com/438443467/ComfyUI-GPT4V-Image-Captioner": { - "stars": 20, + "stars": 21, "last_update": "2024-06-13 05:51:56", - "author_account_age_days": 441 + "author_account_age_days": 465 }, "https://github.com/54rt1n/ComfyUI-DareMerge": { - "stars": 51, - "last_update": "2024-07-09 16:29:23", - "author_account_age_days": 4078 + "stars": 57, + "last_update": "2024-08-01 15:28:19", + "author_account_age_days": 4102 }, "https://github.com/807502278/ComfyUI-3D-MeshTool": { - "stars": 1, - "last_update": "2024-07-13 02:12:18", - "author_account_age_days": 2040 + "stars": 6, + "last_update": "2024-08-12 05:17:05", + "author_account_age_days": 2064 }, "https://github.com/80sVectorz/ComfyUI-Static-Primitives": { - "stars": 10, - "last_update": "2024-05-23 11:20:57", - "author_account_age_days": 1498 + "stars": 11, + "last_update": "2024-08-07 11:21:06", + "author_account_age_days": 1522 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-AutoColorGimp": { "stars": 0, "last_update": "2024-05-23 00:26:10", - "author_account_age_days": 500 + "author_account_age_days": 524 }, "https://github.com/A4P7J1N7M05OT/ComfyUI-PixelOE": { "stars": 7, "last_update": "2024-06-02 14:57:59", - "author_account_age_days": 500 + "author_account_age_days": 524 }, "https://github.com/AARG-FAN/Image-Raster-for-ComfyUI": { - "stars": 75, + "stars": 82, "last_update": "2024-06-23 14:56:16", - "author_account_age_days": 526 + "author_account_age_days": 550 }, "https://github.com/AI2lab/comfyUI-DeepSeek-2lab": { - "stars": 3, - "last_update": "2024-07-03 04:07:46", - "author_account_age_days": 219 + "stars": 4, + "last_update": "2024-08-01 15:14:01", + "author_account_age_days": 244 }, "https://github.com/AI2lab/comfyUI-siliconflow-api-2lab": { - "stars": 3, - "last_update": "2024-06-29 18:08:21", - "author_account_age_days": 219 + "stars": 4, + "last_update": "2024-08-01 15:13:33", + "author_account_age_days": 244 }, "https://github.com/AI2lab/comfyUI-tool-2lab": { - "stars": 11, - "last_update": "2024-07-18 16:48:34", - "author_account_age_days": 219 + "stars": 14, + "last_update": "2024-08-14 01:23:44", + "author_account_age_days": 244 + }, + "https://github.com/AIFSH/AniTalker-ComfyUI": { + "stars": 3, + "last_update": "2024-08-06 03:08:44", + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-3d-photo-inpainting": { "stars": 7, "last_update": "2024-06-19 13:59:49", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-AuraSR": { - "stars": 17, + "stars": 24, "last_update": "2024-06-27 14:00:16", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-DiffSynth-Studio": { - "stars": 41, - "last_update": "2024-07-02 13:01:42", - "author_account_age_days": 258 + "stars": 53, + "last_update": "2024-08-05 08:48:03", + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-FishSpeech": { - "stars": 9, + "stars": 12, "last_update": "2024-05-23 01:18:49", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-GPT_SoVITS": { - "stars": 167, - "last_update": "2024-06-14 07:05:01", - "author_account_age_days": 258 + "stars": 174, + "last_update": "2024-08-09 22:00:45", + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-Hallo": { - "stars": 235, + "stars": 244, "last_update": "2024-06-24 06:43:23", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-I2V-Adapter": { - "stars": 7, + "stars": 20, "last_update": "2024-07-02 01:59:49", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-IP_LAP": { - "stars": 24, + "stars": 26, "last_update": "2024-06-14 07:05:39", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-Live2DViewer": { - "stars": 2, + "stars": 4, "last_update": "2024-06-14 07:04:49", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-MARS5-TTS": { - "stars": 21, + "stars": 24, "last_update": "2024-07-02 02:00:28", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-MimicBrush": { - "stars": 74, + "stars": 86, "last_update": "2024-06-17 22:26:53", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-MimicMotion": { - "stars": 266, - "last_update": "2024-07-15 08:11:48", - "author_account_age_days": 258 + "stars": 289, + "last_update": "2024-08-06 06:21:16", + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-MuseTalk_FSH": { - "stars": 10, + "stars": 12, "last_update": "2024-06-14 07:05:19", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-RVC": { - "stars": 10, + "stars": 12, "last_update": "2024-06-14 07:05:25", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-UVR5": { - "stars": 65, + "stars": 70, "last_update": "2024-06-20 07:31:20", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-UniAnimate": { - "stars": 27, + "stars": 28, "last_update": "2024-06-30 09:20:25", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-WhisperX": { - "stars": 24, + "stars": 25, "last_update": "2024-06-14 07:05:31", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-XTTS": { - "stars": 31, + "stars": 36, "last_update": "2024-06-24 09:45:59", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI_V-Express": { - "stars": 76, + "stars": 79, "last_update": "2024-06-23 09:54:57", - "author_account_age_days": 258 + "author_account_age_days": 283 }, "https://github.com/AIFSH/CosyVoice-ComfyUI": { - "stars": 43, - "last_update": "2024-07-19 07:33:42", - "author_account_age_days": 258 + "stars": 96, + "last_update": "2024-07-29 10:43:12", + "author_account_age_days": 283 + }, + "https://github.com/AIFSH/DHLive-ComfyUI": { + "stars": 5, + "last_update": "2024-08-10 07:21:48", + "author_account_age_days": 283 }, "https://github.com/AIFSH/DiffMorpher-ComfyUI": { - "stars": 8, + "stars": 13, "last_update": "2024-07-17 01:24:59", - "author_account_age_days": 258 + "author_account_age_days": 283 + }, + "https://github.com/AIFSH/GSTTS-ComfyUI": { + "stars": 9, + "last_update": "2024-08-14 08:13:30", + "author_account_age_days": 283 }, "https://github.com/AIFSH/SenseVoice-ComfyUI": { - "stars": 6, + "stars": 10, "last_update": "2024-07-16 06:41:25", - "author_account_age_days": 258 + "author_account_age_days": 283 + }, + "https://github.com/AIFSH/StyleShot-ComfyUI": { + "stars": 3, + "last_update": "2024-07-25 14:05:20", + "author_account_age_days": 283 }, "https://github.com/AIFSH/VocalSeparation-ComfyUI": { - "stars": 1, - "last_update": "2024-07-18 11:59:48", - "author_account_age_days": 258 + "stars": 3, + "last_update": "2024-08-10 08:04:43", + "author_account_age_days": 283 }, "https://github.com/AIGCTeam/ComfyUI_kkTranslator_nodes": { "stars": 5, "last_update": "2024-05-23 00:13:50", - "author_account_age_days": 237 + "author_account_age_days": 261 }, "https://github.com/AIGODLIKE/AIGODLIKE-COMFYUI-TRANSLATION": { - "stars": 1087, - "last_update": "2024-07-11 02:57:36", - "author_account_age_days": 528 + "stars": 1205, + "last_update": "2024-08-09 08:15:29", + "author_account_age_days": 552 }, "https://github.com/AIGODLIKE/AIGODLIKE-ComfyUI-Studio": { - "stars": 215, + "stars": 222, "last_update": "2024-06-05 00:52:46", - "author_account_age_days": 528 + "author_account_age_days": 552 }, "https://github.com/AIGODLIKE/ComfyUI-CUP": { - "stars": 8, + "stars": 12, "last_update": "2024-06-21 03:43:20", - "author_account_age_days": 528 + "author_account_age_days": 552 }, "https://github.com/AIGODLIKE/ComfyUI-ToonCrafter": { - "stars": 271, + "stars": 292, "last_update": "2024-07-17 02:28:49", - "author_account_age_days": 528 + "author_account_age_days": 552 }, "https://github.com/AInseven/ComfyUI-fastblend": { - "stars": 142, + "stars": 154, "last_update": "2024-06-14 07:13:21", - "author_account_age_days": 1710 + "author_account_age_days": 1734 }, "https://github.com/AIrjen/OneButtonPrompt": { - "stars": 771, - "last_update": "2024-07-09 17:44:12", - "author_account_age_days": 470 + "stars": 795, + "last_update": "2024-08-13 06:52:17", + "author_account_age_days": 494 }, "https://github.com/ALatentPlace/ComfyUI_yanc": { - "stars": 25, - "last_update": "2024-06-30 10:04:17", - "author_account_age_days": 1487 + "stars": 31, + "last_update": "2024-07-26 12:47:44", + "author_account_age_days": 1511 }, "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string": { - "stars": 1, - "last_update": "2024-07-16 09:38:13", - "author_account_age_days": 2504 + "stars": 4, + "last_update": "2024-07-29 10:54:17", + "author_account_age_days": 2528 }, "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen": { - "stars": 1, + "stars": 2, "last_update": "2024-07-17 03:55:26", - "author_account_age_days": 1553 + "author_account_age_days": 1577 }, "https://github.com/AbdullahAlfaraj/Comfy-Photoshop-SD": { - "stars": 193, + "stars": 205, "last_update": "2024-06-14 07:04:37", - "author_account_age_days": 3695 + "author_account_age_days": 3719 }, "https://github.com/AbyssYuan0/ComfyUI_BadgerTools": { - "stars": 7, - "last_update": "2024-07-16 10:53:03", - "author_account_age_days": 516 + "stars": 8, + "last_update": "2024-07-30 10:13:30", + "author_account_age_days": 541 }, "https://github.com/Acly/comfyui-inpaint-nodes": { - "stars": 500, - "last_update": "2024-07-02 10:02:46", - "author_account_age_days": 3832 + "stars": 555, + "last_update": "2024-08-09 08:13:17", + "author_account_age_days": 3856 }, "https://github.com/Acly/comfyui-tooling-nodes": { - "stars": 222, - "last_update": "2024-07-21 18:48:01", - "author_account_age_days": 3832 + "stars": 238, + "last_update": "2024-08-09 17:12:44", + "author_account_age_days": 3856 }, "https://github.com/AiMiDi/ComfyUI-Aimidi-nodes": { "stars": 0, "last_update": "2024-06-20 17:26:02", - "author_account_age_days": 1303 + "author_account_age_days": 1327 }, "https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet": { - "stars": 714, - "last_update": "2024-07-21 12:10:50", - "author_account_age_days": 2727 + "stars": 758, + "last_update": "2024-08-09 13:57:55", + "author_account_age_days": 2751 }, "https://github.com/Alysondao/Comfyui-Yolov8-JSON": { - "stars": 14, - "last_update": "2024-07-10 09:37:54", - "author_account_age_days": 1057 + "stars": 17, + "last_update": "2024-08-08 04:40:12", + "author_account_age_days": 1081 }, "https://github.com/Amorano/Jovimetrix": { - "stars": 187, - "last_update": "2024-07-20 20:05:11", - "author_account_age_days": 5239 + "stars": 204, + "last_update": "2024-08-13 22:22:28", + "author_account_age_days": 5263 + }, + "https://github.com/Anibaaal/ComfyUI-UX-Nodes": { + "stars": 1, + "last_update": "2024-08-06 00:29:10", + "author_account_age_days": 3428 }, "https://github.com/AonekoSS/ComfyUI-LoRA-Tuner": { - "stars": 5, - "last_update": "2024-07-05 13:48:56", - "author_account_age_days": 4119 + "stars": 6, + "last_update": "2024-08-12 11:45:52", + "author_account_age_days": 4143 }, "https://github.com/AonekoSS/ComfyUI-SimpleCounter": { - "stars": 1, - "last_update": "2024-07-05 13:46:19", - "author_account_age_days": 4119 + "stars": 2, + "last_update": "2024-08-01 15:13:56", + "author_account_age_days": 4143 }, "https://github.com/ArcherFMY/Diffusion360_ComfyUI": { - "stars": 18, + "stars": 24, "last_update": "2024-05-28 03:14:17", - "author_account_age_days": 3416 + "author_account_age_days": 3441 }, "https://github.com/ArdeniusAI/CPlus_Ardenius": { "stars": 0, "last_update": "2024-06-14 07:13:26", - "author_account_age_days": 154 + "author_account_age_days": 178 }, "https://github.com/ArtBot2023/CharacterFaceSwap": { - "stars": 58, + "stars": 62, "last_update": "2024-05-22 20:53:09", - "author_account_age_days": 320 + "author_account_age_days": 345 }, "https://github.com/ArtVentureX/comfyui-animatediff": { - "stars": 651, + "stars": 661, "last_update": "2024-05-22 18:16:43", - "author_account_age_days": 432 + "author_account_age_days": 457 }, "https://github.com/AshMartian/ComfyUI-DirGir": { - "stars": 12, + "stars": 13, "last_update": "2024-05-29 22:28:55", - "author_account_age_days": 4613 + "author_account_age_days": 4638 }, "https://github.com/AuroBit/ComfyUI-AnimateAnyone-reproduction": { "stars": 35, "last_update": "2024-06-14 09:03:24", - "author_account_age_days": 417 + "author_account_age_days": 441 }, "https://github.com/AuroBit/ComfyUI-OOTDiffusion": { - "stars": 365, + "stars": 374, "last_update": "2024-07-12 03:49:27", - "author_account_age_days": 417 + "author_account_age_days": 441 }, "https://github.com/AustinMroz/ComfyUI-DynamicOversampling": { "stars": 0, "last_update": "2024-06-14 07:06:51", - "author_account_age_days": 4101 + "author_account_age_days": 4126 }, "https://github.com/AustinMroz/ComfyUI-SpliceTools": { "stars": 7, "last_update": "2024-06-14 07:07:21", - "author_account_age_days": 4101 + "author_account_age_days": 4126 }, "https://github.com/AustinMroz/ComfyUI-WorkflowCheckpointing": { "stars": 7, - "last_update": "2024-07-19 19:23:48", - "author_account_age_days": 4101 + "last_update": "2024-08-01 18:38:01", + "author_account_age_days": 4126 }, "https://github.com/Auttasak-L/ComfyUI-ImageCropper": { "stars": 1, "last_update": "2024-05-23 05:04:53", - "author_account_age_days": 2676 + "author_account_age_days": 2700 }, "https://github.com/BAIS1C/ComfyUI_RSS_Feed_Reader": { - "stars": 2, - "last_update": "2024-06-20 03:42:00", - "author_account_age_days": 516 + "stars": 3, + "last_update": "2024-08-09 01:38:45", + "author_account_age_days": 541 }, "https://github.com/BXYMartin/ComfyUI-InstantIDUtils": { "stars": 3, "last_update": "2024-05-23 00:08:50", - "author_account_age_days": 2470 + "author_account_age_days": 2494 }, "https://github.com/BadCafeCode/masquerade-nodes-comfyui": { - "stars": 325, + "stars": 334, "last_update": "2024-06-19 04:16:54", - "author_account_age_days": 457 + "author_account_age_days": 482 }, "https://github.com/Beinsezii/bsz-cui-extras": { "stars": 21, "last_update": "2024-05-22 20:46:45", - "author_account_age_days": 2253 + "author_account_age_days": 2277 }, "https://github.com/BenNarum/ComfyUI_CAS": { "stars": 1, "last_update": "2024-07-13 12:00:40", - "author_account_age_days": 3099 + "author_account_age_days": 3124 }, "https://github.com/BenNarum/SigmaWaveFormNode": { "stars": 5, "last_update": "2024-06-20 15:20:35", - "author_account_age_days": 3099 + "author_account_age_days": 3124 }, "https://github.com/BennyKok/comfyui-deploy": { - "stars": 738, - "last_update": "2024-07-20 07:16:42", - "author_account_age_days": 3023 + "stars": 839, + "last_update": "2024-08-14 18:10:01", + "author_account_age_days": 3047 }, "https://github.com/BetaDoggo/ComfyUI-VideoPlayer": { - "stars": 0, - "last_update": "2024-07-21 20:15:58", - "author_account_age_days": 825 + "stars": 17, + "last_update": "2024-08-05 04:45:12", + "author_account_age_days": 849 + }, + "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes": { + "stars": 2, + "last_update": "2024-08-01 07:59:10", + "author_account_age_days": 849 }, "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker": { "stars": 3, "last_update": "2024-07-19 18:11:11", - "author_account_age_days": 825 + "author_account_age_days": 849 }, "https://github.com/Big-Idea-Technology/ComfyUI-Book-Tools": { - "stars": 17, - "last_update": "2024-06-21 10:21:10", - "author_account_age_days": 899 + "stars": 19, + "last_update": "2024-08-01 08:01:37", + "author_account_age_days": 923 }, "https://github.com/Big-Idea-Technology/ComfyUI_LLM_Node": { - "stars": 51, - "last_update": "2024-06-21 10:13:50", - "author_account_age_days": 899 + "stars": 53, + "last_update": "2024-08-01 08:01:48", + "author_account_age_days": 923 }, "https://github.com/Billius-AI/ComfyUI-Path-Helper": { - "stars": 15, + "stars": 17, "last_update": "2024-05-22 23:25:08", - "author_account_age_days": 162 + "author_account_age_days": 186 }, "https://github.com/BlakeOne/ComfyUI-CustomScheduler": { "stars": 11, "last_update": "2024-05-23 00:23:56", - "author_account_age_days": 2560 + "author_account_age_days": 2584 }, "https://github.com/BlakeOne/ComfyUI-NodePresets": { "stars": 11, "last_update": "2024-05-23 00:24:07", - "author_account_age_days": 2560 + "author_account_age_days": 2584 }, "https://github.com/BlakeOne/ComfyUI-NodeReset": { "stars": 2, "last_update": "2024-05-23 00:24:18", - "author_account_age_days": 2560 + "author_account_age_days": 2584 }, "https://github.com/BlakeOne/ComfyUI-SchedulerMixer": { "stars": 10, "last_update": "2024-05-23 00:23:44", - "author_account_age_days": 2560 + "author_account_age_days": 2584 }, "https://github.com/BlenderNeko/ComfyUI_ADV_CLIP_emb": { - "stars": 280, - "last_update": "2024-05-22 14:56:13", - "author_account_age_days": 505 + "stars": 290, + "last_update": "2024-08-07 15:13:31", + "author_account_age_days": 529 }, "https://github.com/BlenderNeko/ComfyUI_Cutoff": { - "stars": 347, + "stars": 352, "last_update": "2024-05-22 15:01:45", - "author_account_age_days": 505 + "author_account_age_days": 529 }, "https://github.com/BlenderNeko/ComfyUI_Noise": { - "stars": 222, + "stars": 231, "last_update": "2024-06-10 16:38:48", - "author_account_age_days": 505 + "author_account_age_days": 529 }, "https://github.com/BlenderNeko/ComfyUI_SeeCoder": { "stars": 35, "last_update": "2024-05-22 14:57:04", - "author_account_age_days": 505 + "author_account_age_days": 529 }, "https://github.com/BlenderNeko/ComfyUI_TiledKSampler": { - "stars": 301, + "stars": 309, "last_update": "2024-05-22 14:56:49", - "author_account_age_days": 505 + "author_account_age_days": 529 }, "https://github.com/CC-BryanOttho/ComfyUI_API_Manager": { - "stars": 13, + "stars": 14, "last_update": "2024-06-14 07:13:34", - "author_account_age_days": 512 + "author_account_age_days": 536 }, "https://github.com/CYBERLOOM-INC/ComfyUI-nodes-hnmr": { "stars": 6, "last_update": "2024-05-22 17:55:41", - "author_account_age_days": 276 + "author_account_age_days": 301 }, "https://github.com/CavinHuang/comfyui-nodes-docs": { - "stars": 84, + "stars": 99, "last_update": "2024-07-04 11:29:55", - "author_account_age_days": 2753 + "author_account_age_days": 2778 }, "https://github.com/Chan-0312/ComfyUI-EasyDeforum": { - "stars": 9, + "stars": 10, "last_update": "2024-05-22 23:22:14", - "author_account_age_days": 1893 + "author_account_age_days": 1918 }, "https://github.com/Chan-0312/ComfyUI-IPAnimate": { - "stars": 66, + "stars": 68, "last_update": "2024-05-22 23:22:03", - "author_account_age_days": 1893 + "author_account_age_days": 1918 }, "https://github.com/Chan-0312/ComfyUI-Prompt-Preview": { - "stars": 19, + "stars": 22, "last_update": "2024-06-14 09:01:37", - "author_account_age_days": 1893 + "author_account_age_days": 1918 }, "https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes": { "stars": 15, "last_update": "2024-04-05 11:14:24", - "author_account_age_days": 1906 + "author_account_age_days": 1930 + }, + "https://github.com/ChrisColeTech/ComfyUI-Line-counter": { + "stars": 0, + "last_update": "2024-08-15 03:39:31", + "author_account_age_days": 2464 }, "https://github.com/Clybius/ComfyUI-Extra-Samplers": { - "stars": 59, - "last_update": "2024-07-19 17:12:19", - "author_account_age_days": 1761 + "stars": 65, + "last_update": "2024-07-21 23:51:55", + "author_account_age_days": 1785 }, "https://github.com/Clybius/ComfyUI-Latent-Modifiers": { "stars": 69, "last_update": "2024-06-14 09:02:44", - "author_account_age_days": 1761 + "author_account_age_days": 1785 }, "https://github.com/CosmicLaca/ComfyUI_Primere_Nodes": { - "stars": 85, - "last_update": "2024-06-29 07:14:23", - "author_account_age_days": 3682 + "stars": 89, + "last_update": "2024-08-01 07:56:27", + "author_account_age_days": 3706 + }, + "https://github.com/Cyber-Blacat/ComfyUI-Yuan": { + "stars": 4, + "last_update": "2024-08-14 04:01:29", + "author_account_age_days": 466 }, "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader": { "stars": 1, - "last_update": "2024-07-16 10:37:43", - "author_account_age_days": 5185 + "last_update": "2024-07-31 13:54:16", + "author_account_age_days": 5209 }, "https://github.com/Danand/ComfyUI-ComfyCouple": { - "stars": 21, - "last_update": "2024-07-16 22:25:25", - "author_account_age_days": 4316 + "stars": 25, + "last_update": "2024-08-10 22:24:01", + "author_account_age_days": 4340 }, "https://github.com/DarKDinDoN/comfyui-checkpoint-automatic-config": { - "stars": 3, - "last_update": "2024-05-26 08:00:23", - "author_account_age_days": 4467 + "stars": 4, + "last_update": "2024-07-31 17:05:17", + "author_account_age_days": 4491 }, "https://github.com/DataCTE/prompt_injection": { - "stars": 70, + "stars": 75, "last_update": "2024-06-21 12:56:43", - "author_account_age_days": 805 + "author_account_age_days": 829 }, "https://github.com/DeJoker/pipeline-parallel-comfy": { - "stars": 1, - "last_update": "2024-07-17 07:36:02", - "author_account_age_days": 3018 + "stars": 2, + "last_update": "2024-07-29 06:59:37", + "author_account_age_days": 3042 }, "https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes": { - "stars": 317, + "stars": 326, "last_update": "2024-06-22 02:12:19", - "author_account_age_days": 1802 + "author_account_age_days": 1826 }, "https://github.com/DigitalIO/ComfyUI-stable-wildcards": { "stars": 19, - "last_update": "2024-05-24 21:15:08", - "author_account_age_days": 4066 + "last_update": "2024-08-12 19:00:17", + "author_account_age_days": 4090 }, "https://github.com/DimaChaichan/LAizypainter-Exporter-ComfyUI": { "stars": 7, "last_update": "2024-05-22 23:14:06", - "author_account_age_days": 3100 + "author_account_age_days": 3124 + }, + "https://github.com/Dobidop/ComfyStereo": { + "stars": 6, + "last_update": "2024-08-06 19:59:34", + "author_account_age_days": 1511 }, "https://github.com/DonBaronFactory/ComfyUI-Cre8it-Nodes": { "stars": 0, "last_update": "2024-05-22 23:24:30", - "author_account_age_days": 3515 + "author_account_age_days": 3539 }, "https://github.com/DrJKL/ComfyUI-Anchors": { "stars": 6, "last_update": "2024-06-20 18:23:00", - "author_account_age_days": 5022 + "author_account_age_days": 5046 }, "https://github.com/DrMWeigand/ComfyUI_ColorImageDetection": { "stars": 2, "last_update": "2024-07-15 13:21:10", - "author_account_age_days": 1059 + "author_account_age_days": 1083 }, "https://github.com/Electrofried/ComfyUI-OpenAINode": { "stars": 19, "last_update": "2024-06-14 09:01:22", - "author_account_age_days": 2647 + "author_account_age_days": 2671 }, "https://github.com/EllangoK/ComfyUI-post-processing-nodes": { - "stars": 149, - "last_update": "2024-05-22 17:54:09", - "author_account_age_days": 2805 + "stars": 158, + "last_update": "2024-08-09 17:20:17", + "author_account_age_days": 2830 + }, + "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer": { + "stars": 11, + "last_update": "2024-07-29 01:21:20", + "author_account_age_days": 21 }, "https://github.com/Excidos/ComfyUI-Documents": { - "stars": 21, + "stars": 27, "last_update": "2024-07-11 20:15:21", - "author_account_age_days": 34 + "author_account_age_days": 58 + }, + "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": { + "stars": 13, + "last_update": "2024-07-30 10:27:07", + "author_account_age_days": 58 }, "https://github.com/ExponentialML/ComfyUI_ModelScopeT2V": { "stars": 26, "last_update": "2024-05-23 00:12:17", - "author_account_age_days": 1651 + "author_account_age_days": 1675 }, "https://github.com/ExponentialML/ComfyUI_Native_DynamiCrafter": { - "stars": 103, + "stars": 106, "last_update": "2024-06-08 02:33:02", - "author_account_age_days": 1651 + "author_account_age_days": 1675 }, "https://github.com/ExponentialML/ComfyUI_VisualStylePrompting": { - "stars": 258, + "stars": 269, "last_update": "2024-05-23 00:12:41", - "author_account_age_days": 1651 + "author_account_age_days": 1675 }, "https://github.com/Extraltodeus/ComfyUI-AutomaticCFG": { - "stars": 292, - "last_update": "2024-07-10 00:27:18", - "author_account_age_days": 3177 + "stars": 317, + "last_update": "2024-08-04 03:11:29", + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/LoadLoraWithTags": { - "stars": 43, + "stars": 45, "last_update": "2024-06-22 21:05:44", - "author_account_age_days": 3177 + "author_account_age_days": 3201 + }, + "https://github.com/Extraltodeus/Skimmed_CFG": { + "stars": 79, + "last_update": "2024-08-06 14:18:19", + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/Stable-Diffusion-temperature-settings": { - "stars": 37, + "stars": 38, "last_update": "2024-07-10 00:27:51", - "author_account_age_days": 3177 + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/Uncond-Zero-for-ComfyUI": { "stars": 42, "last_update": "2024-07-10 00:27:36", - "author_account_age_days": 3177 + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/Vector_Sculptor_ComfyUI": { - "stars": 96, - "last_update": "2024-07-10 00:28:03", - "author_account_age_days": 3177 + "stars": 99, + "last_update": "2024-08-11 20:29:20", + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/noise_latent_perlinpinpin": { - "stars": 24, - "last_update": "2024-06-22 21:05:57", - "author_account_age_days": 3177 + "stars": 30, + "last_update": "2024-08-13 14:19:11", + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI": { - "stars": 8, - "last_update": "2024-07-20 15:41:39", - "author_account_age_days": 3177 + "stars": 14, + "last_update": "2024-08-14 23:44:09", + "author_account_age_days": 3201 }, "https://github.com/Extraltodeus/sigmas_tools_and_the_golden_scheduler": { - "stars": 47, + "stars": 51, "last_update": "2024-06-22 21:05:34", - "author_account_age_days": 3177 + "author_account_age_days": 3201 }, "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation": { - "stars": 367, - "last_update": "2024-07-18 07:49:07", - "author_account_age_days": 3159 + "stars": 398, + "last_update": "2024-08-01 01:00:22", + "author_account_age_days": 3183 }, "https://github.com/Fannovel16/ComfyUI-Loopchain": { "stars": 30, "last_update": "2023-12-15 14:25:35", - "author_account_age_days": 3159 + "author_account_age_days": 3183 }, "https://github.com/Fannovel16/ComfyUI-MagickWand": { - "stars": 78, - "last_update": "2024-06-20 16:23:15", - "author_account_age_days": 3159 + "stars": 81, + "last_update": "2024-08-01 01:00:58", + "author_account_age_days": 3183 }, "https://github.com/Fannovel16/ComfyUI-MotionDiff": { - "stars": 151, - "last_update": "2024-06-20 16:29:32", - "author_account_age_days": 3159 + "stars": 157, + "last_update": "2024-08-01 01:01:53", + "author_account_age_days": 3183 }, "https://github.com/Fannovel16/ComfyUI-Video-Matting": { - "stars": 156, - "last_update": "2024-06-20 16:14:38", - "author_account_age_days": 3159 + "stars": 162, + "last_update": "2024-08-14 01:28:50", + "author_account_age_days": 3183 }, "https://github.com/Fannovel16/comfyui_controlnet_aux": { - "stars": 1720, - "last_update": "2024-07-19 06:52:39", - "author_account_age_days": 3159 + "stars": 1853, + "last_update": "2024-08-14 00:10:05", + "author_account_age_days": 3183 }, "https://github.com/Fantaxico/ComfyUI-GCP-Storage": { "stars": 0, "last_update": "2024-06-14 09:05:52", - "author_account_age_days": 563 + "author_account_age_days": 587 }, "https://github.com/Feidorian/feidorian-ComfyNodes": { "stars": 5, "last_update": "2024-06-20 11:31:37", - "author_account_age_days": 2782 + "author_account_age_days": 2806 }, "https://github.com/Fictiverse/ComfyUI_Fictiverse": { "stars": 7, "last_update": "2024-06-05 19:03:21", - "author_account_age_days": 699 + "author_account_age_days": 723 }, "https://github.com/Fihade/IC-Light-ComfyUI-Node": { "stars": 6, "last_update": "2024-07-02 03:47:17", - "author_account_age_days": 2774 + "author_account_age_days": 2799 }, "https://github.com/FizzleDorf/ComfyUI-AIT": { - "stars": 44, + "stars": 45, "last_update": "2024-06-22 03:13:05", - "author_account_age_days": 2007 + "author_account_age_days": 2031 }, "https://github.com/FizzleDorf/ComfyUI_FizzNodes": { - "stars": 328, - "last_update": "2024-06-27 03:29:51", - "author_account_age_days": 2007 + "stars": 342, + "last_update": "2024-08-03 02:54:56", + "author_account_age_days": 2031 }, "https://github.com/FlyingFireCo/tiled_ksampler": { - "stars": 60, + "stars": 62, "last_update": "2024-05-22 23:15:17", - "author_account_age_days": 659 + "author_account_age_days": 684 }, "https://github.com/ForeignGods/ComfyUI-Mana-Nodes": { - "stars": 187, + "stars": 193, "last_update": "2024-05-29 18:29:05", - "author_account_age_days": 1271 + "author_account_age_days": 1295 + }, + "https://github.com/Franck-Demongin/NX_HuggingFace_Flux": { + "stars": 1, + "last_update": "2024-08-14 02:17:21", + "author_account_age_days": 1822 }, "https://github.com/Franck-Demongin/NX_PromptStyler": { "stars": 5, "last_update": "2024-05-22 23:25:21", - "author_account_age_days": 1798 + "author_account_age_days": 1822 + }, + "https://github.com/Franck-Demongin/NX_Translator": { + "stars": 1, + "last_update": "2024-08-14 02:17:01", + "author_account_age_days": 1822 }, "https://github.com/FredBill1/comfyui-fb-utils": { - "stars": 0, + "stars": 1, "last_update": "2024-05-23 01:41:02", - "author_account_age_days": 2344 + "author_account_age_days": 2368 }, "https://github.com/Fucci-Mateo/ComfyUI-Airtable": { "stars": 0, "last_update": "2024-06-25 13:35:18", - "author_account_age_days": 906 + "author_account_age_days": 930 + }, + "https://github.com/FuouM/ComfyUI-EbSynth": { + "stars": 53, + "last_update": "2024-07-31 14:02:22", + "author_account_age_days": 1733 }, "https://github.com/FuouM/ComfyUI-FirstOrderMM": { - "stars": 2, - "last_update": "2024-07-17 10:37:29", - "author_account_age_days": 1708 + "stars": 5, + "last_update": "2024-08-11 03:31:19", + "author_account_age_days": 1733 + }, + "https://github.com/FuouM/ComfyUI-StyleTransferPlus": { + "stars": 4, + "last_update": "2024-08-14 15:42:37", + "author_account_age_days": 1733 + }, + "https://github.com/FuouM/FM_nodes": { + "stars": 5, + "last_update": "2024-08-12 04:49:06", + "author_account_age_days": 1733 }, "https://github.com/G-370/ComfyUI-SD3-Powerlab": { - "stars": 18, + "stars": 19, "last_update": "2024-06-22 19:17:18", - "author_account_age_days": 1546 + "author_account_age_days": 1571 }, "https://github.com/GMapeSplat/ComfyUI_ezXY": { "stars": 24, "last_update": "2024-05-29 17:43:08", - "author_account_age_days": 1325 + "author_account_age_days": 1349 }, "https://github.com/GTSuya-Studio/ComfyUI-Gtsuya-Nodes": { "stars": 7, "last_update": "2024-05-22 21:31:52", - "author_account_age_days": 2583 + "author_account_age_days": 2608 }, "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes": { "stars": 11, - "last_update": "2024-06-19 11:01:41", - "author_account_age_days": 4595 + "last_update": "2024-07-31 13:51:25", + "author_account_age_days": 4619 + }, + "https://github.com/GeekyGhost/ComfyUI-GeekyRemB": { + "stars": 27, + "last_update": "2024-08-12 20:37:38", + "author_account_age_days": 721 }, "https://github.com/GentlemanHu/ComfyUI-SunoAI": { - "stars": 10, - "last_update": "2024-06-14 06:02:29", - "author_account_age_days": 2410 + "stars": 14, + "last_update": "2024-08-03 04:14:44", + "author_account_age_days": 2435 }, "https://github.com/Goktug/comfyui-saveimage-plus": { - "stars": 3, - "last_update": "2024-06-20 07:23:48", - "author_account_age_days": 4959 + "stars": 4, + "last_update": "2024-08-14 00:07:38", + "author_account_age_days": 4983 }, "https://github.com/Gourieff/comfyui-reactor-node": { - "stars": 1171, - "last_update": "2024-07-13 00:06:56", - "author_account_age_days": 1147 + "stars": 1264, + "last_update": "2024-08-07 09:25:47", + "author_account_age_days": 1171 }, "https://github.com/GraftingRayman/ComfyUI_GraftingRayman": { - "stars": 25, - "last_update": "2024-07-15 12:34:12", - "author_account_age_days": 190 + "stars": 45, + "last_update": "2024-07-23 08:57:27", + "author_account_age_days": 214 }, "https://github.com/Grant-CP/ComfyUI-LivePortraitKJ-MPS": { "stars": 11, "last_update": "2024-07-11 22:04:16", - "author_account_age_days": 1201 + "author_account_age_days": 1225 }, "https://github.com/GreenLandisaLie/AuraSR-ComfyUI": { - "stars": 80, - "last_update": "2024-07-04 00:07:10", - "author_account_age_days": 1224 + "stars": 117, + "last_update": "2024-08-02 01:51:51", + "author_account_age_days": 1249 }, "https://github.com/Guillaume-Fgt/ComfyUI_StableCascadeLatentRatio": { "stars": 3, "last_update": "2024-06-14 08:59:42", - "author_account_age_days": 1507 + "author_account_age_days": 1531 }, "https://github.com/HAL41/ComfyUI-aichemy-nodes": { "stars": 4, "last_update": "2024-05-22 23:10:19", - "author_account_age_days": 2873 + "author_account_age_days": 2897 }, "https://github.com/HECer/ComfyUI-FilePathCreator": { - "stars": 5, - "last_update": "2024-07-09 22:02:15", - "author_account_age_days": 3007 + "stars": 7, + "last_update": "2024-07-31 13:53:46", + "author_account_age_days": 3032 }, "https://github.com/Hangover3832/ComfyUI-Hangover-Moondream": { - "stars": 38, + "stars": 40, "last_update": "2024-06-14 08:08:20", - "author_account_age_days": 637 + "author_account_age_days": 661 }, "https://github.com/Hangover3832/ComfyUI-Hangover-Nodes": { - "stars": 33, + "stars": 34, "last_update": "2024-06-14 08:08:28", - "author_account_age_days": 637 + "author_account_age_days": 661 }, "https://github.com/Hangover3832/ComfyUI-Hangover-Recognize_Anything": { - "stars": 16, + "stars": 18, "last_update": "2024-06-14 08:10:52", - "author_account_age_days": 637 + "author_account_age_days": 661 }, "https://github.com/Haoming02/comfyui-clear-screen": { - "stars": 1, - "last_update": "2024-07-09 08:49:03", - "author_account_age_days": 1358 + "stars": 2, + "last_update": "2024-08-02 06:09:47", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-diffusion-cg": { - "stars": 58, - "last_update": "2024-07-10 03:26:36", - "author_account_age_days": 1358 + "stars": 67, + "last_update": "2024-08-02 06:13:20", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-floodgate": { - "stars": 25, - "last_update": "2024-07-09 09:02:07", - "author_account_age_days": 1358 + "stars": 26, + "last_update": "2024-08-02 06:21:25", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-menu-anchor": { - "stars": 3, - "last_update": "2024-07-09 10:03:10", - "author_account_age_days": 1358 + "stars": 4, + "last_update": "2024-08-02 06:22:51", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-node-beautify": { "stars": 6, - "last_update": "2024-07-09 09:25:46", - "author_account_age_days": 1358 + "last_update": "2024-08-02 06:24:27", + "author_account_age_days": 1383 + }, + "https://github.com/Haoming02/comfyui-old-photo-restoration": { + "stars": 14, + "last_update": "2024-08-02 06:30:01", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-prompt-format": { "stars": 31, - "last_update": "2024-07-10 02:32:48", - "author_account_age_days": 1358 + "last_update": "2024-08-02 06:31:16", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-resharpen": { - "stars": 30, - "last_update": "2024-07-10 03:10:18", - "author_account_age_days": 1358 + "stars": 33, + "last_update": "2024-08-02 06:32:26", + "author_account_age_days": 1383 }, "https://github.com/Haoming02/comfyui-tab-handler": { - "stars": 4, - "last_update": "2024-07-09 08:41:44", - "author_account_age_days": 1358 + "stars": 5, + "last_update": "2024-08-02 06:33:55", + "author_account_age_days": 1383 }, "https://github.com/HaydenReeve/ComfyUI-Better-Strings": { - "stars": 0, + "stars": 1, "last_update": "2024-05-22 23:20:05", - "author_account_age_days": 2269 + "author_account_age_days": 2293 + }, + "https://github.com/HeadshotPro/ComfyUI-HeadshotPro": { + "stars": 2, + "last_update": "2024-08-14 04:00:34", + "author_account_age_days": 405 }, "https://github.com/HebelHuber/comfyui-enhanced-save-node": { - "stars": 1, + "stars": 2, "last_update": "2024-06-14 08:59:28", - "author_account_age_days": 2351 + "author_account_age_days": 2375 + }, + "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes": { + "stars": 2, + "last_update": "2024-08-14 05:01:10", + "author_account_age_days": 3136 }, "https://github.com/Hiero207/ComfyUI-Hiero-Nodes": { "stars": 6, - "last_update": "2024-06-24 03:38:50", - "author_account_age_days": 1725 + "last_update": "2024-08-14 01:25:26", + "author_account_age_days": 1750 }, "https://github.com/Hopping-Mad-Games/ComfyUI_LiteLLM": { "stars": 3, "last_update": "2024-06-29 19:44:47", - "author_account_age_days": 216 + "author_account_age_days": 240 }, "https://github.com/IDGallagher/ComfyUI-IG-Nodes": { "stars": 1, "last_update": "2024-07-15 19:45:50", - "author_account_age_days": 5508 + "author_account_age_days": 5532 }, "https://github.com/ITurchenko/ComfyUI-SizeFromArray": { - "stars": 0, - "last_update": "2024-05-24 14:09:58", - "author_account_age_days": 3736 + "stars": 1, + "last_update": "2024-08-01 08:45:43", + "author_account_age_days": 3760 }, "https://github.com/Intersection98/ComfyUI_MX_post_processing-nodes": { "stars": 9, "last_update": "2024-05-23 01:12:46", - "author_account_age_days": 2657 + "author_account_age_days": 2681 }, "https://github.com/Inzaniak/comfyui-ranbooru": { - "stars": 8, + "stars": 9, "last_update": "2024-05-22 23:12:23", - "author_account_age_days": 3937 + "author_account_age_days": 3961 }, "https://github.com/IsItDanOrAi/ComfyUI-Stereopsis": { - "stars": 3, - "last_update": "2024-06-21 20:39:06", - "author_account_age_days": 139 + "stars": 4, + "last_update": "2024-08-02 13:38:00", + "author_account_age_days": 163 + }, + "https://github.com/Isi-dev/ComfyUI-UniAnimate-W": { + "stars": 17, + "last_update": "2024-08-15 05:54:39", + "author_account_age_days": 1143 + }, + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": { + "stars": 30, + "last_update": "2024-08-13 16:45:27", + "author_account_age_days": 462 }, "https://github.com/JPS-GER/ComfyUI_JPS-Nodes": { - "stars": 40, + "stars": 42, "last_update": "2024-05-22 20:39:14", - "author_account_age_days": 343 + "author_account_age_days": 367 }, "https://github.com/JackEllie/ComfyUI_AI_Assistant": { - "stars": 3, - "last_update": "2024-07-12 14:54:05", - "author_account_age_days": 598 + "stars": 18, + "last_update": "2024-07-26 04:55:41", + "author_account_age_days": 622 }, "https://github.com/Jannchie/ComfyUI-J": { - "stars": 64, - "last_update": "2024-06-20 12:08:09", - "author_account_age_days": 2580 + "stars": 69, + "last_update": "2024-07-31 13:12:46", + "author_account_age_days": 2605 }, "https://github.com/JaredTherriault/ComfyUI-JNodes": { - "stars": 26, - "last_update": "2024-07-21 19:53:40", - "author_account_age_days": 3599 + "stars": 30, + "last_update": "2024-08-11 21:06:02", + "author_account_age_days": 3623 }, "https://github.com/JayLyu/ComfyUI_BaiKong_Node": { - "stars": 0, - "last_update": "2024-07-03 15:07:04", - "author_account_age_days": 3295 + "stars": 1, + "last_update": "2024-08-12 15:54:20", + "author_account_age_days": 3320 }, "https://github.com/JcandZero/ComfyUI_GLM4Node": { "stars": 25, "last_update": "2024-05-22 23:12:46", - "author_account_age_days": 717 + "author_account_age_days": 741 }, "https://github.com/Jcd1230/rembg-comfyui-node": { - "stars": 125, + "stars": 130, "last_update": "2024-05-22 17:58:34", - "author_account_age_days": 4913 + "author_account_age_days": 4938 }, "https://github.com/JerryOrbachJr/ComfyUI-RandomSize": { "stars": 3, - "last_update": "2024-05-22 23:18:51", - "author_account_age_days": 183 + "last_update": "2024-08-10 07:10:17", + "author_account_age_days": 207 }, "https://github.com/JettHu/ComfyUI-TCD": { - "stars": 99, - "last_update": "2024-07-10 02:54:27", - "author_account_age_days": 2385 + "stars": 104, + "last_update": "2024-07-31 13:50:21", + "author_account_age_days": 2409 }, "https://github.com/JettHu/ComfyUI_TGate": { - "stars": 50, - "last_update": "2024-07-10 02:57:19", - "author_account_age_days": 2385 + "stars": 52, + "last_update": "2024-07-27 18:34:18", + "author_account_age_days": 2409 }, "https://github.com/Jordach/comfy-plasma": { - "stars": 55, + "stars": 58, "last_update": "2024-05-22 18:08:28", - "author_account_age_days": 4540 + "author_account_age_days": 4564 + }, + "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling": { + "stars": 7, + "last_update": "2024-08-02 15:16:12", + "author_account_age_days": 3406 + }, + "https://github.com/Julian-adv/WildDivide": { + "stars": 1, + "last_update": "2024-08-13 03:04:50", + "author_account_age_days": 390 }, "https://github.com/Kaharos94/ComfyUI-Saveaswebp": { - "stars": 35, + "stars": 37, "last_update": "2024-06-21 23:01:48", - "author_account_age_days": 1222 + "author_account_age_days": 1246 }, "https://github.com/Kangkang625/ComfyUI-paint-by-example": { "stars": 15, "last_update": "2024-05-22 22:20:27", - "author_account_age_days": 941 + "author_account_age_days": 965 }, "https://github.com/KewkLW/ComfyUI-kewky_tools": { "stars": 7, "last_update": "2024-07-10 05:45:11", - "author_account_age_days": 1714 + "author_account_age_days": 1739 }, "https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler": { - "stars": 140, + "stars": 146, "last_update": "2024-06-16 15:50:10", - "author_account_age_days": 1513 + "author_account_age_days": 1537 }, "https://github.com/KoreTeknology/ComfyUI-Universal-Styler": { - "stars": 16, - "last_update": "2024-06-14 10:28:10", - "author_account_age_days": 3217 + "stars": 20, + "last_update": "2024-07-29 09:06:21", + "author_account_age_days": 3241 }, "https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet": { - "stars": 471, - "last_update": "2024-07-20 15:44:58", - "author_account_age_days": 3744 + "stars": 509, + "last_update": "2024-08-15 01:27:53", + "author_account_age_days": 3768 }, "https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved": { - "stars": 2373, - "last_update": "2024-07-16 00:14:05", - "author_account_age_days": 3744 + "stars": 2474, + "last_update": "2024-08-15 04:55:05", + "author_account_age_days": 3768 }, "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite": { - "stars": 436, - "last_update": "2024-07-15 20:08:31", - "author_account_age_days": 3744 + "stars": 469, + "last_update": "2024-08-14 22:40:00", + "author_account_age_days": 3768 }, "https://github.com/Koushakur/ComfyUI-DenoiseChooser": { - "stars": 3, - "last_update": "2024-07-17 20:59:25", - "author_account_age_days": 1148 + "stars": 5, + "last_update": "2024-07-31 14:05:13", + "author_account_age_days": 1172 }, "https://github.com/KytraScript/ComfyUI_KytraWebhookHTTP": { "stars": 3, "last_update": "2024-05-23 00:21:43", - "author_account_age_days": 1806 + "author_account_age_days": 1831 }, "https://github.com/LEv145/images-grid-comfy-plugin": { - "stars": 135, + "stars": 139, "last_update": "2024-05-30 17:54:32", - "author_account_age_days": 2235 + "author_account_age_days": 2259 }, "https://github.com/LZpenguin/ComfyUI-Text": { "stars": 23, "last_update": "2024-06-20 13:38:16", - "author_account_age_days": 2006 + "author_account_age_days": 2030 }, "https://github.com/LarryJane491/Image-Captioning-in-ComfyUI": { - "stars": 37, + "stars": 41, "last_update": "2024-06-06 20:45:43", - "author_account_age_days": 191 + "author_account_age_days": 215 }, "https://github.com/LarryJane491/Lora-Training-in-Comfy": { - "stars": 300, - "last_update": "2024-06-09 05:24:00", - "author_account_age_days": 191 + "stars": 330, + "last_update": "2024-08-05 11:32:30", + "author_account_age_days": 215 }, "https://github.com/Layer-norm/comfyui-lama-remover": { - "stars": 60, - "last_update": "2024-05-25 00:12:04", - "author_account_age_days": 359 + "stars": 64, + "last_update": "2024-08-03 04:18:39", + "author_account_age_days": 384 }, "https://github.com/Lerc/canvas_tab": { - "stars": 147, + "stars": 151, "last_update": "2024-05-22 20:48:45", - "author_account_age_days": 5395 + "author_account_age_days": 5419 }, "https://github.com/LightSketch-ai/ComfyUI-LivePortraitNode": { "stars": 2, "last_update": "2024-07-17 01:24:53", - "author_account_age_days": 11 + "author_account_age_days": 35 }, "https://github.com/Limitex/ComfyUI-Calculation": { "stars": 0, "last_update": "2024-05-22 22:18:40", - "author_account_age_days": 1302 + "author_account_age_days": 1326 }, "https://github.com/Limitex/ComfyUI-Diffusers": { - "stars": 119, + "stars": 125, "last_update": "2024-05-22 22:18:57", - "author_account_age_days": 1302 + "author_account_age_days": 1326 + }, + "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator": { + "stars": 4, + "last_update": "2024-08-14 02:17:07", + "author_account_age_days": 438 }, "https://github.com/Loewen-Hob/rembg-comfyui-node-better": { - "stars": 48, + "stars": 51, "last_update": "2024-05-23 00:32:53", - "author_account_age_days": 498 + "author_account_age_days": 522 }, "https://github.com/LonicaMewinsky/ComfyUI-MakeFrame": { - "stars": 23, + "stars": 25, "last_update": "2024-05-22 21:29:02", - "author_account_age_days": 1003 + "author_account_age_days": 1027 }, "https://github.com/LonicaMewinsky/ComfyUI-RawSaver": { "stars": 2, "last_update": "2024-05-22 21:31:28", - "author_account_age_days": 1003 + "author_account_age_days": 1027 }, "https://github.com/Ludobico/ComfyUI-ScenarioPrompt": { "stars": 14, - "last_update": "2024-06-21 06:43:02", - "author_account_age_days": 1060 + "last_update": "2024-08-01 00:52:11", + "author_account_age_days": 1084 }, "https://github.com/LyazS/comfyui-anime-seg": { - "stars": 4, + "stars": 6, "last_update": "2024-05-22 23:21:49", - "author_account_age_days": 2884 + "author_account_age_days": 2909 }, "https://github.com/M1kep/ComfyLiterals": { - "stars": 14, + "stars": 17, "last_update": "2024-05-22 20:31:38", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/ComfyUI-KepOpenAI": { - "stars": 26, + "stars": 27, "last_update": "2024-05-22 20:33:54", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/ComfyUI-OtherVAEs": { "stars": 2, "last_update": "2024-05-22 20:33:41", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/Comfy_KepKitchenSink": { "stars": 0, "last_update": "2024-05-22 20:33:29", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/Comfy_KepListStuff": { "stars": 28, "last_update": "2024-06-22 00:51:28", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/Comfy_KepMatteAnything": { "stars": 10, "last_update": "2024-05-22 20:33:16", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/M1kep/KepPromptLang": { "stars": 5, "last_update": "2024-05-22 20:32:56", - "author_account_age_days": 4285 + "author_account_age_days": 4310 }, "https://github.com/MNeMoNiCuZ/ComfyUI-mnemic-nodes": { - "stars": 29, - "last_update": "2024-06-04 23:56:25", - "author_account_age_days": 1632 + "stars": 31, + "last_update": "2024-08-03 08:08:55", + "author_account_age_days": 1656 }, "https://github.com/Makeezi/ComfyUI-promptLAB": { "stars": 0, "last_update": "2024-05-23 01:24:51", - "author_account_age_days": 1809 + "author_account_age_days": 1833 + }, + "https://github.com/MakkiShizu/comfyui_reimgsize": { + "stars": 5, + "last_update": "2024-07-30 06:49:47", + "author_account_age_days": 364 }, "https://github.com/Mamaaaamooooo/batchImg-rembg-ComfyUI-nodes": { - "stars": 14, + "stars": 15, "last_update": "2024-06-14 10:24:17", - "author_account_age_days": 409 + "author_account_age_days": 434 }, "https://github.com/ManglerFTW/ComfyI2I": { - "stars": 146, + "stars": 150, "last_update": "2024-06-14 11:01:01", - "author_account_age_days": 682 + "author_account_age_days": 707 }, "https://github.com/MaraScott/ComfyUI_MaraScott_Nodes": { - "stars": 76, - "last_update": "2024-07-20 23:02:51", - "author_account_age_days": 4997 + "stars": 93, + "last_update": "2024-08-14 07:40:57", + "author_account_age_days": 5021 }, "https://github.com/MarcusNyne/m9-prompts-comfyui": { "stars": 1, "last_update": "2024-06-14 15:25:15", - "author_account_age_days": 1450 + "author_account_age_days": 1474 }, "https://github.com/MariusKM/ComfyUI-BadmanNodes": { "stars": 1, - "last_update": "2024-06-21 15:20:22", - "author_account_age_days": 2258 + "last_update": "2024-07-31 13:49:59", + "author_account_age_days": 2282 }, "https://github.com/MarkoCa1/ComfyUI-Text": { "stars": 2, "last_update": "2024-05-23 00:15:39", - "author_account_age_days": 1660 + "author_account_age_days": 1685 }, "https://github.com/MarkoCa1/ComfyUI_Segment_Mask": { - "stars": 17, + "stars": 19, "last_update": "2024-05-23 00:15:51", - "author_account_age_days": 1660 + "author_account_age_days": 1685 }, "https://github.com/Marksusu/ComfyUI_MTEncode": { - "stars": 0, - "last_update": "2024-07-19 16:59:24", - "author_account_age_days": 735 + "stars": 2, + "last_update": "2024-07-26 05:59:56", + "author_account_age_days": 760 }, "https://github.com/Mason-McGough/ComfyUI-Mosaica": { - "stars": 4, - "last_update": "2024-05-29 12:57:49", - "author_account_age_days": 3232 + "stars": 6, + "last_update": "2024-07-27 18:33:59", + "author_account_age_days": 3257 + }, + "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper": { + "stars": 1, + "last_update": "2024-08-01 06:47:24", + "author_account_age_days": 582 + }, + "https://github.com/MiddleKD/ComfyUI-productfix": { + "stars": 3, + "last_update": "2024-08-13 01:11:21", + "author_account_age_days": 582 }, "https://github.com/MilitantHitchhiker/MilitantHitchhiker-SwitchbladePack": { + "stars": 4, + "last_update": "2024-07-31 14:39:13", + "author_account_age_days": 111 + }, + "https://github.com/Mintbeer96/ComfyUI-KerasOCR": { "stars": 3, - "last_update": "2024-06-24 22:04:33", - "author_account_age_days": 87 + "last_update": "2024-07-24 16:39:41", + "author_account_age_days": 3229 + }, + "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ": { + "stars": 5, + "last_update": "2024-08-14 04:01:10", + "author_account_age_days": 117 + }, + "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ": { + "stars": 6, + "last_update": "2024-08-14 18:52:45", + "author_account_age_days": 117 }, "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ": { - "stars": 216, - "last_update": "2024-07-21 07:37:37", - "author_account_age_days": 93 + "stars": 385, + "last_update": "2024-08-06 14:10:29", + "author_account_age_days": 117 }, "https://github.com/MinusZoneAI/ComfyUI-Prompt-MZ": { - "stars": 83, - "last_update": "2024-07-07 14:51:07", - "author_account_age_days": 93 + "stars": 94, + "last_update": "2024-08-14 01:28:58", + "author_account_age_days": 117 }, "https://github.com/MinusZoneAI/ComfyUI-StylizePhoto-MZ": { "stars": 17, "last_update": "2024-05-23 01:13:32", - "author_account_age_days": 93 + "author_account_age_days": 117 }, "https://github.com/MinusZoneAI/ComfyUI-TrainTools-MZ": { - "stars": 24, + "stars": 35, "last_update": "2024-07-09 12:42:11", - "author_account_age_days": 93 + "author_account_age_days": 117 }, "https://github.com/Miosp/ComfyUI-FBCNN": { - "stars": 6, - "last_update": "2024-05-24 12:13:08", - "author_account_age_days": 2543 + "stars": 8, + "last_update": "2024-08-02 19:54:17", + "author_account_age_days": 2567 }, "https://github.com/MitoshiroPJ/comfyui_slothful_attention": { - "stars": 6, + "stars": 7, "last_update": "2024-05-22 22:09:15", - "author_account_age_days": 3995 + "author_account_age_days": 4019 + }, + "https://github.com/MohammadAboulEla/ComfyUI-iTools": { + "stars": 2, + "last_update": "2024-08-15 02:30:38", + "author_account_age_days": 1078 }, "https://github.com/MokkaBoss1/ComfyUI_Mokkaboss1": { "stars": 16, - "last_update": "2024-07-08 18:34:18", - "author_account_age_days": 406 + "last_update": "2024-08-10 17:11:32", + "author_account_age_days": 431 }, "https://github.com/MrForExample/ComfyUI-3D-Pack": { - "stars": 1827, - "last_update": "2024-07-21 00:14:28", - "author_account_age_days": 1588 + "stars": 2008, + "last_update": "2024-08-02 01:53:03", + "author_account_age_days": 1613 }, "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved": { - "stars": 450, + "stars": 465, "last_update": "2024-06-14 12:02:47", - "author_account_age_days": 1588 + "author_account_age_days": 1613 }, "https://github.com/MrSamSeen/ComfyUI_SSStereoscope": { - "stars": 6, + "stars": 11, "last_update": "2024-07-08 20:40:49", - "author_account_age_days": 3618 + "author_account_age_days": 3643 }, "https://github.com/Munkyfoot/ComfyUI-TextOverlay": { - "stars": 11, + "stars": 17, "last_update": "2024-06-28 05:57:03", - "author_account_age_days": 3072 + "author_account_age_days": 3096 + }, + "https://github.com/MushroomFleet/DJZ-Nodes": { + "stars": 7, + "last_update": "2024-07-27 04:00:20", + "author_account_age_days": 3773 + }, + "https://github.com/MuziekMagie/ComfyUI-Matchering": { + "stars": 7, + "last_update": "2024-07-23 14:39:52", + "author_account_age_days": 23 }, "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes": { - "stars": 1, + "stars": 4, "last_update": "2024-07-13 01:24:57", - "author_account_age_days": 104 + "author_account_age_days": 128 + }, + "https://github.com/NMWave/ComfyUI-Nader-Tagging": { + "stars": 1, + "last_update": "2024-08-06 11:13:51", + "author_account_age_days": 630 }, "https://github.com/Nestorchik/NStor-ComfyUI-Translation": { - "stars": 1, + "stars": 2, "last_update": "2024-06-14 10:25:32", - "author_account_age_days": 1352 + "author_account_age_days": 1376 + }, + "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin": { + "stars": 30, + "last_update": "2024-08-06 19:59:25", + "author_account_age_days": 145 + }, + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt": { + "stars": 3, + "last_update": "2024-08-14 02:16:43", + "author_account_age_days": 145 + }, + "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON": { + "stars": 2, + "last_update": "2024-08-11 18:10:36", + "author_account_age_days": 145 }, "https://github.com/NeuralSamurAI/Comfyui-Superprompt-Unofficial": { "stars": 58, "last_update": "2024-05-23 00:22:08", - "author_account_age_days": 121 + "author_account_age_days": 145 }, "https://github.com/Nevysha/ComfyUI-nevysha-top-menu": { "stars": 5, "last_update": "2024-05-23 00:17:31", - "author_account_age_days": 554 + "author_account_age_days": 578 }, "https://github.com/NicholasMcCarthy/ComfyUI_TravelSuite": { "stars": 13, "last_update": "2024-05-22 20:34:46", - "author_account_age_days": 5177 + "author_account_age_days": 5201 }, "https://github.com/NimaNzrii/comfyui-photoshop": { - "stars": 314, - "last_update": "2024-07-21 11:52:52", - "author_account_age_days": 272 + "stars": 431, + "last_update": "2024-08-08 13:03:54", + "author_account_age_days": 296 }, "https://github.com/NimaNzrii/comfyui-popup_preview": { "stars": 35, "last_update": "2024-05-22 22:12:04", - "author_account_age_days": 272 + "author_account_age_days": 296 }, "https://github.com/Niutonian/ComfyUi-NoodleWebcam": { "stars": 29, "last_update": "2024-05-22 21:30:40", - "author_account_age_days": 1069 + "author_account_age_days": 1093 }, "https://github.com/Nlar/ComfyUI_CartoonSegmentation": { - "stars": 11, + "stars": 12, "last_update": "2024-05-22 23:15:37", - "author_account_age_days": 3858 + "author_account_age_days": 3883 }, "https://github.com/NotHarroweD/Harronode": { "stars": 5, "last_update": "2024-05-22 22:18:29", - "author_account_age_days": 2011 + "author_account_age_days": 2035 }, "https://github.com/Nourepide/ComfyUI-Allor": { - "stars": 183, + "stars": 194, "last_update": "2024-05-22 18:11:17", - "author_account_age_days": 2873 + "author_account_age_days": 2897 }, "https://github.com/Nuked88/ComfyUI-N-Nodes": { - "stars": 181, - "last_update": "2024-05-21 19:52:44", - "author_account_age_days": 4507 + "stars": 191, + "last_update": "2024-07-25 20:13:05", + "author_account_age_days": 4531 }, "https://github.com/Nuked88/ComfyUI-N-Sidebar": { - "stars": 435, - "last_update": "2024-07-21 06:51:05", - "author_account_age_days": 4507 + "stars": 469, + "last_update": "2024-08-01 19:19:55", + "author_account_age_days": 4531 }, "https://github.com/Off-Live/ComfyUI-off-suite": { "stars": 0, "last_update": "2024-06-14 12:02:25", - "author_account_age_days": 1199 + "author_account_age_days": 1224 + }, + "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery": { + "stars": 3, + "last_update": "2024-08-14 06:19:44", + "author_account_age_days": 5 }, "https://github.com/OpenArt-AI/ComfyUI-Assistant": { - "stars": 14, + "stars": 15, "last_update": "2024-05-22 22:16:57", - "author_account_age_days": 802 + "author_account_age_days": 826 + }, + "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex": { + "stars": 0, + "last_update": "2024-08-14 04:00:49", + "author_account_age_days": 2584 }, "https://github.com/PCMonsterx/ComfyUI-CSV-Loader": { - "stars": 11, + "stars": 12, "last_update": "2024-05-22 21:27:10", - "author_account_age_days": 1692 + "author_account_age_days": 1716 + }, + "https://github.com/Parameshvadivel/ComfyUI-SVGview": { + "stars": 1, + "last_update": "2024-07-31 13:40:33", + "author_account_age_days": 2879 }, "https://github.com/ParisNeo/lollms_nodes_suite": { "stars": 10, "last_update": "2024-06-23 21:04:43", - "author_account_age_days": 4797 + "author_account_age_days": 4821 }, "https://github.com/ParmanBabra/ComfyUI-Malefish-Custom-Scripts": { "stars": 0, "last_update": "2024-05-22 21:26:35", - "author_account_age_days": 3670 + "author_account_age_days": 3694 }, "https://github.com/Pfaeff/pfaeff-comfyui": { "stars": 19, "last_update": "2024-05-22 18:21:10", - "author_account_age_days": 3235 + "author_account_age_days": 3259 + }, + "https://github.com/Pheat-AI/Remade_nodes": { + "stars": 0, + "last_update": "2024-08-14 04:00:40", + "author_account_age_days": 85 }, "https://github.com/PnthrLeo/comfyUI-image-search": { "stars": 0, "last_update": "2024-06-14 07:06:45", - "author_account_age_days": 2578 + "author_account_age_days": 2603 }, "https://github.com/Pos13/comfyui-cyclist": { - "stars": 31, - "last_update": "2024-06-19 09:21:53", - "author_account_age_days": 1545 + "stars": 33, + "last_update": "2024-08-04 02:58:33", + "author_account_age_days": 1569 + }, + "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait": { + "stars": 429, + "last_update": "2024-08-07 12:28:18", + "author_account_age_days": 15 }, "https://github.com/QaisMalkawi/ComfyUI-QaisHelper": { - "stars": 2, + "stars": 3, "last_update": "2024-05-23 20:29:30", - "author_account_age_days": 1278 + "author_account_age_days": 1302 + }, + "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive": { + "stars": 0, + "last_update": "2024-08-12 15:55:42", + "author_account_age_days": 3983 }, "https://github.com/RedRayz/ComfyUI-Danbooru-To-WD": { - "stars": 2, - "last_update": "2024-06-24 18:20:48", - "author_account_age_days": 1392 + "stars": 4, + "last_update": "2024-07-28 12:45:36", + "author_account_age_days": 1417 }, "https://github.com/RenderRift/ComfyUI-RenderRiftNodes": { "stars": 6, "last_update": "2024-05-22 22:16:41", - "author_account_age_days": 214 + "author_account_age_days": 238 }, "https://github.com/RhizoNymph/ComfyUI-Latte": { - "stars": 0, - "last_update": "2024-07-20 19:09:26", - "author_account_age_days": 1194 + "stars": 3, + "last_update": "2024-08-11 07:25:04", + "author_account_age_days": 1219 }, "https://github.com/RomanKuschanow/ComfyUI-Advanced-Latent-Control": { - "stars": 16, + "stars": 17, "last_update": "2024-06-21 07:29:14", - "author_account_age_days": 1409 + "author_account_age_days": 1433 }, "https://github.com/Ron-Digital/ComfyUI-SceneGenerator": { "stars": 2, "last_update": "2024-06-28 19:36:30", - "author_account_age_days": 956 + "author_account_age_days": 980 }, "https://github.com/Ryuukeisyou/comfyui_face_parsing": { - "stars": 58, - "last_update": "2024-07-03 12:48:31", - "author_account_age_days": 2440 + "stars": 75, + "last_update": "2024-07-30 15:32:44", + "author_account_age_days": 2464 }, "https://github.com/Ryuukeisyou/comfyui_io_helpers": { "stars": 1, "last_update": "2024-07-13 13:10:10", - "author_account_age_days": 2440 + "author_account_age_days": 2464 + }, + "https://github.com/SEkINVR/ComfyUI-Animator": { + "stars": 2, + "last_update": "2024-08-08 19:59:36", + "author_account_age_days": 709 }, "https://github.com/SEkINVR/ComfyUI-Save-Multi-Format": { "stars": 2, "last_update": "2024-07-08 03:39:48", - "author_account_age_days": 684 + "author_account_age_days": 709 }, "https://github.com/SEkINVR/ComfyUI-SaveAs": { "stars": 2, "last_update": "2024-07-08 03:39:48", - "author_account_age_days": 684 + "author_account_age_days": 709 }, "https://github.com/SLAPaper/ComfyUI-Image-Selector": { - "stars": 62, - "last_update": "2024-05-24 17:03:46", - "author_account_age_days": 3725 + "stars": 68, + "last_update": "2024-08-03 18:32:58", + "author_account_age_days": 3749 }, "https://github.com/SLAPaper/ComfyUI-dpmpp_2m_alt-Sampler": { - "stars": 8, - "last_update": "2024-06-18 19:22:50", - "author_account_age_days": 3725 + "stars": 10, + "last_update": "2024-08-03 18:32:42", + "author_account_age_days": 3749 + }, + "https://github.com/SLAPaper/StableDiffusion-dpmpp_2m_alt-Sampler": { + "stars": 10, + "last_update": "2024-08-03 18:32:42", + "author_account_age_days": 3749 }, "https://github.com/SOELexicon/ComfyUI-LexMSDBNodes": { "stars": 4, - "last_update": "2024-06-28 19:20:36", - "author_account_age_days": 4111 + "last_update": "2024-07-31 15:02:32", + "author_account_age_days": 4135 }, "https://github.com/SOELexicon/ComfyUI-LexTools": { "stars": 25, "last_update": "2024-06-28 19:25:13", - "author_account_age_days": 4111 + "author_account_age_days": 4135 }, "https://github.com/SamKhoze/ComfyUI-DeepFuze": { - "stars": 235, - "last_update": "2024-07-21 08:24:53", - "author_account_age_days": 1470 + "stars": 272, + "last_update": "2024-08-01 02:05:16", + "author_account_age_days": 1495 }, "https://github.com/SayanoAI/Comfy-RVC": { - "stars": 4, - "last_update": "2024-06-25 02:50:53", - "author_account_age_days": 2631 + "stars": 7, + "last_update": "2024-08-14 02:39:38", + "author_account_age_days": 2655 }, "https://github.com/Scholar01/ComfyUI-Keyframe": { - "stars": 10, + "stars": 11, "last_update": "2024-06-14 09:01:30", - "author_account_age_days": 3223 + "author_account_age_days": 3247 }, "https://github.com/Scorpinaus/ComfyUI-DiffusersLoader": { - "stars": 6, - "last_update": "2024-07-13 02:48:08", - "author_account_age_days": 1137 + "stars": 8, + "last_update": "2024-07-30 09:02:59", + "author_account_age_days": 1161 }, "https://github.com/ScreamingHawk/comfyui-ollama-prompt-encode": { - "stars": 6, - "last_update": "2024-06-26 00:07:10", - "author_account_age_days": 4533 + "stars": 9, + "last_update": "2024-07-31 13:51:28", + "author_account_age_days": 4557 }, "https://github.com/SeaArtLab/ComfyUI-Long-CLIP": { - "stars": 65, + "stars": 69, "last_update": "2024-06-14 08:08:26", - "author_account_age_days": 104 + "author_account_age_days": 128 }, "https://github.com/SeargeDP/SeargeSDXL": { - "stars": 756, + "stars": 762, "last_update": "2024-05-22 00:28:26", - "author_account_age_days": 4199 + "author_account_age_days": 4223 }, "https://github.com/Seedsa/Fooocus_Nodes": { - "stars": 44, - "last_update": "2024-07-03 07:51:13", - "author_account_age_days": 2635 + "stars": 51, + "last_update": "2024-08-14 08:45:59", + "author_account_age_days": 2659 }, "https://github.com/Shadetail/ComfyUI_Eagleshadow": { - "stars": 1, + "stars": 2, "last_update": "2024-06-15 13:04:49", - "author_account_age_days": 3424 + "author_account_age_days": 3449 }, "https://github.com/SherryXieYuchen/ComfyUI-Image-Inpainting": { "stars": 3, "last_update": "2024-07-03 03:39:49", - "author_account_age_days": 142 + "author_account_age_days": 166 }, "https://github.com/Shibiko-AI/ShibikoAI-ComfyUI-Tools": { "stars": 9, "last_update": "2024-07-04 02:22:10", - "author_account_age_days": 429 + "author_account_age_days": 453 }, "https://github.com/ShmuelRonen/ComfyUI-AstralAnimator": { - "stars": 5, + "stars": 15, "last_update": "2024-07-18 12:41:22", - "author_account_age_days": 1232 + "author_account_age_days": 1256 }, "https://github.com/ShmuelRonen/ComfyUI-SVDResizer": { "stars": 2, "last_update": "2024-06-14 11:50:52", - "author_account_age_days": 1232 + "author_account_age_days": 1256 }, "https://github.com/ShmuelRonen/ComfyUI_Gemini_Flash": { - "stars": 13, + "stars": 17, "last_update": "2024-07-21 19:57:00", - "author_account_age_days": 1232 + "author_account_age_days": 1256 }, "https://github.com/ShmuelRonen/ComfyUI_wav2lip": { - "stars": 59, - "last_update": "2024-07-03 11:25:27", - "author_account_age_days": 1232 + "stars": 68, + "last_update": "2024-08-12 14:10:48", + "author_account_age_days": 1256 }, "https://github.com/Shraknard/ComfyUI-Remover": { - "stars": 4, - "last_update": "2024-05-22 23:15:06", - "author_account_age_days": 2344 + "stars": 6, + "last_update": "2024-07-24 08:42:48", + "author_account_age_days": 2368 }, "https://github.com/Siberpone/lazy-pony-prompter": { - "stars": 25, - "last_update": "2024-07-08 15:39:40", - "author_account_age_days": 480 + "stars": 26, + "last_update": "2024-08-01 06:12:33", + "author_account_age_days": 504 }, "https://github.com/Smirnov75/ComfyUI-mxToolkit": { - "stars": 66, - "last_update": "2024-07-21 20:42:36", - "author_account_age_days": 1539 + "stars": 72, + "last_update": "2024-07-31 13:44:42", + "author_account_age_days": 1563 }, "https://github.com/Smuzzies/comfyui_meme_maker": { "stars": 0, "last_update": "2024-07-05 22:01:41", - "author_account_age_days": 719 + "author_account_age_days": 743 + }, + "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix": { + "stars": 8, + "last_update": "2024-07-25 13:09:00", + "author_account_age_days": 3575 }, "https://github.com/SoftMeng/ComfyUI_ImageToText": { "stars": 6, "last_update": "2024-06-14 08:08:36", - "author_account_age_days": 3551 + "author_account_age_days": 3575 }, "https://github.com/SoftMeng/ComfyUI_Mexx_Poster": { - "stars": 16, + "stars": 17, "last_update": "2024-06-14 07:06:27", - "author_account_age_days": 3551 + "author_account_age_days": 3575 }, "https://github.com/SoftMeng/ComfyUI_Mexx_Styler": { "stars": 18, "last_update": "2024-06-14 07:09:03", - "author_account_age_days": 3551 + "author_account_age_days": 3575 }, "https://github.com/Sorcerio/MBM-Music-Visualizer": { "stars": 15, "last_update": "2024-05-23 01:09:18", - "author_account_age_days": 4274 + "author_account_age_days": 4299 }, "https://github.com/SozeInc/ComfyUI-Mobile": { "stars": 0, "last_update": "2024-06-14 07:09:00", - "author_account_age_days": 107 + "author_account_age_days": 131 }, "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid": { "stars": 6, "last_update": "2024-05-22 22:11:52", - "author_account_age_days": 235 + "author_account_age_days": 260 }, "https://github.com/Stability-AI/ComfyUI-SAI_API": { - "stars": 41, + "stars": 45, "last_update": "2024-06-06 14:18:15", - "author_account_age_days": 870 + "author_account_age_days": 894 }, "https://github.com/Stability-AI/stability-ComfyUI-nodes": { - "stars": 185, + "stars": 186, "last_update": "2024-05-22 15:30:47", - "author_account_age_days": 870 + "author_account_age_days": 894 }, "https://github.com/StartHua/ComfyUI_OOTDiffusion_CXH": { - "stars": 98, + "stars": 100, "last_update": "2024-06-14 08:12:12", - "author_account_age_days": 2862 + "author_account_age_days": 2887 }, "https://github.com/StartHua/ComfyUI_PCDMs": { "stars": 3, "last_update": "2024-05-22 23:21:14", - "author_account_age_days": 2862 + "author_account_age_days": 2887 }, "https://github.com/StartHua/ComfyUI_Seg_VITON": { - "stars": 175, + "stars": 182, "last_update": "2024-05-22 23:20:17", - "author_account_age_days": 2862 + "author_account_age_days": 2887 + }, + "https://github.com/StartHua/Comfyui_CXH_joy_caption": { + "stars": 29, + "last_update": "2024-08-14 15:59:21", + "author_account_age_days": 2887 }, "https://github.com/StartHua/Comfyui_joytag": { - "stars": 19, + "stars": 22, "last_update": "2024-05-22 23:20:28", - "author_account_age_days": 2862 + "author_account_age_days": 2887 }, "https://github.com/StartHua/Comfyui_segformer_b2_clothes": { - "stars": 45, - "last_update": "2024-07-10 15:26:02", - "author_account_age_days": 2862 + "stars": 53, + "last_update": "2024-07-24 14:45:58", + "author_account_age_days": 2887 }, "https://github.com/SuperBeastsAI/ComfyUI-SuperBeasts": { - "stars": 114, - "last_update": "2024-06-01 20:27:53", - "author_account_age_days": 116 + "stars": 128, + "last_update": "2024-07-31 02:48:34", + "author_account_age_days": 141 }, "https://github.com/SuperMasterBlasterLaser/ComfyUI_YOLO_Classifiers": { "stars": 1, "last_update": "2024-06-20 15:06:51", - "author_account_age_days": 3605 + "author_account_age_days": 3629 }, "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes": { - "stars": 518, - "last_update": "2024-07-09 14:21:47", - "author_account_age_days": 2177 + "stars": 547, + "last_update": "2024-07-24 11:16:13", + "author_account_age_days": 2201 }, "https://github.com/Sxela/ComfyWarp": { - "stars": 21, + "stars": 22, "last_update": "2024-05-22 20:47:11", - "author_account_age_days": 3399 + "author_account_age_days": 3423 }, "https://github.com/TGu-97/ComfyUI-TGu-utils": { "stars": 1, "last_update": "2024-05-22 21:07:45", - "author_account_age_days": 557 + "author_account_age_days": 581 }, "https://github.com/THtianhao/ComfyUI-FaceChain": { - "stars": 90, + "stars": 96, "last_update": "2024-06-25 02:59:28", - "author_account_age_days": 3718 + "author_account_age_days": 3743 }, "https://github.com/THtianhao/ComfyUI-Portrait-Maker": { - "stars": 170, + "stars": 174, "last_update": "2024-05-22 21:18:05", - "author_account_age_days": 3718 + "author_account_age_days": 3743 }, "https://github.com/TJ16th/comfyUI_TJ_NormalLighting": { - "stars": 130, + "stars": 132, "last_update": "2024-05-23 00:25:37", - "author_account_age_days": 2562 + "author_account_age_days": 2586 }, "https://github.com/TMElyralab/Comfyui-MusePose": { - "stars": 307, - "last_update": "2024-06-22 07:09:49", - "author_account_age_days": 124 + "stars": 326, + "last_update": "2024-07-31 06:21:52", + "author_account_age_days": 148 }, "https://github.com/TRI3D-LC/ComfyUI-MiroBoard": { - "stars": 4, - "last_update": "2024-07-02 16:21:56", - "author_account_age_days": 466 + "stars": 5, + "last_update": "2024-07-26 05:36:12", + "author_account_age_days": 490 }, "https://github.com/TRI3D-LC/tri3d-comfyui-nodes": { - "stars": 19, - "last_update": "2024-07-10 11:25:05", - "author_account_age_days": 466 + "stars": 22, + "last_update": "2024-08-12 06:27:09", + "author_account_age_days": 490 }, "https://github.com/TW-CUI/TW-CUI-Util": { "stars": 1, - "last_update": "2024-06-17 03:03:57", - "author_account_age_days": 58 + "last_update": "2024-08-14 01:49:13", + "author_account_age_days": 83 }, "https://github.com/TaiTair/comfyui-simswap": { - "stars": 9, - "last_update": "2024-05-28 21:58:53", - "author_account_age_days": 3594 + "stars": 11, + "last_update": "2024-07-31 18:28:38", + "author_account_age_days": 3618 }, "https://github.com/Taremin/comfyui-prompt-extranetworks": { "stars": 2, "last_update": "2024-05-22 23:08:34", - "author_account_age_days": 2242 + "author_account_age_days": 2267 }, "https://github.com/Taremin/comfyui-string-tools": { "stars": 1, "last_update": "2024-05-22 23:08:45", - "author_account_age_days": 2242 + "author_account_age_days": 2267 }, "https://github.com/Taremin/webui-monaco-prompt": { "stars": 24, - "last_update": "2024-05-23 13:58:57", - "author_account_age_days": 2242 + "last_update": "2024-08-02 23:03:12", + "author_account_age_days": 2267 }, "https://github.com/TeaCrab/ComfyUI-TeaNodes": { "stars": 4, "last_update": "2024-05-22 20:44:05", - "author_account_age_days": 3245 + "author_account_age_days": 3269 }, "https://github.com/TechnoByteJS/ComfyUI-TechNodes": { - "stars": 1, - "last_update": "2024-07-21 14:42:25", - "author_account_age_days": 1703 + "stars": 9, + "last_update": "2024-08-09 09:18:30", + "author_account_age_days": 1727 }, "https://github.com/TemryL/ComfyS3": { - "stars": 18, - "last_update": "2024-07-10 13:25:30", - "author_account_age_days": 896 + "stars": 23, + "last_update": "2024-07-31 15:48:46", + "author_account_age_days": 920 }, "https://github.com/TemryL/ComfyUI-IDM-VTON": { - "stars": 258, - "last_update": "2024-07-16 07:20:52", - "author_account_age_days": 896 + "stars": 310, + "last_update": "2024-08-11 20:19:52", + "author_account_age_days": 920 }, "https://github.com/TencentQQGYLab/ComfyUI-ELLA": { - "stars": 304, + "stars": 317, "last_update": "2024-05-07 03:07:38", - "author_account_age_days": 125 + "author_account_age_days": 149 }, "https://github.com/TheBarret/ZSuite": { - "stars": 6, - "last_update": "2024-07-18 11:40:52", - "author_account_age_days": 2739 + "stars": 7, + "last_update": "2024-08-10 13:31:03", + "author_account_age_days": 2764 }, "https://github.com/TheBill2001/comfyui-upscale-by-model": { "stars": 2, "last_update": "2024-06-18 17:57:06", - "author_account_age_days": 1469 + "author_account_age_days": 1493 }, "https://github.com/TheMistoAI/ComfyUI-Anyline": { - "stars": 304, - "last_update": "2024-07-09 11:01:15", - "author_account_age_days": 192 + "stars": 322, + "last_update": "2024-07-31 13:40:51", + "author_account_age_days": 216 }, "https://github.com/ThereforeGames/ComfyUI-Unprompted": { - "stars": 8, - "last_update": "2024-06-23 21:38:03", - "author_account_age_days": 962 + "stars": 9, + "last_update": "2024-07-29 19:02:32", + "author_account_age_days": 986 }, "https://github.com/TinyTerra/ComfyUI_tinyterraNodes": { - "stars": 341, - "last_update": "2024-07-11 16:00:19", - "author_account_age_days": 648 + "stars": 361, + "last_update": "2024-08-14 23:52:46", + "author_account_age_days": 672 }, "https://github.com/TripleHeadedMonkey/ComfyUI_MileHighStyler": { - "stars": 19, + "stars": 24, "last_update": "2024-05-22 22:13:06", - "author_account_age_days": 887 + "author_account_age_days": 912 }, "https://github.com/Tropfchen/ComfyUI-Embedding_Picker": { "stars": 28, - "last_update": "2024-05-24 20:02:20", - "author_account_age_days": 3880 + "last_update": "2024-07-31 15:01:19", + "author_account_age_days": 3905 }, "https://github.com/Tropfchen/ComfyUI-yaResolutionSelector": { - "stars": 8, - "last_update": "2024-05-24 19:48:43", - "author_account_age_days": 3880 + "stars": 9, + "last_update": "2024-07-27 18:34:05", + "author_account_age_days": 3905 }, "https://github.com/Trung0246/ComfyUI-0246": { - "stars": 94, - "last_update": "2024-05-24 03:45:59", - "author_account_age_days": 3407 + "stars": 100, + "last_update": "2024-08-02 20:54:28", + "author_account_age_days": 3431 }, "https://github.com/Ttl/ComfyUi_NNLatentUpscale": { - "stars": 175, + "stars": 188, "last_update": "2024-05-22 20:50:03", - "author_account_age_days": 4949 + "author_account_age_days": 4973 }, "https://github.com/TylerZoro/SD3-Scaling": { "stars": 1, "last_update": "2024-06-15 16:59:22", - "author_account_age_days": 1313 + "author_account_age_days": 1337 }, "https://github.com/Umikaze-job/select_folder_path_easy": { "stars": 4, "last_update": "2024-05-22 21:30:13", - "author_account_age_days": 246 + "author_account_age_days": 270 }, "https://github.com/VAST-AI-Research/ComfyUI-Tripo": { - "stars": 75, - "last_update": "2024-07-19 18:03:55", - "author_account_age_days": 269 + "stars": 83, + "last_update": "2024-08-12 09:46:24", + "author_account_age_days": 293 + }, + "https://github.com/Visionatrix/ComfyUI-Visionatrix": { + "stars": 1, + "last_update": "2024-08-13 13:45:59", + "author_account_age_days": 168 }, "https://github.com/WASasquatch/ASTERR": { - "stars": 14, - "last_update": "2024-06-17 00:49:59", - "author_account_age_days": 4653 + "stars": 15, + "last_update": "2024-08-14 02:19:24", + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/ComfyUI_Preset_Merger": { - "stars": 24, - "last_update": "2024-06-17 00:52:28", - "author_account_age_days": 4653 + "stars": 25, + "last_update": "2024-08-14 01:37:03", + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/FreeU_Advanced": { "stars": 103, - "last_update": "2024-06-17 04:40:22", - "author_account_age_days": 4653 + "last_update": "2024-07-31 13:48:30", + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/PPF_Noise_ComfyUI": { - "stars": 21, + "stars": 22, "last_update": "2024-06-14 10:27:23", - "author_account_age_days": 4653 + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/PowerNoiseSuite": { - "stars": 57, - "last_update": "2024-06-17 01:40:44", - "author_account_age_days": 4653 + "stars": 59, + "last_update": "2024-07-31 13:48:33", + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/WAS_Extras": { - "stars": 27, + "stars": 29, "last_update": "2024-06-17 04:08:37", - "author_account_age_days": 4653 + "author_account_age_days": 4677 }, "https://github.com/WASasquatch/was-node-suite-comfyui": { - "stars": 999, - "last_update": "2024-07-18 10:06:03", - "author_account_age_days": 4653 + "stars": 1043, + "last_update": "2024-08-08 02:32:02", + "author_account_age_days": 4677 }, "https://github.com/WX-NPS1598/ComfyUI-Auto_Crop_By_NPS": { - "stars": 1, - "last_update": "2024-07-20 10:03:51", - "author_account_age_days": 3 + "stars": 4, + "last_update": "2024-07-30 04:43:14", + "author_account_age_days": 28 }, "https://github.com/WebDev9000/WebDev9000-Nodes": { "stars": 1, "last_update": "2024-06-14 10:28:22", - "author_account_age_days": 3779 + "author_account_age_days": 3804 }, "https://github.com/Wicloz/ComfyUI-Simply-Nodes": { "stars": 1, "last_update": "2024-07-06 22:35:50", - "author_account_age_days": 3671 + "author_account_age_days": 3695 + }, + "https://github.com/XLabs-AI/x-flux-comfyui": { + "stars": 59, + "last_update": "2024-08-15 04:04:26", + "author_account_age_days": 9 }, "https://github.com/XmYx/deforum-comfy-nodes": { - "stars": 133, + "stars": 136, "last_update": "2024-07-08 19:39:48", - "author_account_age_days": 2633 + "author_account_age_days": 2657 }, "https://github.com/Xyem/Xycuno-Oobabooga": { - "stars": 3, + "stars": 4, "last_update": "2024-05-23 00:14:14", - "author_account_age_days": 4352 + "author_account_age_days": 4376 }, "https://github.com/YMC-GitHub/ymc-node-as-x-type": { - "stars": 0, - "last_update": "2024-07-14 12:20:54", - "author_account_age_days": 2722 + "stars": 1, + "last_update": "2024-08-03 06:01:00", + "author_account_age_days": 2747 }, "https://github.com/YMC-GitHub/ymc-node-suite-comfyui": { "stars": 16, "last_update": "2024-05-22 21:15:51", - "author_account_age_days": 2722 + "author_account_age_days": 2747 }, "https://github.com/YOUR-WORST-TACO/ComfyUI-TacoNodes": { "stars": 14, "last_update": "2024-05-22 20:48:23", - "author_account_age_days": 3783 + "author_account_age_days": 3807 }, "https://github.com/Yanick112/ComfyUI-ToSVG": { - "stars": 20, + "stars": 31, "last_update": "2024-06-14 14:00:22", - "author_account_age_days": 841 + "author_account_age_days": 865 }, "https://github.com/YinBailiang/MergeBlockWeighted_fo_ComfyUI": { "stars": 14, - "last_update": "2024-07-01 09:03:34", - "author_account_age_days": 813 + "last_update": "2024-08-14 01:25:16", + "author_account_age_days": 838 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-APISR": { - "stars": 328, + "stars": 329, "last_update": "2024-05-22 14:14:46", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Animated-optical-illusions": { "stars": 18, "last_update": "2024-06-14 07:06:15", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-ArtGallery": { - "stars": 376, + "stars": 390, "last_update": "2024-06-12 04:40:50", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-BRIA_AI-RMBG": { - "stars": 594, + "stars": 625, "last_update": "2024-05-22 14:14:18", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-BiRefNet-ZHO": { - "stars": 165, - "last_update": "2024-06-27 03:38:19", - "author_account_age_days": 367 + "stars": 183, + "last_update": "2024-07-30 23:24:24", + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-DepthFM": { - "stars": 68, + "stars": 69, "last_update": "2024-05-22 14:14:03", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Gemini": { - "stars": 616, + "stars": 638, "last_update": "2024-05-22 14:15:11", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-InstantID": { - "stars": 1245, + "stars": 1277, "last_update": "2024-05-22 13:57:55", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Phi-3-mini": { - "stars": 183, + "stars": 187, "last_update": "2024-06-30 08:41:40", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PhotoMaker-ZHO": { - "stars": 761, + "stars": 772, "last_update": "2024-05-22 14:13:49", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PixArt-alpha-Diffusers": { - "stars": 46, + "stars": 47, "last_update": "2024-05-22 13:40:58", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Q-Align": { "stars": 4, "last_update": "2024-05-22 14:15:52", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen-2": { - "stars": 63, + "stars": 65, "last_update": "2024-06-14 12:02:55", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen-VL-API": { "stars": 185, "last_update": "2024-05-22 14:14:57", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-SVD-ZHO": { - "stars": 97, + "stars": 99, "last_update": "2024-05-22 13:40:44", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-SegMoE": { - "stars": 76, + "stars": 78, "last_update": "2024-05-22 13:41:14", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-Text_Image-Composite": { - "stars": 89, + "stars": 90, "last_update": "2024-05-31 12:03:55", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-UltraEdit-ZHO": { - "stars": 117, + "stars": 136, "last_update": "2024-07-11 14:59:07", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-YoloWorld-EfficientSAM": { - "stars": 509, + "stars": 532, "last_update": "2024-05-22 13:01:07", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/comfyui-portrait-master-zh-cn": { - "stars": 1515, + "stars": 1539, "last_update": "2024-06-14 09:00:04", - "author_account_age_days": 367 + "author_account_age_days": 391 }, "https://github.com/ZZXYWQ/ComfyUI-ZZXYWQ": { - "stars": 10, + "stars": 11, "last_update": "2024-07-19 06:38:39", - "author_account_age_days": 1300 + "author_account_age_days": 1324 }, "https://github.com/ZaneA/ComfyUI-ImageReward": { "stars": 22, - "last_update": "2024-07-01 21:25:12", - "author_account_age_days": 5567 + "last_update": "2024-07-31 13:42:15", + "author_account_age_days": 5591 }, "https://github.com/ZeDarkAdam/ComfyUI-Embeddings-Tools": { "stars": 2, "last_update": "2024-06-23 19:19:40", - "author_account_age_days": 1221 + "author_account_age_days": 1245 }, "https://github.com/Zuellni/ComfyUI-Custom-Nodes": { "stars": 44, "last_update": "2023-09-19 12:11:26", - "author_account_age_days": 550 + "author_account_age_days": 574 }, "https://github.com/Zuellni/ComfyUI-ExLlama": { - "stars": 102, - "last_update": "2024-06-26 14:01:12", - "author_account_age_days": 550 + "stars": 105, + "last_update": "2024-08-07 18:06:27", + "author_account_age_days": 574 }, "https://github.com/Zuellni/ComfyUI-ExLlama-Nodes": { - "stars": 102, - "last_update": "2024-06-26 14:01:12", - "author_account_age_days": 550 + "stars": 105, + "last_update": "2024-08-07 18:06:27", + "author_account_age_days": 574 }, "https://github.com/Zuellni/ComfyUI-PickScore-Nodes": { "stars": 25, "last_update": "2024-06-15 08:23:16", - "author_account_age_days": 550 + "author_account_age_days": 574 }, "https://github.com/a1lazydog/ComfyUI-AudioScheduler": { - "stars": 92, - "last_update": "2024-06-14 11:02:32", - "author_account_age_days": 4829 + "stars": 95, + "last_update": "2024-08-08 03:04:19", + "author_account_age_days": 4853 }, "https://github.com/aburahamu/ComfyUI-IsNiceParts": { "stars": 2, "last_update": "2024-06-14 12:01:40", - "author_account_age_days": 100 + "author_account_age_days": 124 }, "https://github.com/aburahamu/ComfyUI-RequestsPoster": { "stars": 2, "last_update": "2024-06-14 13:59:24", - "author_account_age_days": 100 + "author_account_age_days": 124 }, "https://github.com/abyz22/image_control": { - "stars": 14, + "stars": 15, "last_update": "2024-05-22 23:10:07", - "author_account_age_days": 189 + "author_account_age_days": 214 }, "https://github.com/adbrasi/ComfyUI-TrashNodes-DownloadHuggingface": { "stars": 4, "last_update": "2024-05-22 23:24:45", - "author_account_age_days": 731 + "author_account_age_days": 755 }, "https://github.com/ader47/comfyui_meshhamer": { - "stars": 3, + "stars": 4, "last_update": "2024-07-19 21:58:42", - "author_account_age_days": 2009 + "author_account_age_days": 2033 }, "https://github.com/adieyal/comfyui-dynamicprompts": { - "stars": 199, + "stars": 208, "last_update": "2024-07-09 14:21:09", - "author_account_age_days": 5044 + "author_account_age_days": 5068 }, "https://github.com/adigayung/ComfyUI-Translator": { - "stars": 0, - "last_update": "2024-07-13 01:18:00", - "author_account_age_days": 240 + "stars": 1, + "last_update": "2024-07-22 07:02:31", + "author_account_age_days": 265 }, "https://github.com/adriflex/ComfyUI_Blender_Texdiff": { "stars": 1, "last_update": "2024-05-22 23:14:18", - "author_account_age_days": 2249 + "author_account_age_days": 2273 }, "https://github.com/aegis72/aegisflow_utility_nodes": { - "stars": 25, + "stars": 26, "last_update": "2024-05-22 22:10:29", - "author_account_age_days": 610 + "author_account_age_days": 635 }, "https://github.com/aegis72/comfyui-styles-all": { - "stars": 35, + "stars": 39, "last_update": "2024-05-22 22:10:41", - "author_account_age_days": 610 + "author_account_age_days": 635 }, "https://github.com/ai-liam/comfyui-liam": { "stars": 2, "last_update": "2024-06-22 03:27:52", - "author_account_age_days": 1548 + "author_account_age_days": 1572 }, "https://github.com/ai-liam/comfyui_liam_util": { - "stars": 2, + "stars": 1, "last_update": "2024-05-22 22:21:23", - "author_account_age_days": 1548 + "author_account_age_days": 1572 + }, + "https://github.com/ai-shizuka/ComfyUI-tbox": { + "stars": 1, + "last_update": "2024-08-12 07:03:30", + "author_account_age_days": 63 }, "https://github.com/aianimation55/ComfyUI-FatLabels": { "stars": 4, "last_update": "2024-05-22 21:26:01", - "author_account_age_days": 301 + "author_account_age_days": 325 + }, + "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL": { + "stars": 3, + "last_update": "2024-07-31 13:39:36", + "author_account_age_days": 41 + }, + "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes": { + "stars": 3, + "last_update": "2024-08-10 01:19:39", + "author_account_age_days": 87 + }, + "https://github.com/akierson/ComfyUI-textnodes": { + "stars": 1, + "last_update": "2024-07-27 04:00:02", + "author_account_age_days": 2386 + }, + "https://github.com/akierson/comfyui-colornodes": { + "stars": 1, + "last_update": "2024-07-27 00:41:45", + "author_account_age_days": 2386 + }, + "https://github.com/al-swaiti/All-IN-ONE-style": { + "stars": 1, + "last_update": "2024-07-30 05:59:49", + "author_account_age_days": 981 }, "https://github.com/al-swaiti/ComfyUI-CascadeResolutions": { "stars": 2, - "last_update": "2024-07-15 01:13:43", - "author_account_age_days": 957 + "last_update": "2024-07-31 13:48:47", + "author_account_age_days": 981 + }, + "https://github.com/al-swaiti/ComfyUI-OllamaGemini": { + "stars": 3, + "last_update": "2024-08-13 00:24:13", + "author_account_age_days": 981 + }, + "https://github.com/alanhuang67/ComfyUI-FAI-Node": { + "stars": 6, + "last_update": "2024-08-02 03:35:41", + "author_account_age_days": 3541 }, "https://github.com/alessandrozonta/ComfyUI-CenterNode": { "stars": 5, "last_update": "2024-07-16 08:42:41", - "author_account_age_days": 1224 + "author_account_age_days": 1248 }, "https://github.com/alessandrozonta/ComfyUI-Layers": { - "stars": 28, - "last_update": "2024-07-16 08:41:04", - "author_account_age_days": 1224 + "stars": 32, + "last_update": "2024-07-31 13:46:32", + "author_account_age_days": 1248 }, "https://github.com/alessandrozonta/ComfyUI-OpenPose": { - "stars": 6, - "last_update": "2024-07-16 08:32:47", - "author_account_age_days": 1224 + "stars": 7, + "last_update": "2024-07-31 13:51:14", + "author_account_age_days": 1248 }, "https://github.com/alexopus/ComfyUI-Image-Saver": { - "stars": 32, - "last_update": "2024-07-20 22:41:02", - "author_account_age_days": 2707 + "stars": 34, + "last_update": "2024-08-04 12:15:18", + "author_account_age_days": 2731 }, "https://github.com/ali1234/comfyui-job-iterator": { - "stars": 67, + "stars": 68, "last_update": "2024-05-22 20:54:21", - "author_account_age_days": 4887 + "author_account_age_days": 4912 }, "https://github.com/alisson-anjos/ComfyUI-Ollama-Describer": { - "stars": 39, + "stars": 42, "last_update": "2024-07-13 18:13:27", - "author_account_age_days": 628 + "author_account_age_days": 652 + }, + "https://github.com/alpertunga-bile/image-caption-comfyui": { + "stars": 3, + "last_update": "2024-08-11 12:34:57", + "author_account_age_days": 1324 }, "https://github.com/alpertunga-bile/prompt-generator-comfyui": { - "stars": 67, - "last_update": "2024-07-20 11:07:40", - "author_account_age_days": 1300 + "stars": 72, + "last_update": "2024-08-11 12:27:20", + "author_account_age_days": 1324 }, "https://github.com/alsritter/asymmetric-tiling-comfyui": { "stars": 15, "last_update": "2024-05-22 20:43:07", - "author_account_age_days": 2021 + "author_account_age_days": 2046 }, "https://github.com/alt-key-project/comfyui-dream-project": { - "stars": 75, - "last_update": "2024-07-01 05:34:14", - "author_account_age_days": 687 + "stars": 77, + "last_update": "2024-07-31 15:02:26", + "author_account_age_days": 712 }, "https://github.com/alt-key-project/comfyui-dream-video-batches": { - "stars": 54, - "last_update": "2024-07-01 05:37:03", - "author_account_age_days": 687 + "stars": 59, + "last_update": "2024-08-14 01:26:20", + "author_account_age_days": 712 }, "https://github.com/an90ray/ComfyUI_RErouter_CustomNodes": { "stars": 0, "last_update": "2024-05-22 22:21:00", - "author_account_age_days": 216 + "author_account_age_days": 240 }, "https://github.com/andersxa/comfyui-PromptAttention": { "stars": 22, "last_update": "2024-06-20 11:09:25", - "author_account_age_days": 2980 + "author_account_age_days": 3004 }, "https://github.com/angeloshredder/StableCascadeResizer": { "stars": 2, "last_update": "2024-05-23 00:12:55", - "author_account_age_days": 1856 + "author_account_age_days": 1880 }, "https://github.com/ansonkao/comfyui-geometry": { "stars": 7, "last_update": "2024-06-14 09:03:19", - "author_account_age_days": 373 + "author_account_age_days": 397 }, "https://github.com/antrobot1234/antrobots-comfyUI-nodepack": { - "stars": 9, + "stars": 10, "last_update": "2024-05-28 14:44:16", - "author_account_age_days": 2890 + "author_account_age_days": 2914 }, "https://github.com/aria1th/ComfyUI-LogicUtils": { "stars": 21, "last_update": "2024-07-16 12:53:38", - "author_account_age_days": 2372 + "author_account_age_days": 2397 }, "https://github.com/asagi4/ComfyUI-Adaptive-Guidance": { - "stars": 18, - "last_update": "2024-07-03 13:54:53", - "author_account_age_days": 468 + "stars": 26, + "last_update": "2024-08-13 20:38:30", + "author_account_age_days": 492 }, "https://github.com/asagi4/ComfyUI-CADS": { - "stars": 34, - "last_update": "2024-05-23 18:14:56", - "author_account_age_days": 468 + "stars": 36, + "last_update": "2024-07-31 16:02:55", + "author_account_age_days": 492 }, "https://github.com/asagi4/comfyui-prompt-control": { - "stars": 166, - "last_update": "2024-07-21 15:37:44", - "author_account_age_days": 468 + "stars": 171, + "last_update": "2024-08-07 13:57:21", + "author_account_age_days": 492 }, "https://github.com/asagi4/comfyui-utility-nodes": { "stars": 7, "last_update": "2024-05-25 11:40:49", - "author_account_age_days": 468 + "author_account_age_days": 492 }, "https://github.com/aszc-dev/ComfyUI-CoreMLSuite": { - "stars": 92, - "last_update": "2024-07-04 06:44:42", - "author_account_age_days": 2754 + "stars": 104, + "last_update": "2024-08-01 19:03:25", + "author_account_age_days": 2778 }, "https://github.com/atmaranto/ComfyUI-SaveAsScript": { - "stars": 56, + "stars": 66, "last_update": "2024-06-14 09:01:17", - "author_account_age_days": 2375 + "author_account_age_days": 2400 }, "https://github.com/audioscavenger/ComfyUI-Thumbnails": { - "stars": 10, - "last_update": "2024-06-07 07:19:30", - "author_account_age_days": 4148 + "stars": 12, + "last_update": "2024-07-27 18:33:38", + "author_account_age_days": 4172 }, "https://github.com/audioscavenger/save-image-extended-comfyui": { - "stars": 28, - "last_update": "2024-06-27 18:28:01", - "author_account_age_days": 4148 + "stars": 39, + "last_update": "2024-07-31 18:03:29", + "author_account_age_days": 4172 }, "https://github.com/avatechai/avatar-graph-comfyui": { - "stars": 225, + "stars": 233, "last_update": "2024-05-22 21:14:14", - "author_account_age_days": 881 + "author_account_age_days": 905 }, "https://github.com/aws-samples/comfyui-llm-node-for-amazon-bedrock": { - "stars": 5, - "last_update": "2024-07-21 03:25:08", - "author_account_age_days": 3586 + "stars": 6, + "last_update": "2024-07-23 06:12:08", + "author_account_age_days": 3610 }, "https://github.com/azure-dragon-ai/ComfyUI-ClipScore-Nodes": { "stars": 3, "last_update": "2024-05-22 23:16:28", - "author_account_age_days": 328 + "author_account_age_days": 353 }, "https://github.com/badayvedat/ComfyUI-fal-Connector": { - "stars": 15, - "last_update": "2024-07-17 14:33:21", - "author_account_age_days": 1798 + "stars": 18, + "last_update": "2024-08-02 17:14:46", + "author_account_age_days": 1822 }, "https://github.com/badjeff/comfyui_lora_tag_loader": { - "stars": 48, + "stars": 50, "last_update": "2024-05-22 20:40:03", - "author_account_age_days": 5390 + "author_account_age_days": 5414 }, "https://github.com/baicai99/ComfyUI-FrameSkipping": { + "stars": 8, + "last_update": "2024-08-06 06:10:48", + "author_account_age_days": 882 + }, + "https://github.com/bananasss00/ComfyUI-SP-Nodes": { "stars": 6, - "last_update": "2024-06-18 10:25:55", - "author_account_age_days": 858 + "last_update": "2024-08-10 13:18:50", + "author_account_age_days": 2585 }, "https://github.com/banodoco/steerable-motion": { - "stars": 769, + "stars": 792, "last_update": "2024-06-15 23:01:54", - "author_account_age_days": 429 + "author_account_age_days": 453 }, "https://github.com/bash-j/mikey_nodes": { - "stars": 85, - "last_update": "2024-06-15 10:31:20", - "author_account_age_days": 4214 + "stars": 96, + "last_update": "2024-08-08 00:42:11", + "author_account_age_days": 4239 }, "https://github.com/bedovyy/ComfyUI_NAIDGenerator": { - "stars": 19, - "last_update": "2024-07-20 17:42:45", - "author_account_age_days": 390 + "stars": 31, + "last_update": "2024-08-12 17:06:31", + "author_account_age_days": 414 }, "https://github.com/bilal-arikan/ComfyUI_TextAssets": { "stars": 2, "last_update": "2024-05-22 23:23:50", - "author_account_age_days": 3535 + "author_account_age_days": 3559 }, "https://github.com/bitaffinity/ComfyUI_HF_Inference": { "stars": 1, "last_update": "2024-06-14 10:23:29", - "author_account_age_days": 84 + "author_account_age_days": 108 + }, + "https://github.com/blackcodetavern/ComfyUI-Benripack": { + "stars": 0, + "last_update": "2024-08-14 02:16:49", + "author_account_age_days": 2925 }, "https://github.com/blepping/ComfyUI-bleh": { - "stars": 31, + "stars": 32, "last_update": "2024-05-22 23:17:49", - "author_account_age_days": 181 + "author_account_age_days": 205 }, "https://github.com/blepping/ComfyUI-sonar": { "stars": 31, "last_update": "2024-05-22 23:18:26", - "author_account_age_days": 181 + "author_account_age_days": 205 }, "https://github.com/blepping/comfyui_jankhidiffusion": { - "stars": 101, - "last_update": "2024-05-22 23:18:40", - "author_account_age_days": 181 + "stars": 109, + "last_update": "2024-08-14 17:07:17", + "author_account_age_days": 205 + }, + "https://github.com/blepping/comfyui_overly_complicated_sampling": { + "stars": 14, + "last_update": "2024-08-09 14:52:53", + "author_account_age_days": 205 }, "https://github.com/blueraincoatli/comfyUI_SillyNodes": { "stars": 3, "last_update": "2024-06-09 13:30:57", - "author_account_age_days": 340 + "author_account_age_days": 364 }, "https://github.com/bluevisor/ComfyUI_PS_Blend_Node": { "stars": 1, "last_update": "2024-07-08 12:38:26", - "author_account_age_days": 4594 + "author_account_age_days": 4618 }, "https://github.com/bmad4ever/ComfyUI-Bmad-DirtyUndoRedo": { "stars": 50, "last_update": "2024-05-22 18:11:51", - "author_account_age_days": 3564 + "author_account_age_days": 3588 }, "https://github.com/bmad4ever/comfyui_ab_samplercustom": { "stars": 6, "last_update": "2024-06-21 00:02:39", - "author_account_age_days": 3564 + "author_account_age_days": 3588 }, "https://github.com/bmad4ever/comfyui_bmad_nodes": { - "stars": 48, - "last_update": "2024-06-13 10:42:09", - "author_account_age_days": 3564 + "stars": 52, + "last_update": "2024-08-02 22:00:19", + "author_account_age_days": 3588 }, "https://github.com/bmad4ever/comfyui_lists_cartesian_product": { "stars": 3, "last_update": "2024-05-22 20:18:07", - "author_account_age_days": 3564 + "author_account_age_days": 3588 }, "https://github.com/bmad4ever/comfyui_quilting": { - "stars": 4, - "last_update": "2024-07-13 00:51:04", - "author_account_age_days": 3564 + "stars": 6, + "last_update": "2024-08-13 19:27:05", + "author_account_age_days": 3588 }, "https://github.com/bmad4ever/comfyui_wfc_like": { - "stars": 5, - "last_update": "2024-06-02 23:06:37", - "author_account_age_days": 3564 + "stars": 6, + "last_update": "2024-08-02 22:01:12", + "author_account_age_days": 3588 }, "https://github.com/bobmagicii/comfykit-custom-nodes": { "stars": 1, "last_update": "2024-06-04 20:04:00", - "author_account_age_days": 4772 + "author_account_age_days": 4796 }, "https://github.com/bradsec/ComfyUI_ResolutionSelector": { "stars": 8, "last_update": "2024-07-07 12:15:49", - "author_account_age_days": 3683 + "author_account_age_days": 3707 }, "https://github.com/braintacles/braintacles-comfyui-nodes": { "stars": 1, - "last_update": "2024-05-23 06:06:16", - "author_account_age_days": 458 + "last_update": "2024-07-31 15:01:52", + "author_account_age_days": 482 }, "https://github.com/brianfitzgerald/style_aligned_comfy": { - "stars": 259, + "stars": 267, "last_update": "2024-05-30 14:23:40", - "author_account_age_days": 4267 + "author_account_age_days": 4291 }, "https://github.com/bronkula/comfyui-fitsize": { - "stars": 36, + "stars": 39, "last_update": "2024-05-22 21:32:34", - "author_account_age_days": 5182 + "author_account_age_days": 5207 }, "https://github.com/bruefire/ComfyUI-SeqImageLoader": { - "stars": 28, - "last_update": "2024-06-08 15:48:49", - "author_account_age_days": 2393 + "stars": 29, + "last_update": "2024-08-01 16:03:12", + "author_account_age_days": 2417 }, "https://github.com/budihartono/comfyui_otonx_nodes": { "stars": 1, - "last_update": "2024-05-25 04:10:08", - "author_account_age_days": 4713 + "last_update": "2024-07-31 16:01:47", + "author_account_age_days": 4738 }, "https://github.com/bvhari/ComfyUI_ImageProcessing": { - "stars": 18, - "last_update": "2024-05-22 18:08:40", - "author_account_age_days": 1202 + "stars": 19, + "last_update": "2024-08-03 03:58:44", + "author_account_age_days": 1226 }, "https://github.com/bvhari/ComfyUI_LatentToRGB": { "stars": 11, "last_update": "2024-06-23 11:37:10", - "author_account_age_days": 1202 + "author_account_age_days": 1226 }, "https://github.com/bvhari/ComfyUI_PerpWeight": { - "stars": 12, - "last_update": "2024-05-22 18:09:06", - "author_account_age_days": 1202 + "stars": 13, + "last_update": "2024-08-03 03:58:28", + "author_account_age_days": 1226 }, "https://github.com/bvhari/ComfyUI_SUNoise": { - "stars": 6, - "last_update": "2024-07-06 13:37:18", - "author_account_age_days": 1202 + "stars": 8, + "last_update": "2024-08-03 03:57:46", + "author_account_age_days": 1226 + }, + "https://github.com/caleboleary/ComfyUI-Arc2Face": { + "stars": 28, + "last_update": "2024-08-06 14:41:13", + "author_account_age_days": 3354 + }, + "https://github.com/caleboleary/Comfyui-calbenodes": { + "stars": 0, + "last_update": "2024-08-14 05:00:37", + "author_account_age_days": 3354 }, "https://github.com/cdb-boop/ComfyUI-Bringing-Old-Photos-Back-to-Life": { - "stars": 265, - "last_update": "2024-06-21 15:05:26", - "author_account_age_days": 1231 + "stars": 291, + "last_update": "2024-08-01 09:05:38", + "author_account_age_days": 1256 }, "https://github.com/cdb-boop/comfyui-image-round": { - "stars": 0, + "stars": 2, "last_update": "2024-05-23 00:09:02", - "author_account_age_days": 1231 + "author_account_age_days": 1256 + }, + "https://github.com/cdxOo/comfyui-text-node-with-comments": { + "stars": 1, + "last_update": "2024-08-03 00:54:38", + "author_account_age_days": 3347 }, "https://github.com/celsojr2013/comfyui_jamworks_client": { "stars": 0, "last_update": "2024-06-23 12:35:44", - "author_account_age_days": 3426 + "author_account_age_days": 3450 }, "https://github.com/celsojr2013/comfyui_simpletools": { "stars": 2, "last_update": "2024-06-22 11:35:40", - "author_account_age_days": 3426 + "author_account_age_days": 3450 }, "https://github.com/cerspense/ComfyUI_cspnodes": { - "stars": 24, - "last_update": "2024-06-27 22:39:06", - "author_account_age_days": 2709 + "stars": 26, + "last_update": "2024-08-01 09:56:36", + "author_account_age_days": 2733 }, "https://github.com/ceruleandeep/ComfyUI-LLaVA-Captioner": { - "stars": 81, - "last_update": "2024-05-22 22:17:55", - "author_account_age_days": 1180 + "stars": 88, + "last_update": "2024-08-03 16:22:31", + "author_account_age_days": 1205 }, "https://github.com/chakib-belgaid/ComfyUI-autosize": { "stars": 0, "last_update": "2024-06-14 07:13:20", - "author_account_age_days": 3863 + "author_account_age_days": 3887 }, "https://github.com/chakib-belgaid/Comfyui_Prompt_styler": { "stars": 0, "last_update": "2024-07-01 12:40:52", - "author_account_age_days": 3863 + "author_account_age_days": 3887 }, "https://github.com/chandlergis/ComfyUI-IMG_Query": { "stars": 1, "last_update": "2024-05-23 01:25:57", - "author_account_age_days": 383 + "author_account_age_days": 408 }, "https://github.com/chandlergis/ComfyUI_EmojiOverlay": { "stars": 0, "last_update": "2024-06-14 09:05:03", - "author_account_age_days": 383 + "author_account_age_days": 408 }, "https://github.com/chaojie/ComfyUI-AniPortrait": { - "stars": 232, + "stars": 241, "last_update": "2024-05-22 22:26:03", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-CameraCtrl-Wrapper": { - "stars": 16, + "stars": 17, "last_update": "2024-06-14 09:07:23", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Champ": { - "stars": 19, + "stars": 24, "last_update": "2024-05-22 22:26:47", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-DragAnything": { "stars": 66, "last_update": "2024-06-14 10:23:53", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-DragNUWA": { - "stars": 367, + "stars": 374, "last_update": "2024-06-14 10:25:01", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-DynamiCrafter": { - "stars": 113, + "stars": 121, "last_update": "2024-06-14 10:23:59", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-EasyAnimate": { - "stars": 40, + "stars": 45, "last_update": "2024-05-22 22:24:00", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Gemma": { "stars": 5, "last_update": "2024-05-22 22:27:47", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-I2VGEN-XL": { "stars": 27, "last_update": "2024-06-14 09:06:10", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Img2Img-Turbo": { "stars": 36, "last_update": "2024-05-22 22:26:30", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-LaVIT": { - "stars": 10, + "stars": 11, "last_update": "2024-06-14 10:27:44", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-LightGlue": { - "stars": 48, + "stars": 49, "last_update": "2024-01-20 16:53:51", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Moore-AnimateAnyone": { - "stars": 203, + "stars": 205, "last_update": "2024-06-10 20:16:06", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Motion-Vector-Extractor": { "stars": 1, "last_update": "2024-06-14 10:26:15", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-MotionCtrl": { - "stars": 131, + "stars": 132, "last_update": "2024-06-14 10:26:02", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-MotionCtrl-SVD": { - "stars": 80, + "stars": 82, "last_update": "2024-06-14 10:26:30", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-MuseTalk": { - "stars": 157, + "stars": 171, "last_update": "2024-05-22 22:25:07", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-MuseV": { - "stars": 128, + "stars": 130, "last_update": "2024-05-22 22:25:31", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Open-Sora": { - "stars": 89, + "stars": 90, "last_update": "2024-07-19 05:13:25", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Open-Sora-Plan": { "stars": 49, "last_update": "2024-05-29 16:15:10", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Panda3d": { "stars": 13, "last_update": "2024-06-14 10:28:47", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Pymunk": { "stars": 16, "last_update": "2024-06-14 12:02:32", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-RAFT": { "stars": 25, "last_update": "2024-06-14 11:02:00", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-SimDA": { "stars": 13, "last_update": "2024-06-14 12:02:39", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Trajectory": { "stars": 5, "last_update": "2024-05-22 22:27:12", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-Video-Editing-X-Attention": { "stars": 17, "last_update": "2024-06-14 10:28:16", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-dust3r": { "stars": 15, "last_update": "2024-05-22 22:27:33", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI_StreamingT2V": { - "stars": 26, + "stars": 28, "last_update": "2024-06-14 10:26:21", - "author_account_age_days": 4861 + "author_account_age_days": 4885 }, "https://github.com/chaosaiart/Chaosaiart-Nodes": { - "stars": 48, + "stars": 49, "last_update": "2024-05-27 10:55:18", - "author_account_age_days": 361 + "author_account_age_days": 385 }, "https://github.com/chenpx976/ComfyUI-RunRunRun": { "stars": 0, "last_update": "2024-05-23 01:19:37", - "author_account_age_days": 3442 + "author_account_age_days": 3467 }, "https://github.com/chesnokovivan/ComfyUI-Novakid": { "stars": 0, "last_update": "2024-06-10 20:15:56", - "author_account_age_days": 1557 + "author_account_age_days": 1581 + }, + "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper": { + "stars": 95, + "last_update": "2024-08-09 02:52:13", + "author_account_age_days": 496 }, "https://github.com/chflame163/ComfyUI_FaceSimilarity": { - "stars": 13, + "stars": 16, "last_update": "2024-05-23 12:48:18", - "author_account_age_days": 471 + "author_account_age_days": 496 }, "https://github.com/chflame163/ComfyUI_LayerStyle": { - "stars": 763, - "last_update": "2024-07-21 03:54:23", - "author_account_age_days": 471 + "stars": 888, + "last_update": "2024-08-07 09:27:49", + "author_account_age_days": 496 }, "https://github.com/chflame163/ComfyUI_MSSpeech_TTS": { - "stars": 23, + "stars": 22, "last_update": "2024-05-25 02:39:56", - "author_account_age_days": 471 + "author_account_age_days": 496 }, "https://github.com/chflame163/ComfyUI_WordCloud": { - "stars": 73, + "stars": 78, "last_update": "2024-05-25 02:41:06", - "author_account_age_days": 471 + "author_account_age_days": 496 }, "https://github.com/chibiace/ComfyUI-Chibi-Nodes": { - "stars": 30, - "last_update": "2024-05-22 21:16:12", - "author_account_age_days": 2876 + "stars": 35, + "last_update": "2024-07-29 09:18:36", + "author_account_age_days": 2901 }, "https://github.com/choey/Comfy-Topaz": { - "stars": 27, - "last_update": "2024-06-20 13:52:32", - "author_account_age_days": 5550 + "stars": 29, + "last_update": "2024-07-31 13:42:46", + "author_account_age_days": 5574 }, "https://github.com/chris-the-wiz/EmbeddingsCurveEditor_ComfyUI": { "stars": 8, - "last_update": "2024-06-29 19:13:44", - "author_account_age_days": 1824 + "last_update": "2024-07-31 13:51:59", + "author_account_age_days": 1848 }, "https://github.com/chrisfreilich/virtuoso-nodes": { - "stars": 53, + "stars": 60, "last_update": "2024-06-30 18:26:54", - "author_account_age_days": 759 + "author_account_age_days": 784 }, "https://github.com/chrisgoringe/cg-image-picker": { - "stars": 198, - "last_update": "2024-07-16 07:16:24", - "author_account_age_days": 4092 + "stars": 214, + "last_update": "2024-08-09 04:11:31", + "author_account_age_days": 4117 }, "https://github.com/chrisgoringe/cg-noise": { - "stars": 26, - "last_update": "2024-06-14 08:10:52", - "author_account_age_days": 4092 + "stars": 27, + "last_update": "2024-08-07 04:17:34", + "author_account_age_days": 4117 + }, + "https://github.com/chrisgoringe/cg-noisetools": { + "stars": 4, + "last_update": "2024-08-15 02:44:00", + "author_account_age_days": 4117 }, "https://github.com/chrisgoringe/cg-prompt-info": { "stars": 27, "last_update": "2024-05-22 21:07:33", - "author_account_age_days": 4092 + "author_account_age_days": 4117 }, "https://github.com/chrisgoringe/cg-use-everywhere": { - "stars": 382, - "last_update": "2024-07-11 00:54:55", - "author_account_age_days": 4092 + "stars": 410, + "last_update": "2024-08-06 09:16:42", + "author_account_age_days": 4117 }, "https://github.com/chrish-slingshot/CrasHUtils": { "stars": 11, "last_update": "2024-06-20 12:53:00", - "author_account_age_days": 628 + "author_account_age_days": 652 }, "https://github.com/christian-byrne/audio-separation-nodes-comfyui": { - "stars": 113, - "last_update": "2024-07-19 21:22:51", - "author_account_age_days": 1376 + "stars": 140, + "last_update": "2024-07-23 19:02:15", + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/comfyui-default-values-manager": { - "stars": 8, - "last_update": "2024-07-08 13:59:42", - "author_account_age_days": 1376 + "stars": 9, + "last_update": "2024-07-28 20:52:51", + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/comfyui-search-navigation": { - "stars": 6, + "stars": 8, "last_update": "2024-06-26 04:41:12", - "author_account_age_days": 1376 + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/img2colors-comfyui-node": { "stars": 6, "last_update": "2024-06-24 07:26:35", - "author_account_age_days": 1376 + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/img2txt-comfyui-nodes": { - "stars": 34, - "last_update": "2024-06-23 22:15:59", - "author_account_age_days": 1376 + "stars": 63, + "last_update": "2024-08-09 11:19:02", + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/size-match-compositing-nodes": { + "stars": 5, + "last_update": "2024-07-23 23:26:48", + "author_account_age_days": 1400 + }, + "https://github.com/christian-byrne/youtube-dl-comfyui": { "stars": 3, - "last_update": "2024-06-23 21:00:23", - "author_account_age_days": 1376 + "last_update": "2024-07-31 13:39:48", + "author_account_age_days": 1400 + }, + "https://github.com/city96/ComfyUI-GGUF": { + "stars": 9, + "last_update": "2024-08-15 05:05:43", + "author_account_age_days": 549 }, "https://github.com/city96/ComfyUI_ColorMod": { - "stars": 45, - "last_update": "2024-05-22 18:06:19", - "author_account_age_days": 525 + "stars": 66, + "last_update": "2024-08-06 22:38:54", + "author_account_age_days": 549 }, "https://github.com/city96/ComfyUI_DiT": { - "stars": 3, - "last_update": "2024-05-22 18:06:05", - "author_account_age_days": 525 + "stars": 4, + "last_update": "2024-08-06 22:44:33", + "author_account_age_days": 549 }, "https://github.com/city96/ComfyUI_ExtraModels": { - "stars": 331, - "last_update": "2024-07-16 22:25:55", - "author_account_age_days": 525 + "stars": 352, + "last_update": "2024-08-07 11:42:47", + "author_account_age_days": 549 }, "https://github.com/city96/ComfyUI_NetDist": { - "stars": 241, + "stars": 262, "last_update": "2024-05-22 18:05:10", - "author_account_age_days": 525 + "author_account_age_days": 549 }, "https://github.com/city96/SD-Advanced-Noise": { - "stars": 19, + "stars": 22, "last_update": "2024-05-22 18:05:35", - "author_account_age_days": 525 + "author_account_age_days": 549 }, "https://github.com/city96/SD-Latent-Interposer": { - "stars": 192, - "last_update": "2024-06-17 05:27:08", - "author_account_age_days": 525 + "stars": 204, + "last_update": "2024-08-06 22:01:47", + "author_account_age_days": 549 }, "https://github.com/city96/SD-Latent-Upscaler": { - "stars": 118, + "stars": 123, "last_update": "2024-05-22 18:05:50", - "author_account_age_days": 525 + "author_account_age_days": 549 }, "https://github.com/civitai/comfy-nodes": { - "stars": 87, + "stars": 93, "last_update": "2024-06-23 03:35:42", - "author_account_age_days": 626 + "author_account_age_days": 650 }, "https://github.com/claussteinmassl/ComfyUI-CS-CustomNodes": { "stars": 1, "last_update": "2024-06-14 09:03:10", - "author_account_age_days": 2728 + "author_account_age_days": 2752 }, "https://github.com/comfyanonymous/ComfyUI": { - "stars": 42801, - "last_update": "2024-07-21 21:29:07", - "author_account_age_days": 576 + "stars": 46443, + "last_update": "2024-08-15 05:04:19", + "author_account_age_days": 600 }, "https://github.com/comfyanonymous/ComfyUI_TensorRT": { - "stars": 369, - "last_update": "2024-07-14 01:30:05", - "author_account_age_days": 576 + "stars": 414, + "last_update": "2024-08-14 01:28:17", + "author_account_age_days": 600 }, "https://github.com/comfyanonymous/ComfyUI_experiments": { - "stars": 145, + "stars": 148, "last_update": "2024-05-22 15:29:49", - "author_account_age_days": 576 + "author_account_age_days": 600 }, "https://github.com/concarne000/ConCarneNode": { "stars": 4, "last_update": "2024-05-22 22:10:18", - "author_account_age_days": 1928 + "author_account_age_days": 1952 }, "https://github.com/conquestace/ComfyUI-ImageUploader": { "stars": 2, "last_update": "2024-05-23 01:25:49", - "author_account_age_days": 4636 + "author_account_age_days": 4661 }, "https://github.com/coolzilj/ComfyUI-LJNodes": { - "stars": 63, + "stars": 67, "last_update": "2024-06-15 01:57:32", - "author_account_age_days": 4690 + "author_account_age_days": 4715 }, "https://github.com/coolzilj/ComfyUI-Photopea": { - "stars": 62, + "stars": 70, "last_update": "2024-06-14 08:10:57", - "author_account_age_days": 4690 + "author_account_age_days": 4715 }, "https://github.com/coreyryanhanson/ComfyQR": { - "stars": 53, - "last_update": "2024-07-05 04:13:09", - "author_account_age_days": 3083 + "stars": 58, + "last_update": "2024-08-09 16:58:16", + "author_account_age_days": 3108 }, "https://github.com/coreyryanhanson/ComfyQR-scanning-nodes": { - "stars": 10, - "last_update": "2024-07-05 03:55:48", - "author_account_age_days": 3083 + "stars": 11, + "last_update": "2024-08-09 16:59:00", + "author_account_age_days": 3108 }, "https://github.com/cozy-comfyui/cozy_comm": { "stars": 1, "last_update": "2024-07-18 18:01:38", - "author_account_age_days": 93 + "author_account_age_days": 118 }, "https://github.com/cozymantis/cozy-utils-comfyui-nodes": { "stars": 3, "last_update": "2024-07-07 15:38:05", - "author_account_age_days": 136 + "author_account_age_days": 160 }, "https://github.com/cozymantis/human-parser-comfyui-node": { - "stars": 57, + "stars": 62, "last_update": "2024-07-07 15:31:17", - "author_account_age_days": 136 + "author_account_age_days": 160 }, "https://github.com/cozymantis/pose-generator-comfyui-node": { - "stars": 55, + "stars": 57, "last_update": "2024-07-07 15:22:45", - "author_account_age_days": 136 + "author_account_age_days": 160 }, "https://github.com/crystian/ComfyUI-Crystools": { - "stars": 551, - "last_update": "2024-07-21 20:59:17", - "author_account_age_days": 4144 + "stars": 617, + "last_update": "2024-08-01 23:14:21", + "author_account_age_days": 4169 }, "https://github.com/crystian/ComfyUI-Crystools-save": { - "stars": 32, - "last_update": "2024-07-01 01:19:58", - "author_account_age_days": 4144 + "stars": 34, + "last_update": "2024-07-31 20:06:26", + "author_account_age_days": 4169 }, "https://github.com/cubiq/ComfyUI_FaceAnalysis": { - "stars": 242, - "last_update": "2024-07-19 12:35:43", - "author_account_age_days": 5038 + "stars": 269, + "last_update": "2024-07-31 13:45:41", + "author_account_age_days": 5062 }, "https://github.com/cubiq/ComfyUI_IPAdapter_plus": { - "stars": 3349, - "last_update": "2024-07-18 13:12:57", - "author_account_age_days": 5038 + "stars": 3587, + "last_update": "2024-08-08 09:20:05", + "author_account_age_days": 5062 }, "https://github.com/cubiq/ComfyUI_InstantID": { - "stars": 1016, - "last_update": "2024-07-11 17:26:22", - "author_account_age_days": 5038 + "stars": 1097, + "last_update": "2024-07-31 13:46:25", + "author_account_age_days": 5062 }, "https://github.com/cubiq/ComfyUI_SimpleMath": { "stars": 17, "last_update": "2024-06-14 09:02:50", - "author_account_age_days": 5038 + "author_account_age_days": 5062 }, "https://github.com/cubiq/ComfyUI_essentials": { - "stars": 374, - "last_update": "2024-07-19 17:22:47", - "author_account_age_days": 5038 + "stars": 422, + "last_update": "2024-08-14 14:57:02", + "author_account_age_days": 5062 }, "https://github.com/cubiq/PuLID_ComfyUI": { - "stars": 452, - "last_update": "2024-07-11 17:21:37", - "author_account_age_days": 5038 + "stars": 496, + "last_update": "2024-07-31 13:46:36", + "author_account_age_days": 5062 }, "https://github.com/cuongloveit/comfy_http_request": { "stars": 0, "last_update": "2024-06-14 11:00:11", - "author_account_age_days": 3279 + "author_account_age_days": 3304 }, "https://github.com/curiousjp/ComfyUI-MaskBatchPermutations": { - "stars": 4, + "stars": 5, "last_update": "2024-05-28 13:09:32", - "author_account_age_days": 1957 + "author_account_age_days": 1981 }, "https://github.com/czcz1024/Comfyui-FaceCompare": { "stars": 0, "last_update": "2024-06-14 07:13:32", - "author_account_age_days": 4261 + "author_account_age_days": 4285 + }, + "https://github.com/da2el-ai/ComfyUI-d2-send-eagle": { + "stars": 4, + "last_update": "2024-08-05 04:11:52", + "author_account_age_days": 441 }, "https://github.com/da2el-ai/ComfyUI-d2-size-selector": { - "stars": 2, + "stars": 4, "last_update": "2024-05-23 01:16:17", - "author_account_age_days": 417 + "author_account_age_days": 441 }, "https://github.com/da2el-ai/ComfyUI-d2-steps": { - "stars": 5, - "last_update": "2024-05-23 01:16:06", - "author_account_age_days": 417 + "stars": 6, + "last_update": "2024-08-04 05:16:21", + "author_account_age_days": 441 + }, + "https://github.com/dadoirie/ComfyUI_Dados_Nodes": { + "stars": 0, + "last_update": "2024-08-14 16:59:28", + "author_account_age_days": 1641 }, "https://github.com/dagthomas/comfyui_dagthomas": { - "stars": 86, - "last_update": "2024-07-07 16:56:46", - "author_account_age_days": 4099 + "stars": 139, + "last_update": "2024-08-13 10:48:59", + "author_account_age_days": 4123 }, "https://github.com/daniabib/ComfyUI_ProPainter_Nodes": { - "stars": 174, + "stars": 201, "last_update": "2024-07-08 21:59:15", - "author_account_age_days": 2432 + "author_account_age_days": 2456 }, "https://github.com/daniel-lewis-ab/ComfyUI-Llama": { - "stars": 27, + "stars": 28, "last_update": "2024-06-29 19:55:42", - "author_account_age_days": 3379 + "author_account_age_days": 3403 }, "https://github.com/daniel-lewis-ab/ComfyUI-TTS": { - "stars": 14, + "stars": 15, "last_update": "2024-06-14 08:09:49", - "author_account_age_days": 3379 + "author_account_age_days": 3403 }, "https://github.com/darkpixel/darkprompts": { "stars": 7, "last_update": "2024-05-23 19:48:02", - "author_account_age_days": 5351 + "author_account_age_days": 5376 }, "https://github.com/dave-palt/comfyui_DSP_imagehelpers": { "stars": 0, "last_update": "2024-05-22 23:12:11", - "author_account_age_days": 185 + "author_account_age_days": 210 }, "https://github.com/daxcay/ComfyUI-DRMN": { - "stars": 19, - "last_update": "2024-07-08 08:25:29", - "author_account_age_days": 122 + "stars": 21, + "last_update": "2024-08-02 14:14:48", + "author_account_age_days": 146 }, "https://github.com/daxcay/ComfyUI-DataSet": { - "stars": 19, - "last_update": "2024-07-08 08:25:29", - "author_account_age_days": 122 + "stars": 21, + "last_update": "2024-08-02 14:14:48", + "author_account_age_days": 146 }, "https://github.com/daxcay/ComfyUI-JDCN": { - "stars": 66, - "last_update": "2024-07-08 14:02:49", - "author_account_age_days": 122 + "stars": 71, + "last_update": "2024-08-02 14:15:38", + "author_account_age_days": 146 }, "https://github.com/daxcay/ComfyUI-NODEJS": { - "stars": 6, - "last_update": "2024-06-13 14:30:45", - "author_account_age_days": 122 + "stars": 7, + "last_update": "2024-08-02 14:14:29", + "author_account_age_days": 146 }, "https://github.com/daxthin/DZ-FaceDetailer": { - "stars": 110, + "stars": 121, "last_update": "2024-06-17 10:00:30", - "author_account_age_days": 1258 + "author_account_age_days": 1283 }, "https://github.com/dchatel/comfyui_facetools": { - "stars": 47, - "last_update": "2024-06-26 10:26:43", - "author_account_age_days": 4563 + "stars": 53, + "last_update": "2024-08-06 17:11:56", + "author_account_age_days": 4587 }, "https://github.com/denfrost/Den_ComfyUI_Workflow": { "stars": 4, "last_update": "2024-06-20 14:57:57", - "author_account_age_days": 3524 + "author_account_age_days": 3548 }, "https://github.com/deroberon/StableZero123-comfyui": { "stars": 137, "last_update": "2024-05-22 22:09:53", - "author_account_age_days": 5323 + "author_account_age_days": 5347 }, "https://github.com/deroberon/demofusion-comfyui": { "stars": 83, "last_update": "2024-05-22 22:09:42", - "author_account_age_days": 5323 + "author_account_age_days": 5347 }, "https://github.com/dfl/comfyui-clip-with-break": { - "stars": 10, + "stars": 11, "last_update": "2024-05-22 23:23:15", - "author_account_age_days": 6001 + "author_account_age_days": 6026 }, "https://github.com/dfl/comfyui-tcd-scheduler": { - "stars": 80, + "stars": 79, "last_update": "2024-05-22 23:23:28", - "author_account_age_days": 6001 + "author_account_age_days": 6026 }, "https://github.com/diStyApps/ComfyUI_FrameMaker": { "stars": 10, "last_update": "2024-05-23 00:11:33", - "author_account_age_days": 4231 + "author_account_age_days": 4256 }, "https://github.com/dicksondickson/ComfyUI-Dickson-Nodes": { - "stars": 6, - "last_update": "2024-07-13 22:25:22", - "author_account_age_days": 4018 + "stars": 8, + "last_update": "2024-07-26 06:15:23", + "author_account_age_days": 4042 }, "https://github.com/digitaljohn/comfyui-propost": { - "stars": 111, - "last_update": "2024-07-02 15:28:37", - "author_account_age_days": 4545 + "stars": 119, + "last_update": "2024-08-11 12:33:22", + "author_account_age_days": 4569 }, "https://github.com/dimtoneff/ComfyUI-PixelArt-Detector": { - "stars": 172, - "last_update": "2024-07-06 10:15:30", - "author_account_age_days": 3442 + "stars": 179, + "last_update": "2024-07-31 13:44:39", + "author_account_age_days": 3466 }, "https://github.com/diontimmer/ComfyUI-Vextra-Nodes": { "stars": 62, "last_update": "2024-06-20 16:48:44", - "author_account_age_days": 4798 + "author_account_age_days": 4822 }, "https://github.com/discopixel-studio/comfyui-discopixel": { "stars": 7, "last_update": "2024-06-14 09:03:19", - "author_account_age_days": 373 + "author_account_age_days": 397 }, "https://github.com/discus0434/comfyui-aesthetic-predictor-v2-5": { "stars": 5, "last_update": "2024-06-14 08:12:05", - "author_account_age_days": 1497 + "author_account_age_days": 1521 }, "https://github.com/discus0434/comfyui-caching-embeddings": { "stars": 1, "last_update": "2024-06-14 08:59:36", - "author_account_age_days": 1497 + "author_account_age_days": 1521 }, "https://github.com/djbielejeski/a-person-mask-generator": { - "stars": 243, - "last_update": "2024-06-15 04:06:44", - "author_account_age_days": 4311 + "stars": 253, + "last_update": "2024-07-31 13:47:31", + "author_account_age_days": 4335 }, "https://github.com/dmMaze/sketch2manga": { - "stars": 29, + "stars": 30, "last_update": "2024-06-30 03:27:55", - "author_account_age_days": 1877 + "author_account_age_days": 1901 }, "https://github.com/dmarx/ComfyUI-AudioReactive": { "stars": 10, "last_update": "2024-05-22 22:12:53", - "author_account_age_days": 4532 + "author_account_age_days": 4556 }, "https://github.com/dmarx/ComfyUI-Keyframed": { - "stars": 81, + "stars": 82, "last_update": "2024-07-01 01:41:23", - "author_account_age_days": 4532 + "author_account_age_days": 4556 }, "https://github.com/drago87/ComfyUI_Dragos_Nodes": { "stars": 3, "last_update": "2024-05-22 21:32:15", - "author_account_age_days": 3797 + "author_account_age_days": 3821 }, "https://github.com/drustan-hawk/primitive-types": { - "stars": 5, - "last_update": "2024-06-30 06:10:23", - "author_account_age_days": 316 + "stars": 7, + "last_update": "2024-08-01 17:44:51", + "author_account_age_days": 340 }, "https://github.com/e7mac/ComfyUI-ShadertoyGL": { "stars": 2, "last_update": "2024-06-20 14:52:42", - "author_account_age_days": 4831 + "author_account_age_days": 4855 }, "https://github.com/ealkanat/comfyui_easy_padding": { "stars": 13, - "last_update": "2024-05-22 21:58:52", - "author_account_age_days": 2490 + "last_update": "2024-07-31 18:03:33", + "author_account_age_days": 2514 + }, + "https://github.com/eastoc/ComfyUI_SemanticSAM": { + "stars": 3, + "last_update": "2024-08-13 19:24:33", + "author_account_age_days": 2769 }, "https://github.com/edenartlab/eden_comfy_pipelines": { - "stars": 42, - "last_update": "2024-07-21 00:57:54", - "author_account_age_days": 300 + "stars": 46, + "last_update": "2024-08-13 17:16:57", + "author_account_age_days": 324 + }, + "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes": { + "stars": 1, + "last_update": "2024-08-05 14:08:18", + "author_account_age_days": 2575 }, "https://github.com/evanspearman/ComfyMath": { - "stars": 59, + "stars": 67, "last_update": "2023-08-27 03:29:04", - "author_account_age_days": 4266 + "author_account_age_days": 4290 }, "https://github.com/exdysa/comfyui-selector": { - "stars": 3, - "last_update": "2024-07-21 15:03:16", - "author_account_age_days": 1023 + "stars": 4, + "last_update": "2024-08-12 01:50:21", + "author_account_age_days": 1047 }, "https://github.com/fablestudio/ComfyUI-Showrunner-Utils": { "stars": 0, "last_update": "2024-06-24 14:27:05", - "author_account_age_days": 2076 + "author_account_age_days": 2100 }, "https://github.com/failfa-st/failfast-comfyui-extensions": { - "stars": 138, - "last_update": "2024-07-19 19:32:50", - "author_account_age_days": 301 + "stars": 145, + "last_update": "2024-08-04 09:50:06", + "author_account_age_days": 325 + }, + "https://github.com/fairy-root/comfyui-ollama-llms": { + "stars": 4, + "last_update": "2024-08-15 05:32:15", + "author_account_age_days": 1986 }, "https://github.com/fearnworks/ComfyUI_FearnworksNodes": { - "stars": 14, - "last_update": "2024-07-13 12:21:26", - "author_account_age_days": 589 + "stars": 16, + "last_update": "2024-08-05 01:50:04", + "author_account_age_days": 613 }, "https://github.com/fexli/fexli-util-node-comfyui": { "stars": 3, "last_update": "2024-05-22 21:27:36", - "author_account_age_days": 1586 + "author_account_age_days": 1610 }, "https://github.com/fexploit/ComfyUI-AutoLabel": { "stars": 6, "last_update": "2024-06-14 08:09:41", - "author_account_age_days": 5071 + "author_account_age_days": 5095 }, "https://github.com/fexploit/ComfyUI-AutoTrimBG": { "stars": 2, "last_update": "2024-05-24 20:38:15", - "author_account_age_days": 5071 + "author_account_age_days": 5095 }, "https://github.com/fexploit/ComfyUI-Classifier": { "stars": 1, "last_update": "2024-06-14 16:58:31", - "author_account_age_days": 5071 + "author_account_age_days": 5095 }, "https://github.com/filipemeneses/comfy_pixelization": { - "stars": 31, + "stars": 33, "last_update": "2024-05-22 20:59:16", - "author_account_age_days": 3503 + "author_account_age_days": 3528 + }, + "https://github.com/filliptm/ComfyUI_FL-Trainer": { + "stars": 114, + "last_update": "2024-08-13 04:56:41", + "author_account_age_days": 1788 }, "https://github.com/filliptm/ComfyUI_Fill-Nodes": { - "stars": 145, - "last_update": "2024-07-21 20:26:12", - "author_account_age_days": 1763 + "stars": 184, + "last_update": "2024-08-15 02:50:24", + "author_account_age_days": 1788 }, "https://github.com/florestefano1975/ComfyUI-HiDiffusion": { - "stars": 137, + "stars": 139, "last_update": "2024-05-22 00:33:06", - "author_account_age_days": 221 + "author_account_age_days": 245 }, "https://github.com/florestefano1975/ComfyUI-StabilityAI-Suite": { "stars": 2, "last_update": "2024-07-10 18:03:39", - "author_account_age_days": 221 + "author_account_age_days": 245 }, "https://github.com/florestefano1975/comfyui-portrait-master": { - "stars": 789, - "last_update": "2024-07-14 15:41:21", - "author_account_age_days": 221 + "stars": 820, + "last_update": "2024-08-10 09:23:43", + "author_account_age_days": 245 }, "https://github.com/florestefano1975/comfyui-prompt-composer": { - "stars": 215, + "stars": 219, "last_update": "2024-07-10 18:03:03", - "author_account_age_days": 221 + "author_account_age_days": 245 }, "https://github.com/flowtyone/ComfyUI-Flowty-CRM": { - "stars": 129, + "stars": 132, "last_update": "2024-06-14 10:23:09", - "author_account_age_days": 301 + "author_account_age_days": 325 }, "https://github.com/flowtyone/ComfyUI-Flowty-LDSR": { - "stars": 170, + "stars": 173, "last_update": "2024-06-14 09:04:51", - "author_account_age_days": 301 + "author_account_age_days": 325 }, "https://github.com/flowtyone/ComfyUI-Flowty-TripoSR": { - "stars": 374, + "stars": 380, "last_update": "2024-06-16 00:53:22", - "author_account_age_days": 301 + "author_account_age_days": 325 }, "https://github.com/flyingshutter/As_ComfyUI_CustomNodes": { "stars": 8, "last_update": "2024-05-22 18:07:19", - "author_account_age_days": 3522 + "author_account_age_days": 3547 }, "https://github.com/fmatray/ComfyUI_BattlemapGrid": { "stars": 0, "last_update": "2024-06-05 22:35:06", - "author_account_age_days": 3649 + "author_account_age_days": 3673 }, "https://github.com/fofr/ComfyUI-HyperSDXL1StepUnetScheduler": { "stars": 12, "last_update": "2024-06-20 11:51:50", - "author_account_age_days": 5135 + "author_account_age_days": 5159 }, "https://github.com/fofr/ComfyUI-Prompter-fofrAI": { - "stars": 41, - "last_update": "2024-06-29 22:10:29", - "author_account_age_days": 5135 + "stars": 51, + "last_update": "2024-08-09 11:37:00", + "author_account_age_days": 5159 + }, + "https://github.com/fofr/comfyui-fofr-toolkit": { + "stars": 5, + "last_update": "2024-08-09 11:36:38", + "author_account_age_days": 5159 }, "https://github.com/fofr/comfyui-replicate": { - "stars": 35, - "last_update": "2024-07-02 17:58:30", - "author_account_age_days": 1635 + "stars": 125, + "last_update": "2024-08-09 11:36:02", + "author_account_age_days": 1660 }, "https://github.com/forever22777/comfyui-self-guidance": { "stars": 6, "last_update": "2024-06-14 07:12:02", - "author_account_age_days": 352 + "author_account_age_days": 376 }, "https://github.com/foxtrot-roger/comfyui-rf-nodes": { "stars": 1, - "last_update": "2024-05-22 23:09:13", - "author_account_age_days": 2348 + "last_update": "2024-08-13 22:01:40", + "author_account_age_days": 2372 }, "https://github.com/frankchieng/ComfyUI_Aniportrait": { - "stars": 48, + "stars": 49, "last_update": "2024-06-26 03:06:51", - "author_account_age_days": 468 + "author_account_age_days": 492 }, "https://github.com/frankchieng/ComfyUI_MagicClothing": { - "stars": 434, - "last_update": "2024-06-24 07:48:07", - "author_account_age_days": 468 + "stars": 458, + "last_update": "2024-08-02 03:10:30", + "author_account_age_days": 492 }, "https://github.com/frankchieng/ComfyUI_llm_easyanimiate": { "stars": 10, "last_update": "2024-06-26 03:13:32", - "author_account_age_days": 468 + "author_account_age_days": 492 }, "https://github.com/fsdymy1024/ComfyUI_fsdymy": { - "stars": 6, + "stars": 8, "last_update": "2024-07-01 17:58:52", - "author_account_age_days": 2233 + "author_account_age_days": 2257 }, "https://github.com/fssorc/ComfyUI_FaceShaper": { - "stars": 4, - "last_update": "2024-07-19 16:59:36", - "author_account_age_days": 4614 + "stars": 42, + "last_update": "2024-08-02 07:35:05", + "author_account_age_days": 4638 }, "https://github.com/gemell1/ComfyUI_GMIC": { - "stars": 6, + "stars": 7, "last_update": "2024-05-22 21:28:51", - "author_account_age_days": 1984 + "author_account_age_days": 2008 }, "https://github.com/get-salt-AI/SaltAI": { - "stars": 66, - "last_update": "2024-06-26 00:32:47", - "author_account_age_days": 143 + "stars": 67, + "last_update": "2024-08-08 05:59:56", + "author_account_age_days": 168 }, "https://github.com/get-salt-AI/SaltAI_AudioViz": { - "stars": 14, + "stars": 17, "last_update": "2024-06-29 16:16:46", - "author_account_age_days": 143 + "author_account_age_days": 168 }, "https://github.com/get-salt-AI/SaltAI_Language_Toolkit": { - "stars": 225, - "last_update": "2024-06-25 23:49:29", - "author_account_age_days": 143 + "stars": 308, + "last_update": "2024-08-15 00:30:10", + "author_account_age_days": 168 }, "https://github.com/get-salt-AI/SaltAI_LlamaIndex": { - "stars": 225, - "last_update": "2024-06-25 23:49:29", - "author_account_age_days": 143 + "stars": 308, + "last_update": "2024-08-15 00:30:10", + "author_account_age_days": 168 }, "https://github.com/ginlov/segment_to_mask_comfyui": { - "stars": 1, + "stars": 2, "last_update": "2024-06-14 10:23:23", - "author_account_age_days": 2039 + "author_account_age_days": 2063 }, "https://github.com/giriss/comfy-image-saver": { - "stars": 154, + "stars": 164, "last_update": "2024-05-22 20:40:55", - "author_account_age_days": 4265 + "author_account_age_days": 4289 + }, + "https://github.com/gisu/comfyui-foxpack": { + "stars": 3, + "last_update": "2024-08-11 18:56:54", + "author_account_age_days": 5051 }, "https://github.com/githubYiheng/ComfyUI_Change_IMAGE_BOREDER": { "stars": 0, "last_update": "2024-05-23 01:20:09", - "author_account_age_days": 3930 + "author_account_age_days": 3955 }, "https://github.com/githubYiheng/ComfyUI_GetFileNameFromURL": { "stars": 0, "last_update": "2024-05-23 01:19:47", - "author_account_age_days": 3930 + "author_account_age_days": 3955 }, "https://github.com/githubYiheng/comfyui_kmeans_filter": { "stars": 0, "last_update": "2024-06-14 09:01:24", - "author_account_age_days": 3930 + "author_account_age_days": 3955 }, "https://github.com/githubYiheng/comfyui_meanshift_filter": { "stars": 0, "last_update": "2024-06-14 10:59:43", - "author_account_age_days": 3930 + "author_account_age_days": 3955 }, "https://github.com/githubYiheng/comfyui_private_postprocessor": { "stars": 0, "last_update": "2024-06-14 08:09:39", - "author_account_age_days": 3930 + "author_account_age_days": 3955 }, "https://github.com/glibsonoran/Plush-for-ComfyUI": { - "stars": 122, - "last_update": "2024-07-12 18:18:04", - "author_account_age_days": 2525 + "stars": 131, + "last_update": "2024-08-15 04:42:55", + "author_account_age_days": 2549 }, "https://github.com/glifxyz/ComfyUI-GlifNodes": { - "stars": 18, - "last_update": "2024-07-11 09:13:38", - "author_account_age_days": 601 + "stars": 21, + "last_update": "2024-07-31 15:02:12", + "author_account_age_days": 625 }, "https://github.com/glowcone/comfyui-base64-to-image": { - "stars": 8, + "stars": 9, "last_update": "2024-07-08 22:53:25", - "author_account_age_days": 3773 + "author_account_age_days": 3797 + }, + "https://github.com/glowcone/comfyui-string-converter": { + "stars": 1, + "last_update": "2024-07-31 13:40:48", + "author_account_age_days": 3797 + }, + "https://github.com/goburiin/nsfwrecog-comfyui": { + "stars": 1, + "last_update": "2024-08-14 02:17:15", + "author_account_age_days": 5 }, "https://github.com/godspede/ComfyUI_Substring": { "stars": 0, "last_update": "2024-07-01 01:05:38", - "author_account_age_days": 3140 + "author_account_age_days": 3165 }, "https://github.com/gokayfem/ComfyUI-Depth-Visualization": { "stars": 49, - "last_update": "2024-05-21 00:37:05", - "author_account_age_days": 1085 + "last_update": "2024-07-27 18:34:02", + "author_account_age_days": 1109 }, "https://github.com/gokayfem/ComfyUI-Dream-Interpreter": { - "stars": 67, - "last_update": "2024-05-21 00:36:50", - "author_account_age_days": 1085 + "stars": 70, + "last_update": "2024-07-31 16:11:04", + "author_account_age_days": 1109 }, "https://github.com/gokayfem/ComfyUI-Texture-Simple": { - "stars": 30, - "last_update": "2024-05-21 00:19:53", - "author_account_age_days": 1085 + "stars": 32, + "last_update": "2024-07-31 16:14:23", + "author_account_age_days": 1109 }, "https://github.com/gokayfem/ComfyUI_VLM_nodes": { - "stars": 308, - "last_update": "2024-07-04 01:40:04", - "author_account_age_days": 1085 + "stars": 331, + "last_update": "2024-07-31 16:13:41", + "author_account_age_days": 1109 }, "https://github.com/gonzalu/ComfyUI_YFG_Comical": { - "stars": 20, - "last_update": "2024-07-02 02:05:08", - "author_account_age_days": 2488 + "stars": 21, + "last_update": "2024-07-31 15:02:48", + "author_account_age_days": 2513 }, "https://github.com/googincheng/ComfyUX": { - "stars": 88, - "last_update": "2024-07-21 17:27:59", - "author_account_age_days": 2816 + "stars": 132, + "last_update": "2024-07-24 10:01:31", + "author_account_age_days": 2840 }, "https://github.com/griptape-ai/ComfyUI-Griptape": { - "stars": 62, - "last_update": "2024-07-21 04:00:19", - "author_account_age_days": 548 + "stars": 82, + "last_update": "2024-08-08 17:54:04", + "author_account_age_days": 572 }, "https://github.com/guill/abracadabra-comfyui": { "stars": 1, "last_update": "2024-06-14 08:12:07", - "author_account_age_days": 4220 + "author_account_age_days": 4244 }, "https://github.com/guoyk93/yk-node-suite-comfyui": { "stars": 10, "last_update": "2024-06-17 10:00:36", - "author_account_age_days": 1516 + "author_account_age_days": 1541 }, "https://github.com/hackkhai/ComfyUI-Image-Matting": { "stars": 15, - "last_update": "2024-06-20 11:25:12", - "author_account_age_days": 1878 + "last_update": "2024-07-31 15:02:56", + "author_account_age_days": 1902 }, "https://github.com/haohaocreates/ComfyUI-HH-Image-Selector": { "stars": 0, - "last_update": "2024-07-18 19:24:35", - "author_account_age_days": 133 + "last_update": "2024-07-28 21:08:27", + "author_account_age_days": 157 }, "https://github.com/hay86/ComfyUI_AceNodes": { - "stars": 10, + "stars": 12, "last_update": "2024-07-15 10:07:09", - "author_account_age_days": 4694 + "author_account_age_days": 4718 }, "https://github.com/hay86/ComfyUI_DDColor": { "stars": 2, "last_update": "2024-06-14 08:12:13", - "author_account_age_days": 4694 + "author_account_age_days": 4718 }, "https://github.com/hay86/ComfyUI_Dreamtalk": { - "stars": 8, - "last_update": "2024-07-02 08:15:01", - "author_account_age_days": 4694 + "stars": 9, + "last_update": "2024-08-15 03:37:37", + "author_account_age_days": 4718 }, "https://github.com/hay86/ComfyUI_Hallo": { "stars": 19, - "last_update": "2024-07-15 09:42:30", - "author_account_age_days": 4694 + "last_update": "2024-07-30 09:55:03", + "author_account_age_days": 4718 }, "https://github.com/hay86/ComfyUI_MiniCPM-V": { - "stars": 11, - "last_update": "2024-07-02 08:09:38", - "author_account_age_days": 4694 + "stars": 21, + "last_update": "2024-08-09 07:52:59", + "author_account_age_days": 4718 }, "https://github.com/hay86/ComfyUI_OpenVoice": { - "stars": 8, + "stars": 10, "last_update": "2024-07-02 08:16:20", - "author_account_age_days": 4694 + "author_account_age_days": 4718 }, "https://github.com/hayden-fr/ComfyUI-Image-Browsing": { "stars": 3, "last_update": "2024-07-15 09:19:31", - "author_account_age_days": 1964 + "author_account_age_days": 1989 }, "https://github.com/hayden-fr/ComfyUI-Model-Manager": { - "stars": 26, - "last_update": "2024-05-22 20:53:55", - "author_account_age_days": 1964 + "stars": 36, + "last_update": "2024-08-09 00:42:39", + "author_account_age_days": 1989 }, "https://github.com/hben35096/ComfyUI-ToolBox": { - "stars": 0, - "last_update": "2024-06-26 18:27:22", - "author_account_age_days": 375 + "stars": 2, + "last_update": "2024-08-08 05:19:58", + "author_account_age_days": 399 }, "https://github.com/heshengtao/comfyui_LLM_party": { - "stars": 241, - "last_update": "2024-07-21 12:27:19", - "author_account_age_days": 2922 + "stars": 413, + "last_update": "2024-08-14 13:27:48", + "author_account_age_days": 2946 }, "https://github.com/hhhzzyang/Comfyui_Lama": { "stars": 41, "last_update": "2024-05-22 21:13:19", - "author_account_age_days": 534 + "author_account_age_days": 559 }, "https://github.com/hiforce/comfyui-hiforce-plugin": { - "stars": 3, + "stars": 4, "last_update": "2024-06-14 08:13:24", - "author_account_age_days": 1829 + "author_account_age_days": 1854 }, "https://github.com/hinablue/ComfyUI_3dPoseEditor": { - "stars": 130, + "stars": 136, "last_update": "2024-06-21 17:38:40", - "author_account_age_days": 5139 + "author_account_age_days": 5163 }, "https://github.com/holchan/ComfyUI-ModelDownloader": { "stars": 2, "last_update": "2024-06-14 08:59:42", - "author_account_age_days": 1619 + "author_account_age_days": 1643 + }, + "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector": { + "stars": 1, + "last_update": "2024-07-23 14:36:35", + "author_account_age_days": 28 }, "https://github.com/huagetai/ComfyUI-Gaffer": { - "stars": 38, + "stars": 40, "last_update": "2024-06-19 00:58:38", - "author_account_age_days": 4659 + "author_account_age_days": 4684 }, "https://github.com/huagetai/ComfyUI_LightGradient": { "stars": 8, "last_update": "2024-05-23 01:21:27", - "author_account_age_days": 4659 + "author_account_age_days": 4684 }, "https://github.com/huchenlei/ComfyUI-IC-Light-Native": { - "stars": 435, - "last_update": "2024-06-21 21:49:44", - "author_account_age_days": 2903 + "stars": 475, + "last_update": "2024-08-14 11:08:07", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI-layerdiffuse": { - "stars": 1323, - "last_update": "2024-07-05 12:52:34", - "author_account_age_days": 2903 + "stars": 1373, + "last_update": "2024-07-31 17:04:32", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI-openpose-editor": { - "stars": 31, - "last_update": "2024-06-26 21:15:34", - "author_account_age_days": 2903 + "stars": 38, + "last_update": "2024-07-31 13:44:16", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI_DanTagGen": { - "stars": 52, - "last_update": "2024-06-21 21:46:47", - "author_account_age_days": 2903 + "stars": 57, + "last_update": "2024-08-01 01:42:14", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI_densediffusion": { - "stars": 90, - "last_update": "2024-06-11 00:39:28", - "author_account_age_days": 2903 + "stars": 102, + "last_update": "2024-07-27 18:33:35", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI_omost": { - "stars": 370, - "last_update": "2024-06-26 21:16:52", - "author_account_age_days": 2903 + "stars": 393, + "last_update": "2024-08-04 18:51:27", + "author_account_age_days": 2927 }, "https://github.com/hughescr/ComfyUI-OpenPose-Keypoint-Extractor": { - "stars": 7, - "last_update": "2024-07-17 22:29:28", - "author_account_age_days": 5668 + "stars": 10, + "last_update": "2024-07-31 13:44:36", + "author_account_age_days": 5692 }, "https://github.com/humgate/simplecomfy": { "stars": 0, "last_update": "2024-06-14 08:58:21", - "author_account_age_days": 1393 + "author_account_age_days": 1418 }, "https://github.com/hustille/ComfyUI_Fooocus_KSampler": { "stars": 60, "last_update": "2024-05-22 20:39:48", - "author_account_age_days": 467 + "author_account_age_days": 491 }, "https://github.com/hustille/ComfyUI_hus_utils": { "stars": 6, "last_update": "2024-05-22 20:39:34", - "author_account_age_days": 467 + "author_account_age_days": 491 }, "https://github.com/hwhaocool/ComfyUI-Select-Any": { "stars": 3, - "last_update": "2024-07-03 14:16:01", - "author_account_age_days": 2915 + "last_update": "2024-07-31 13:52:47", + "author_account_age_days": 2939 }, "https://github.com/hylarucoder/ComfyUI-Eagle-PNGInfo": { - "stars": 9, + "stars": 10, "last_update": "2024-06-28 04:43:18", - "author_account_age_days": 3940 + "author_account_age_days": 3965 }, "https://github.com/hyunamy/comfy-ui-on-complete-email-me": { "stars": 1, "last_update": "2024-07-01 18:44:18", - "author_account_age_days": 3138 + "author_account_age_days": 3162 }, "https://github.com/iFREEGROUP/comfyui-undistort": { "stars": 2, "last_update": "2024-06-14 08:59:52", - "author_account_age_days": 1584 + "author_account_age_days": 1608 }, "https://github.com/icesun963/ComfyUI_HFDownLoad": { "stars": 0, "last_update": "2024-07-18 12:13:23", - "author_account_age_days": 4133 + "author_account_age_days": 4157 }, "https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words": { - "stars": 104, + "stars": 110, "last_update": "2024-06-20 15:56:56", - "author_account_age_days": 3077 + "author_account_age_days": 3101 }, "https://github.com/iemesowum/ComfyUI_IsaacNodes": { - "stars": 1, - "last_update": "2024-07-18 13:23:30", - "author_account_age_days": 5319 + "stars": 2, + "last_update": "2024-07-23 15:52:45", + "author_account_age_days": 5343 }, "https://github.com/if-ai/ComfyUI-IF_AI_HFDownloaderNode": { - "stars": 10, + "stars": 12, "last_update": "2024-07-18 16:13:26", - "author_account_age_days": 2889 + "author_account_age_days": 2914 }, "https://github.com/if-ai/ComfyUI-IF_AI_WishperSpeechNode": { - "stars": 29, + "stars": 30, "last_update": "2024-05-22 22:02:55", - "author_account_age_days": 2889 + "author_account_age_days": 2914 }, "https://github.com/if-ai/ComfyUI-IF_AI_tools": { - "stars": 414, + "stars": 449, "last_update": "2024-07-17 07:24:46", - "author_account_age_days": 2889 + "author_account_age_days": 2914 }, "https://github.com/imb101/ComfyUI-FaceSwap": { "stars": 28, "last_update": "2024-05-22 18:22:29", - "author_account_age_days": 916 + "author_account_age_days": 940 }, "https://github.com/injet-zhou/comfyui_extra_api": { - "stars": 1, - "last_update": "2024-07-18 02:21:47", - "author_account_age_days": 2254 + "stars": 3, + "last_update": "2024-08-06 08:16:43", + "author_account_age_days": 2279 }, "https://github.com/iwanders/ComfyUI_nodes": { "stars": 0, "last_update": "2024-07-11 01:06:26", - "author_account_age_days": 4453 + "author_account_age_days": 4477 }, "https://github.com/jags111/ComfyUI_Jags_Audiotools": { - "stars": 47, - "last_update": "2024-05-19 18:54:12", - "author_account_age_days": 3898 + "stars": 51, + "last_update": "2024-08-01 05:37:19", + "author_account_age_days": 3922 }, "https://github.com/jags111/ComfyUI_Jags_VectorMagic": { - "stars": 53, - "last_update": "2024-05-19 18:49:42", - "author_account_age_days": 3898 + "stars": 58, + "last_update": "2024-08-08 04:43:22", + "author_account_age_days": 3922 }, "https://github.com/jags111/efficiency-nodes-comfyui": { - "stars": 768, - "last_update": "2024-06-23 09:42:43", - "author_account_age_days": 3898 + "stars": 826, + "last_update": "2024-08-07 03:15:43", + "author_account_age_days": 3922 }, "https://github.com/jakechai/ComfyUI-JakeUpgrade": { - "stars": 9, - "last_update": "2024-07-21 15:13:13", - "author_account_age_days": 1599 + "stars": 19, + "last_update": "2024-08-03 10:02:38", + "author_account_age_days": 1623 }, "https://github.com/jamal-alkharrat/ComfyUI_rotate_image": { "stars": 0, "last_update": "2024-05-22 23:19:02", - "author_account_age_days": 1004 + "author_account_age_days": 1028 }, "https://github.com/jamesWalker55/comfyui-p2ldgan": { "stars": 12, "last_update": "2024-05-22 18:19:04", - "author_account_age_days": 2554 + "author_account_age_days": 2578 }, "https://github.com/jamesWalker55/comfyui-various": { - "stars": 35, - "last_update": "2024-05-22 18:19:17", - "author_account_age_days": 2554 + "stars": 40, + "last_update": "2024-07-27 15:42:20", + "author_account_age_days": 2578 }, "https://github.com/jax-explorer/fast_video_comfyui": { "stars": 0, "last_update": "2024-05-23 01:17:35", - "author_account_age_days": 604 + "author_account_age_days": 628 }, "https://github.com/jeffy5/comfyui-faceless-node": { - "stars": 20, - "last_update": "2024-06-14 04:11:28", - "author_account_age_days": 2958 + "stars": 24, + "last_update": "2024-07-29 08:00:20", + "author_account_age_days": 2982 }, "https://github.com/jesenzhang/ComfyUI_StreamDiffusion": { - "stars": 111, + "stars": 113, "last_update": "2024-05-23 02:40:36", - "author_account_age_days": 3679 + "author_account_age_days": 3703 }, "https://github.com/jiaxiangc/ComfyUI-ResAdapter": { - "stars": 272, + "stars": 279, "last_update": "2024-05-23 00:22:23", - "author_account_age_days": 1313 + "author_account_age_days": 1338 }, "https://github.com/jitcoder/lora-info": { - "stars": 48, + "stars": 50, "last_update": "2024-06-20 13:04:19", - "author_account_age_days": 4068 + "author_account_age_days": 4092 }, "https://github.com/jjkramhoeft/ComfyUI-Jjk-Nodes": { "stars": 4, "last_update": "2024-05-22 20:44:56", - "author_account_age_days": 3676 + "author_account_age_days": 3700 }, "https://github.com/jkrauss82/ultools-comfyui": { "stars": 5, - "last_update": "2024-06-23 15:33:07", - "author_account_age_days": 4239 + "last_update": "2024-07-31 13:46:13", + "author_account_age_days": 4263 }, "https://github.com/jmkl/ComfyUI-ricing": { "stars": 9, "last_update": "2024-05-22 20:54:35", - "author_account_age_days": 4624 + "author_account_age_days": 4648 + }, + "https://github.com/jn-jairo/jn_comfyui": { + "stars": 2, + "last_update": "2024-08-10 01:33:31", + "author_account_age_days": 4036 }, "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": { - "stars": 96, - "last_update": "2024-07-19 12:57:38", - "author_account_age_days": 235 + "stars": 209, + "last_update": "2024-07-31 13:54:32", + "author_account_age_days": 259 }, "https://github.com/jojkaart/ComfyUI-sampler-lcm-alternative": { - "stars": 115, - "last_update": "2024-07-08 19:16:55", - "author_account_age_days": 4825 + "stars": 121, + "last_update": "2024-08-02 08:23:26", + "author_account_age_days": 4849 }, "https://github.com/jordoh/ComfyUI-Deepface": { - "stars": 14, - "last_update": "2024-07-13 19:22:44", - "author_account_age_days": 5020 + "stars": 16, + "last_update": "2024-08-04 18:18:05", + "author_account_age_days": 5045 }, "https://github.com/jroc22/ComfyUI-CSV-prompt-builder": { - "stars": 2, - "last_update": "2024-07-03 01:20:35", - "author_account_age_days": 716 + "stars": 3, + "last_update": "2024-08-01 19:39:30", + "author_account_age_days": 741 + }, + "https://github.com/jstit/comfyui_custom_node_image": { + "stars": 0, + "last_update": "2024-08-14 04:00:28", + "author_account_age_days": 1915 }, "https://github.com/jtrue/ComfyUI-JaRue": { "stars": 7, "last_update": "2024-06-14 09:01:12", - "author_account_age_days": 3957 + "author_account_age_days": 3981 }, "https://github.com/jtydhr88/ComfyUI-LayerDivider": { - "stars": 51, + "stars": 54, "last_update": "2024-07-06 01:43:45", - "author_account_age_days": 4780 + "author_account_age_days": 4804 }, "https://github.com/jtydhr88/ComfyUI-Unique3D": { - "stars": 138, - "last_update": "2024-07-04 04:27:01", - "author_account_age_days": 4780 + "stars": 147, + "last_update": "2024-07-31 13:52:24", + "author_account_age_days": 4804 }, "https://github.com/jtydhr88/ComfyUI-Workflow-Encrypt": { - "stars": 16, - "last_update": "2024-06-28 03:16:19", - "author_account_age_days": 4780 + "stars": 22, + "last_update": "2024-07-31 13:45:53", + "author_account_age_days": 4804 }, "https://github.com/juehackr/comfyui_fk_server": { - "stars": 58, - "last_update": "2024-07-08 02:48:37", - "author_account_age_days": 1139 + "stars": 78, + "last_update": "2024-08-12 10:15:31", + "author_account_age_days": 1163 }, "https://github.com/justUmen/Bjornulf_custom_nodes": { - "stars": 1, - "last_update": "2024-07-11 09:10:27", - "author_account_age_days": 2816 + "stars": 5, + "last_update": "2024-08-14 03:03:13", + "author_account_age_days": 2840 }, "https://github.com/ka-puna/comfyui-yanc": { "stars": 7, "last_update": "2024-07-18 04:28:44", - "author_account_age_days": 2234 + "author_account_age_days": 2258 }, "https://github.com/kaanyalova/ComfyUI_ExtendedImageFormats": { "stars": 2, - "last_update": "2024-06-03 13:20:01", - "author_account_age_days": 1294 + "last_update": "2024-08-01 23:03:21", + "author_account_age_days": 1318 }, "https://github.com/kadirnar/ComfyUI-Transformers": { "stars": 19, "last_update": "2024-06-22 22:44:39", - "author_account_age_days": 2357 + "author_account_age_days": 2381 }, "https://github.com/kadirnar/ComfyUI-YOLO": { - "stars": 21, - "last_update": "2024-07-08 18:33:07", - "author_account_age_days": 2357 + "stars": 24, + "last_update": "2024-08-02 06:26:48", + "author_account_age_days": 2381 }, "https://github.com/kale4eat/ComfyUI-path-util": { "stars": 0, "last_update": "2024-05-25 05:44:11", - "author_account_age_days": 1639 + "author_account_age_days": 1663 }, "https://github.com/kale4eat/ComfyUI-speech-dataset-toolkit": { - "stars": 7, + "stars": 9, "last_update": "2024-05-23 00:25:02", - "author_account_age_days": 1639 + "author_account_age_days": 1663 }, "https://github.com/kale4eat/ComfyUI-string-util": { "stars": 1, "last_update": "2024-05-23 00:24:40", - "author_account_age_days": 1639 + "author_account_age_days": 1663 }, "https://github.com/kale4eat/ComfyUI-text-file-util": { "stars": 0, "last_update": "2024-05-23 00:24:51", - "author_account_age_days": 1639 + "author_account_age_days": 1663 + }, + "https://github.com/kappa54m/ComfyUI_Usability": { + "stars": 1, + "last_update": "2024-08-08 15:31:47", + "author_account_age_days": 1562 }, "https://github.com/katalist-ai/comfyUI-nsfw-detection": { "stars": 1, "last_update": "2024-05-23 01:23:32", - "author_account_age_days": 781 + "author_account_age_days": 805 }, "https://github.com/kealiu/ComfyUI-S3-Tools": { - "stars": 2, + "stars": 3, "last_update": "2024-07-04 10:13:07", - "author_account_age_days": 4155 + "author_account_age_days": 4180 }, "https://github.com/kealiu/ComfyUI-Zero123-Porting": { - "stars": 17, + "stars": 18, "last_update": "2024-07-04 10:11:13", - "author_account_age_days": 4155 + "author_account_age_days": 4180 }, "https://github.com/kealiu/ComfyUI-ZeroShot-MTrans": { - "stars": 135, + "stars": 139, "last_update": "2024-07-04 10:12:32", - "author_account_age_days": 4155 + "author_account_age_days": 4180 }, "https://github.com/kenjiqq/qq-nodes-comfyui": { - "stars": 24, + "stars": 25, "last_update": "2024-05-22 21:34:53", - "author_account_age_days": 4916 + "author_account_age_days": 4941 }, "https://github.com/kft334/Knodes": { "stars": 3, "last_update": "2024-06-14 08:12:06", - "author_account_age_days": 986 + "author_account_age_days": 1010 }, "https://github.com/kijai/ComfyUI-ADMotionDirector": { - "stars": 133, - "last_update": "2024-06-19 09:13:35", - "author_account_age_days": 2210 + "stars": 144, + "last_update": "2024-08-01 16:03:16", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-APISR-KJ": { "stars": 56, "last_update": "2024-05-21 16:30:21", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-BrushNet-Wrapper": { - "stars": 116, + "stars": 120, "last_update": "2024-06-20 12:15:16", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-CCSR": { - "stars": 161, + "stars": 166, "last_update": "2024-06-28 11:13:33", - "author_account_age_days": 2210 + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-ControlNeXt-SVD": { + "stars": 55, + "last_update": "2024-08-14 21:01:22", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DDColor": { - "stars": 85, + "stars": 87, "last_update": "2024-05-21 16:04:26", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DepthAnythingV2": { - "stars": 125, - "last_update": "2024-06-28 20:46:46", - "author_account_age_days": 2210 + "stars": 146, + "last_update": "2024-08-13 04:26:15", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DiffusionLight": { - "stars": 51, + "stars": 53, "last_update": "2024-05-21 16:16:52", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DynamiCrafterWrapper": { - "stars": 531, - "last_update": "2024-07-20 16:22:47", - "author_account_age_days": 2210 + "stars": 567, + "last_update": "2024-08-01 22:03:23", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-ELLA-wrapper": { "stars": 105, "last_update": "2024-05-21 16:47:28", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-Florence2": { - "stars": 356, - "last_update": "2024-07-21 12:41:57", - "author_account_age_days": 2210 + "stars": 473, + "last_update": "2024-08-05 13:17:17", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-Geowizard": { - "stars": 86, + "stars": 87, "last_update": "2024-05-28 14:08:34", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-IC-Light": { - "stars": 517, - "last_update": "2024-06-19 09:18:06", - "author_account_age_days": 2210 + "stars": 590, + "last_update": "2024-08-01 02:22:24", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-KJNodes": { - "stars": 386, - "last_update": "2024-07-20 09:03:01", - "author_account_age_days": 2210 + "stars": 444, + "last_update": "2024-08-13 23:48:49", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-KwaiKolorsWrapper": { - "stars": 413, - "last_update": "2024-07-19 03:57:05", - "author_account_age_days": 2210 + "stars": 496, + "last_update": "2024-07-31 13:53:40", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-LaVi-Bridge-Wrapper": { "stars": 20, "last_update": "2024-05-21 16:41:18", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-LivePortraitKJ": { - "stars": 791, - "last_update": "2024-07-21 17:35:35", - "author_account_age_days": 2210 + "stars": 1244, + "last_update": "2024-08-05 21:39:49", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-LuminaWrapper": { - "stars": 168, - "last_update": "2024-06-28 16:33:51", - "author_account_age_days": 2210 + "stars": 176, + "last_update": "2024-07-31 13:52:06", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-Marigold": { - "stars": 412, - "last_update": "2024-06-19 09:10:03", - "author_account_age_days": 2210 + "stars": 423, + "last_update": "2024-08-01 22:03:45", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-MimicMotionWrapper": { - "stars": 178, - "last_update": "2024-07-12 21:03:14", - "author_account_age_days": 2210 + "stars": 214, + "last_update": "2024-08-07 06:48:40", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-OpenDiTWrapper": { - "stars": 35, + "stars": 36, "last_update": "2024-07-03 14:59:13", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-SUPIR": { - "stars": 1286, - "last_update": "2024-07-16 10:30:08", - "author_account_age_days": 2210 + "stars": 1376, + "last_update": "2024-08-01 23:03:53", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-SVD": { - "stars": 153, + "stars": 154, "last_update": "2024-05-22 21:09:54", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-depth-fm": { - "stars": 57, + "stars": 60, "last_update": "2024-05-22 21:10:15", - "author_account_age_days": 2210 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-moondream": { - "stars": 83, - "last_update": "2024-05-22 21:10:33", - "author_account_age_days": 2210 + "stars": 82, + "last_update": "2024-08-12 16:30:11", + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-segment-anything-2": { + "stars": 451, + "last_update": "2024-08-05 15:24:56", + "author_account_age_days": 2234 }, "https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink": { "stars": 24, "last_update": "2024-05-22 21:25:13", - "author_account_age_days": 496 + "author_account_age_days": 520 }, "https://github.com/kinfolk0117/ComfyUI_Pilgram": { "stars": 7, "last_update": "2024-05-22 21:25:24", - "author_account_age_days": 496 + "author_account_age_days": 520 }, "https://github.com/kinfolk0117/ComfyUI_SimpleTiles": { "stars": 38, "last_update": "2024-05-22 21:25:01", - "author_account_age_days": 496 + "author_account_age_days": 520 }, "https://github.com/klinter007/klinter_nodes": { - "stars": 8, - "last_update": "2024-06-25 05:15:24", - "author_account_age_days": 453 + "stars": 9, + "last_update": "2024-08-05 05:01:14", + "author_account_age_days": 477 }, "https://github.com/knuknX/ComfyUI-Image-Tools": { "stars": 3, "last_update": "2024-06-14 09:05:58", - "author_account_age_days": 227 + "author_account_age_days": 251 }, "https://github.com/kohya-ss/ControlNet-LLLite-ComfyUI": { - "stars": 153, + "stars": 158, "last_update": "2024-05-22 20:44:44", - "author_account_age_days": 1836 + "author_account_age_days": 1860 }, "https://github.com/komojini/ComfyUI_SDXL_DreamBooth_LoRA_CustomNodes": { "stars": 3, "last_update": "2024-05-22 21:34:27", - "author_account_age_days": 610 + "author_account_age_days": 635 }, "https://github.com/komojini/komojini-comfyui-nodes": { - "stars": 67, + "stars": 68, "last_update": "2024-05-22 21:34:39", - "author_account_age_days": 610 + "author_account_age_days": 635 }, "https://github.com/kunieone/ComfyUI_alkaid": { "stars": 0, "last_update": "2024-05-23 01:10:21", - "author_account_age_days": 2547 + "author_account_age_days": 2571 }, "https://github.com/kwaroran/abg-comfyui": { "stars": 22, "last_update": "2024-05-22 18:19:51", - "author_account_age_days": 635 + "author_account_age_days": 659 }, "https://github.com/l20richo/ComfyUI-Azure-Blob-Storage": { "stars": 2, "last_update": "2024-06-22 16:53:47", - "author_account_age_days": 1194 + "author_account_age_days": 1218 }, "https://github.com/laksjdjf/Batch-Condition-ComfyUI": { - "stars": 1, + "stars": 3, "last_update": "2024-05-22 20:42:42", - "author_account_age_days": 2858 + "author_account_age_days": 2883 }, "https://github.com/laksjdjf/LCMSampler-ComfyUI": { "stars": 15, "last_update": "2024-05-22 20:42:17", - "author_account_age_days": 2858 + "author_account_age_days": 2883 }, "https://github.com/laksjdjf/LoRTnoC-ComfyUI": { "stars": 13, "last_update": "2024-05-22 20:42:29", - "author_account_age_days": 2858 + "author_account_age_days": 2883 }, "https://github.com/laksjdjf/cd-tuner_negpip-ComfyUI": { - "stars": 20, + "stars": 21, "last_update": "2024-05-22 20:42:04", - "author_account_age_days": 2858 + "author_account_age_days": 2883 }, "https://github.com/laksjdjf/cgem156-ComfyUI": { - "stars": 36, - "last_update": "2024-06-08 01:09:03", - "author_account_age_days": 2858 + "stars": 40, + "last_update": "2024-08-11 12:52:53", + "author_account_age_days": 2883 }, "https://github.com/laksjdjf/pfg-ComfyUI": { - "stars": 10, + "stars": 12, "last_update": "2024-05-22 20:41:41", - "author_account_age_days": 2858 + "author_account_age_days": 2883 }, "https://github.com/larsupb/LoRA-Merger-ComfyUI": { - "stars": 14, + "stars": 15, "last_update": "2024-07-02 05:55:23", - "author_account_age_days": 3103 + "author_account_age_days": 3127 }, "https://github.com/latenightlabs/ComfyUI-LNL": { "stars": 19, - "last_update": "2024-06-28 17:27:55", - "author_account_age_days": 178 + "last_update": "2024-07-31 13:51:31", + "author_account_age_days": 202 + }, + "https://github.com/leeguandong/ComfyUI_InternVL2": { + "stars": 3, + "last_update": "2024-08-10 11:00:11", + "author_account_age_days": 2846 + }, + "https://github.com/leeguandong/ComfyUI_LLaSM": { + "stars": 2, + "last_update": "2024-08-10 10:58:17", + "author_account_age_days": 2846 + }, + "https://github.com/leeguandong/ComfyUI_M3Net": { + "stars": 7, + "last_update": "2024-08-07 15:59:12", + "author_account_age_days": 2846 + }, + "https://github.com/leeguandong/ComfyUI_VideoEditing": { + "stars": 1, + "last_update": "2024-08-14 16:59:49", + "author_account_age_days": 2846 }, "https://github.com/leestuartx/ComfyUI-GG": { - "stars": 1, - "last_update": "2024-07-19 19:17:15", - "author_account_age_days": 3806 + "stars": 3, + "last_update": "2024-07-23 04:13:09", + "author_account_age_days": 3830 }, "https://github.com/leiweiqiang/ComfyUI-TRA": { - "stars": 5, - "last_update": "2024-07-21 20:43:27", - "author_account_age_days": 2638 + "stars": 10, + "last_update": "2024-07-30 19:47:28", + "author_account_age_days": 2662 + }, + "https://github.com/lenskikh/ComfyUI-Prompt-Worker": { + "stars": 2, + "last_update": "2024-08-14 02:52:25", + "author_account_age_days": 3548 }, "https://github.com/leoleelxh/ComfyUI-LLMs": { "stars": 7, "last_update": "2024-06-14 10:24:23", - "author_account_age_days": 4102 + "author_account_age_days": 4127 + }, + "https://github.com/liangt/comfyui-loadimagewithsubfolder": { + "stars": 2, + "last_update": "2024-07-28 08:23:11", + "author_account_age_days": 4110 }, "https://github.com/licyk/ComfyUI-Restart-Sampler": { - "stars": 2, - "last_update": "2024-06-29 03:36:00", - "author_account_age_days": 1295 + "stars": 3, + "last_update": "2024-07-31 15:26:00", + "author_account_age_days": 1320 }, "https://github.com/lilly1987/ComfyUI_node_Lilly": { - "stars": 50, + "stars": 51, "last_update": "2024-05-22 17:53:19", - "author_account_age_days": 2937 + "author_account_age_days": 2961 }, "https://github.com/linshier/comfyui-remote-tools": { "stars": 1, "last_update": "2024-05-28 07:44:23", - "author_account_age_days": 3819 + "author_account_age_days": 3843 }, "https://github.com/liusida/ComfyUI-AutoCropFaces": { - "stars": 29, - "last_update": "2024-07-05 03:24:00", - "author_account_age_days": 3235 + "stars": 37, + "last_update": "2024-08-12 17:38:17", + "author_account_age_days": 3259 }, "https://github.com/liusida/ComfyUI-B-LoRA": { - "stars": 47, + "stars": 64, "last_update": "2024-06-18 03:17:46", - "author_account_age_days": 3235 + "author_account_age_days": 3259 }, "https://github.com/liusida/ComfyUI-Debug": { "stars": 6, "last_update": "2024-06-14 10:25:26", - "author_account_age_days": 3235 + "author_account_age_days": 3259 }, "https://github.com/liusida/ComfyUI-Login": { - "stars": 47, - "last_update": "2024-06-27 13:31:34", - "author_account_age_days": 3235 + "stars": 56, + "last_update": "2024-07-31 13:47:59", + "author_account_age_days": 3259 }, "https://github.com/liusida/ComfyUI-SD3-nodes": { "stars": 4, "last_update": "2024-06-14 13:01:41", - "author_account_age_days": 3235 + "author_account_age_days": 3259 }, "https://github.com/ljleb/comfy-mecha": { - "stars": 33, - "last_update": "2024-07-15 19:35:55", - "author_account_age_days": 2491 + "stars": 37, + "last_update": "2024-08-11 13:14:20", + "author_account_age_days": 2515 }, "https://github.com/lks-ai/ComfyUI-StableAudioSampler": { - "stars": 188, + "stars": 203, "last_update": "2024-06-17 18:54:17", - "author_account_age_days": 127 + "author_account_age_days": 151 }, "https://github.com/lks-ai/anynode": { - "stars": 452, + "stars": 466, "last_update": "2024-07-07 03:45:48", - "author_account_age_days": 127 + "author_account_age_days": 151 }, "https://github.com/lldacing/comfyui-easyapi-nodes": { - "stars": 32, - "last_update": "2024-05-24 02:51:26", - "author_account_age_days": 2120 + "stars": 37, + "last_update": "2024-08-14 09:56:37", + "author_account_age_days": 2145 }, "https://github.com/logtd/ComfyUI-FLATTEN": { - "stars": 93, - "last_update": "2024-06-14 18:00:19", - "author_account_age_days": 149 + "stars": 97, + "last_update": "2024-08-07 03:16:57", + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-InstanceDiffusion": { - "stars": 147, + "stars": 148, "last_update": "2024-05-22 00:02:08", - "author_account_age_days": 149 + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-InversedNoise": { - "stars": 8, + "stars": 9, "last_update": "2024-05-22 00:10:18", - "author_account_age_days": 149 + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-RAVE_ATTN": { - "stars": 10, + "stars": 12, "last_update": "2024-05-22 00:20:03", - "author_account_age_days": 149 + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-RefSampling": { - "stars": 4, + "stars": 5, "last_update": "2024-05-22 00:04:40", - "author_account_age_days": 149 + "author_account_age_days": 174 + }, + "https://github.com/logtd/ComfyUI-RefUNet": { + "stars": 28, + "last_update": "2024-08-14 04:01:23", + "author_account_age_days": 174 + }, + "https://github.com/logtd/ComfyUI-SEGAttention": { + "stars": 22, + "last_update": "2024-08-14 05:01:04", + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-TrackingNodes": { "stars": 16, "last_update": "2024-05-22 00:03:27", - "author_account_age_days": 149 + "author_account_age_days": 174 }, "https://github.com/longgui0318/comfyui-common-util": { - "stars": 0, + "stars": 1, "last_update": "2024-07-08 08:57:06", - "author_account_age_days": 4192 + "author_account_age_days": 4216 }, "https://github.com/longgui0318/comfyui-llm-assistant": { "stars": 5, "last_update": "2024-06-27 03:50:46", - "author_account_age_days": 4192 + "author_account_age_days": 4216 }, "https://github.com/longgui0318/comfyui-magic-clothing": { - "stars": 25, - "last_update": "2024-06-27 03:48:38", - "author_account_age_days": 4192 + "stars": 30, + "last_update": "2024-08-08 14:42:04", + "author_account_age_days": 4216 }, "https://github.com/longgui0318/comfyui-mask-util": { "stars": 6, "last_update": "2024-06-30 03:43:58", - "author_account_age_days": 4192 + "author_account_age_days": 4216 }, "https://github.com/longgui0318/comfyui-oms-diffusion": { - "stars": 25, - "last_update": "2024-06-27 03:48:38", - "author_account_age_days": 4192 + "stars": 30, + "last_update": "2024-08-08 14:42:04", + "author_account_age_days": 4216 }, "https://github.com/lordgasmic/comfyui_save_image_with_options": { "stars": 0, "last_update": "2024-06-20 16:39:23", - "author_account_age_days": 4794 + "author_account_age_days": 4819 }, "https://github.com/lordgasmic/comfyui_wildcards": { "stars": 5, "last_update": "2024-06-20 16:52:14", - "author_account_age_days": 4794 + "author_account_age_days": 4819 }, "https://github.com/lquesada/ComfyUI-Inpaint-CropAndStitch": { - "stars": 181, - "last_update": "2024-07-20 07:07:58", - "author_account_age_days": 4078 + "stars": 203, + "last_update": "2024-08-14 05:59:15", + "author_account_age_days": 4102 }, "https://github.com/lquesada/ComfyUI-Prompt-Combinator": { "stars": 23, - "last_update": "2024-06-30 15:37:31", - "author_account_age_days": 4078 + "last_update": "2024-08-14 20:12:51", + "author_account_age_days": 4102 }, "https://github.com/lrzjason/Comfyui-Kolors-Utils": { - "stars": 9, - "last_update": "2024-07-18 06:47:17", - "author_account_age_days": 3690 + "stars": 17, + "last_update": "2024-07-26 11:12:25", + "author_account_age_days": 3714 }, "https://github.com/ltdrdata/ComfyUI-Impact-Pack": { - "stars": 1498, - "last_update": "2024-07-21 21:29:24", - "author_account_age_days": 489 + "stars": 1583, + "last_update": "2024-08-09 12:38:02", + "author_account_age_days": 514 }, "https://github.com/ltdrdata/ComfyUI-Inspire-Pack": { - "stars": 313, - "last_update": "2024-07-21 20:36:02", - "author_account_age_days": 489 + "stars": 341, + "last_update": "2024-08-14 03:46:21", + "author_account_age_days": 514 }, "https://github.com/ltdrdata/ComfyUI-Manager": { - "stars": 4876, - "last_update": "2024-07-21 13:07:20", - "author_account_age_days": 489 + "stars": 5320, + "last_update": "2024-08-15 03:42:21", + "author_account_age_days": 514 }, "https://github.com/luandev/ComfyUI-CrewAI": { - "stars": 15, - "last_update": "2024-06-27 17:53:19", - "author_account_age_days": 3835 + "stars": 20, + "last_update": "2024-08-01 18:44:41", + "author_account_age_days": 3859 }, "https://github.com/m-sokes/ComfyUI-Sokes-Nodes": { "stars": 1, "last_update": "2024-05-22 20:36:07", - "author_account_age_days": 342 + "author_account_age_days": 367 }, "https://github.com/madtunebk/ComfyUI-ControlnetAux": { "stars": 10, "last_update": "2024-06-28 16:16:51", - "author_account_age_days": 488 + "author_account_age_days": 512 }, "https://github.com/mape/ComfyUI-mape-Helpers": { - "stars": 141, + "stars": 150, "last_update": "2024-06-27 16:30:32", - "author_account_age_days": 5781 + "author_account_age_days": 5806 }, "https://github.com/maracman/ComfyUI-SubjectStyle-CSV": { "stars": 3, "last_update": "2024-06-24 13:53:39", - "author_account_age_days": 1194 + "author_account_age_days": 1218 }, "https://github.com/marduk191/comfyui-marnodes": { "stars": 1, - "last_update": "2024-07-14 08:29:14", - "author_account_age_days": 4442 + "last_update": "2024-08-13 22:15:05", + "author_account_age_days": 4466 }, "https://github.com/marhensa/sdxl-recommended-res-calc": { - "stars": 57, + "stars": 62, "last_update": "2024-07-07 09:20:15", - "author_account_age_days": 4802 + "author_account_age_days": 4827 }, "https://github.com/martijnat/comfyui-previewlatent": { - "stars": 29, + "stars": 31, "last_update": "2024-05-22 21:28:39", - "author_account_age_days": 2859 + "author_account_age_days": 2883 }, "https://github.com/massao000/ComfyUI_aspect_ratios": { - "stars": 7, + "stars": 8, "last_update": "2024-05-22 22:23:10", - "author_account_age_days": 1434 + "author_account_age_days": 1459 }, "https://github.com/matan1905/ComfyUI-Serving-Toolkit": { - "stars": 40, - "last_update": "2024-06-04 19:15:36", - "author_account_age_days": 2767 + "stars": 47, + "last_update": "2024-08-08 16:22:16", + "author_account_age_days": 2791 }, "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node": { "stars": 2, - "last_update": "2024-07-12 09:27:33", - "author_account_age_days": 4577 + "last_update": "2024-07-31 13:54:10", + "author_account_age_days": 4601 }, "https://github.com/mav-rik/facerestore_cf": { - "stars": 169, + "stars": 180, "last_update": "2024-05-22 20:53:23", - "author_account_age_days": 2948 + "author_account_age_days": 2972 }, "https://github.com/mbrostami/ComfyUI-HF": { "stars": 16, "last_update": "2024-05-27 21:45:33", - "author_account_age_days": 4349 + "author_account_age_days": 4373 }, "https://github.com/mbrostami/ComfyUI-TITrain": { "stars": 8, - "last_update": "2024-05-27 21:50:06", - "author_account_age_days": 4349 + "last_update": "2024-08-14 02:19:27", + "author_account_age_days": 4373 }, "https://github.com/mcmonkeyprojects/sd-dynamic-thresholding": { - "stars": 1073, - "last_update": "2024-05-24 16:09:17", - "author_account_age_days": 2129 + "stars": 1092, + "last_update": "2024-08-10 12:59:59", + "author_account_age_days": 2153 }, "https://github.com/meap158/ComfyUI-Background-Replacement": { - "stars": 43, + "stars": 45, "last_update": "2024-05-22 20:43:52", - "author_account_age_days": 3230 + "author_account_age_days": 3254 }, "https://github.com/meap158/ComfyUI-GPU-temperature-protection": { "stars": 3, "last_update": "2024-05-22 20:43:21", - "author_account_age_days": 3230 + "author_account_age_days": 3254 }, "https://github.com/meap158/ComfyUI-Prompt-Expansion": { - "stars": 64, + "stars": 68, "last_update": "2024-05-22 20:43:37", - "author_account_age_days": 3230 + "author_account_age_days": 3254 }, "https://github.com/melMass/comfy_mtb": { - "stars": 378, - "last_update": "2024-07-07 18:40:33", - "author_account_age_days": 3772 + "stars": 398, + "last_update": "2024-08-08 20:41:22", + "author_account_age_days": 3797 }, "https://github.com/mephisto83/petty-paint-comfyui-node": { - "stars": 2, + "stars": 3, "last_update": "2024-07-21 02:05:40", - "author_account_age_days": 3700 + "author_account_age_days": 3724 }, "https://github.com/meshmesh-io/ComfyUI-MeshMesh": { "stars": 0, "last_update": "2024-05-23 00:10:09", - "author_account_age_days": 256 + "author_account_age_days": 280 }, "https://github.com/meshmesh-io/mm-comfyui-loopback": { "stars": 1, "last_update": "2024-05-23 00:09:57", - "author_account_age_days": 256 + "author_account_age_days": 280 }, "https://github.com/meshmesh-io/mm-comfyui-megamask": { "stars": 0, "last_update": "2024-05-23 00:09:47", - "author_account_age_days": 256 + "author_account_age_days": 280 }, "https://github.com/metncelik/comfyui_met_suit": { - "stars": 0, + "stars": 1, "last_update": "2024-07-07 13:40:26", - "author_account_age_days": 650 + "author_account_age_days": 674 }, "https://github.com/metncelik/comfyui_met_suite": { - "stars": 0, + "stars": 1, "last_update": "2024-07-07 13:40:26", - "author_account_age_days": 650 + "author_account_age_days": 674 }, "https://github.com/mgfxer/ComfyUI-FrameFX": { - "stars": 10, + "stars": 20, "last_update": "2024-07-20 13:58:46", - "author_account_age_days": 29 + "author_account_age_days": 54 }, "https://github.com/miaoshouai/ComfyUI-Miaoshouai-Tagger": { - "stars": 59, + "stars": 75, "last_update": "2024-07-19 07:56:06", - "author_account_age_days": 495 + "author_account_age_days": 519 }, "https://github.com/mihaiiancu/ComfyUI_Inpaint": { "stars": 9, "last_update": "2024-05-22 18:19:38", - "author_account_age_days": 2689 + "author_account_age_days": 2713 }, "https://github.com/mikebilly/Transparent-background-comfyUI": { - "stars": 0, + "stars": 1, "last_update": "2024-07-17 15:59:31", - "author_account_age_days": 2591 + "author_account_age_days": 2615 }, "https://github.com/mikkel/ComfyUI-text-overlay": { - "stars": 32, + "stars": 35, "last_update": "2024-05-22 21:13:59", - "author_account_age_days": 5943 + "author_account_age_days": 5968 }, "https://github.com/mikkel/comfyui-mask-boundingbox": { "stars": 26, "last_update": "2024-05-22 21:26:23", - "author_account_age_days": 5943 - }, - "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq": { - "stars": 1, - "last_update": "2024-07-19 08:50:20", - "author_account_age_days": 2621 + "author_account_age_days": 5968 }, "https://github.com/mirabarukaso/ComfyUI_Mira": { - "stars": 28, - "last_update": "2024-06-14 11:01:10", - "author_account_age_days": 1248 + "stars": 31, + "last_update": "2024-07-25 15:26:12", + "author_account_age_days": 1272 + }, + "https://github.com/misterjoessef/MLTask_ComfyUI": { + "stars": 1, + "last_update": "2024-08-10 18:07:56", + "author_account_age_days": 790 }, "https://github.com/modusCell/ComfyUI-dimension-node-modusCell": { "stars": 1, "last_update": "2024-05-22 22:08:50", - "author_account_age_days": 4631 + "author_account_age_days": 4655 }, "https://github.com/moyi7712/ComfyUI_Seamless_Patten": { - "stars": 10, - "last_update": "2024-06-22 02:18:14", - "author_account_age_days": 2328 + "stars": 11, + "last_update": "2024-08-06 15:37:47", + "author_account_age_days": 2352 }, "https://github.com/mozman/ComfyUI_mozman_nodes": { "stars": 0, "last_update": "2024-05-22 22:13:32", - "author_account_age_days": 4107 + "author_account_age_days": 4132 }, "https://github.com/mpiquero7164/ComfyUI-SaveImgPrompt": { - "stars": 16, + "stars": 18, "last_update": "2023-08-14 11:27:09", - "author_account_age_days": 2636 + "author_account_age_days": 2660 }, "https://github.com/mullakhmetov/comfyui_dynamic_util_nodes": { "stars": 0, "last_update": "2024-07-15 14:13:58", - "author_account_age_days": 3965 + "author_account_age_days": 3989 }, "https://github.com/muzi12888/ComfyUI-PoseKeypoint-Mask": { "stars": 6, - "last_update": "2024-06-14 13:26:02", - "author_account_age_days": 2973 + "last_update": "2024-07-31 13:49:27", + "author_account_age_days": 2997 }, "https://github.com/my-opencode/ComfyUI_IndustrialMagick": { - "stars": 1, - "last_update": "2024-07-08 12:25:30", - "author_account_age_days": 1407 + "stars": 2, + "last_update": "2024-07-31 14:04:26", + "author_account_age_days": 1431 }, "https://github.com/my-opencode/ComfyUI_KSamplerTimer": { - "stars": 1, - "last_update": "2024-07-08 12:22:33", - "author_account_age_days": 1407 + "stars": 2, + "last_update": "2024-07-31 14:13:17", + "author_account_age_days": 1431 }, "https://github.com/nagolinc/ComfyUI_FastVAEDecorder_SDXL": { - "stars": 2, + "stars": 3, "last_update": "2024-07-19 14:46:14", - "author_account_age_days": 3701 + "author_account_age_days": 3726 }, "https://github.com/nagolinc/comfyui_openai_node": { "stars": 1, "last_update": "2024-06-15 15:59:07", - "author_account_age_days": 3701 + "author_account_age_days": 3726 }, "https://github.com/nat-chan/ComfyUI-graphToPrompt": { "stars": 0, "last_update": "2024-05-23 01:16:40", - "author_account_age_days": 3020 + "author_account_age_days": 3045 }, "https://github.com/nat-chan/comfyui-paint": { "stars": 2, "last_update": "2024-06-14 11:01:38", - "author_account_age_days": 3020 + "author_account_age_days": 3045 }, "https://github.com/nat-chan/comfyui-transceiver": { "stars": 3, "last_update": "2024-05-23 01:16:28", - "author_account_age_days": 3020 + "author_account_age_days": 3045 }, "https://github.com/nathannlu/ComfyUI-Cloud": { - "stars": 157, - "last_update": "2024-07-21 00:58:31", - "author_account_age_days": 2753 + "stars": 161, + "last_update": "2024-07-31 18:05:55", + "author_account_age_days": 2777 }, "https://github.com/nathannlu/ComfyUI-Pets": { - "stars": 37, + "stars": 39, "last_update": "2024-06-14 11:00:42", - "author_account_age_days": 2753 + "author_account_age_days": 2777 }, "https://github.com/natto-maki/ComfyUI-NegiTools": { "stars": 27, "last_update": "2024-07-16 10:24:00", - "author_account_age_days": 305 + "author_account_age_days": 329 + }, + "https://github.com/neeltheninja/ComfyUI-TextOverlay": { + "stars": 1, + "last_update": "2024-07-31 18:40:19", + "author_account_age_days": 1930 + }, + "https://github.com/neverbiasu/ComfyUI-Image-Captioner": { + "stars": 6, + "last_update": "2024-08-01 03:33:01", + "author_account_age_days": 1071 + }, + "https://github.com/neverbiasu/ComfyUI-SAM2": { + "stars": 27, + "last_update": "2024-08-14 15:40:18", + "author_account_age_days": 1071 }, "https://github.com/nickve28/ComfyUI-Nich-Utils": { "stars": 8, - "last_update": "2024-06-22 05:29:37", - "author_account_age_days": 4056 + "last_update": "2024-08-14 21:03:40", + "author_account_age_days": 4080 }, "https://github.com/ningxiaoxiao/comfyui-NDI": { - "stars": 37, + "stars": 40, "last_update": "2024-07-02 09:03:11", - "author_account_age_days": 3015 + "author_account_age_days": 3039 }, "https://github.com/nirbhay-faaya/ImgProcessing_ComfyUI": { - "stars": 0, - "last_update": "2024-06-14 12:01:14", - "author_account_age_days": 363 + "stars": 1, + "last_update": "2024-07-31 08:34:48", + "author_account_age_days": 387 }, "https://github.com/nirex0/ComfyUI_pytorch_openpose": { "stars": 2, "last_update": "2024-06-14 12:01:07", - "author_account_age_days": 3530 + "author_account_age_days": 3554 }, "https://github.com/nkchocoai/ComfyUI-Dart": { "stars": 18, "last_update": "2024-06-23 04:56:49", - "author_account_age_days": 187 + "author_account_age_days": 211 }, "https://github.com/nkchocoai/ComfyUI-PromptUtilities": { - "stars": 7, - "last_update": "2024-06-23 04:58:30", - "author_account_age_days": 187 + "stars": 8, + "last_update": "2024-08-07 04:49:05", + "author_account_age_days": 211 }, "https://github.com/nkchocoai/ComfyUI-SaveImageWithMetaData": { - "stars": 9, - "last_update": "2024-06-23 04:57:38", - "author_account_age_days": 187 + "stars": 11, + "last_update": "2024-08-14 20:03:48", + "author_account_age_days": 211 }, "https://github.com/nkchocoai/ComfyUI-SizeFromPresets": { "stars": 4, "last_update": "2024-06-23 04:40:00", - "author_account_age_days": 187 + "author_account_age_days": 211 }, "https://github.com/nkchocoai/ComfyUI-TextOnSegs": { - "stars": 8, + "stars": 9, "last_update": "2024-06-23 04:52:29", - "author_account_age_days": 187 + "author_account_age_days": 211 + }, + "https://github.com/noarche/sd-webui-color-enhance": { + "stars": 1, + "last_update": "2024-08-04 08:11:53", + "author_account_age_days": 1714 }, "https://github.com/noembryo/ComfyUI-noEmbryo": { - "stars": 14, + "stars": 15, "last_update": "2024-06-04 11:27:45", - "author_account_age_days": 2770 + "author_account_age_days": 2794 }, "https://github.com/nosiu/comfyui-instantId-faceswap": { - "stars": 178, + "stars": 182, "last_update": "2024-05-22 23:21:38", - "author_account_age_days": 3932 + "author_account_age_days": 3956 }, "https://github.com/noxinias/ComfyUI_NoxinNodes": { - "stars": 8, + "stars": 9, "last_update": "2024-05-22 21:24:24", - "author_account_age_days": 2588 + "author_account_age_days": 2612 }, "https://github.com/ntc-ai/ComfyUI-DARE-LoRA-Merge": { "stars": 26, "last_update": "2024-05-22 22:22:14", - "author_account_age_days": 1745 + "author_account_age_days": 1769 }, "https://github.com/nuanarchy/ComfyUI-NuA-BIRD": { - "stars": 4, + "stars": 5, "last_update": "2024-06-18 05:35:49", - "author_account_age_days": 1119 + "author_account_age_days": 1144 }, "https://github.com/nuanarchy/ComfyUI-NuA-FlashFace": { - "stars": 15, - "last_update": "2024-06-17 15:29:15", - "author_account_age_days": 1119 + "stars": 21, + "last_update": "2024-07-31 13:54:00", + "author_account_age_days": 1144 }, "https://github.com/nullquant/ComfyUI-BrushNet": { - "stars": 432, - "last_update": "2024-07-15 15:48:46", - "author_account_age_days": 1204 + "stars": 496, + "last_update": "2024-08-01 15:36:30", + "author_account_age_days": 1228 + }, + "https://github.com/okgo4/ComfyUI-Mosaic-Mask": { + "stars": 1, + "last_update": "2024-08-15 01:51:13", + "author_account_age_days": 2738 }, "https://github.com/olduvai-jp/ComfyUI-HfLoader": { "stars": 3, "last_update": "2024-05-23 00:14:52", - "author_account_age_days": 903 + "author_account_age_days": 927 + }, + "https://github.com/oleksandr612/ComfyUI-Counter": { + "stars": 1, + "last_update": "2024-08-05 16:18:48", + "author_account_age_days": 14 }, "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92": { - "stars": 113, + "stars": 115, "last_update": "2024-06-03 11:02:37", - "author_account_age_days": 4534 + "author_account_age_days": 4558 }, "https://github.com/opvelll/ComfyUI_TextListProduct": { "stars": 0, "last_update": "2024-06-22 02:11:26", - "author_account_age_days": 1581 + "author_account_age_days": 1606 }, "https://github.com/osi1880vr/prompt_quill_comfyui": { "stars": 10, "last_update": "2024-06-13 17:24:12", - "author_account_age_days": 1104 + "author_account_age_days": 1128 }, "https://github.com/ostris/ostris_nodes_comfyui": { - "stars": 20, + "stars": 19, "last_update": "2024-05-22 21:23:24", - "author_account_age_days": 2430 + "author_account_age_days": 2454 }, "https://github.com/ownimage/ComfyUI-ownimage": { "stars": 0, "last_update": "2024-05-22 22:22:37", - "author_account_age_days": 2810 + "author_account_age_days": 2834 }, "https://github.com/oyvindg/ComfyUI-TrollSuite": { - "stars": 0, + "stars": 1, "last_update": "2024-05-22 21:32:03", - "author_account_age_days": 2357 + "author_account_age_days": 2381 }, "https://github.com/oztrkoguz/ComfyUI_StoryCreator": { - "stars": 21, + "stars": 22, "last_update": "2024-05-23 12:18:45", - "author_account_age_days": 869 + "author_account_age_days": 893 }, "https://github.com/palant/extended-saveimage-comfyui": { "stars": 13, "last_update": "2024-03-27 14:08:21", - "author_account_age_days": 5080 + "author_account_age_days": 5104 }, "https://github.com/palant/image-resize-comfyui": { - "stars": 64, + "stars": 67, "last_update": "2024-01-18 20:59:55", - "author_account_age_days": 5080 + "author_account_age_days": 5104 }, "https://github.com/palant/integrated-nodes-comfyui": { "stars": 32, "last_update": "2023-12-27 22:52:00", - "author_account_age_days": 5080 + "author_account_age_days": 5104 }, "https://github.com/pamparamm/ComfyUI-ppm": { - "stars": 28, - "last_update": "2024-07-19 23:56:52", - "author_account_age_days": 2158 + "stars": 48, + "last_update": "2024-08-14 22:17:14", + "author_account_age_days": 2182 }, "https://github.com/pamparamm/ComfyUI-vectorscope-cc": { - "stars": 3, - "last_update": "2024-07-19 20:29:12", - "author_account_age_days": 2158 + "stars": 5, + "last_update": "2024-08-04 20:05:41", + "author_account_age_days": 2182 }, "https://github.com/pamparamm/sd-perturbed-attention": { - "stars": 188, - "last_update": "2024-07-19 20:32:06", - "author_account_age_days": 2158 + "stars": 197, + "last_update": "2024-08-04 14:31:27", + "author_account_age_days": 2182 }, "https://github.com/pants007/comfy-pants": { "stars": 2, "last_update": "2024-05-22 18:16:04", - "author_account_age_days": 2344 + "author_account_age_days": 2368 }, "https://github.com/patriciogonzalezvivo/comfyui_glslnodes": { - "stars": 113, - "last_update": "2024-07-21 08:14:56", - "author_account_age_days": 5107 + "stars": 152, + "last_update": "2024-08-14 12:01:36", + "author_account_age_days": 5131 }, "https://github.com/paulo-coronado/comfy_clip_blip_node": { - "stars": 25, + "stars": 28, "last_update": "2024-05-22 17:39:09", - "author_account_age_days": 2714 + "author_account_age_days": 2738 }, "https://github.com/philz1337x/ComfyUI-ClarityAI": { - "stars": 47, + "stars": 55, "last_update": "2024-05-23 01:19:05", - "author_account_age_days": 691 + "author_account_age_days": 715 }, "https://github.com/phineas-pta/comfyui-auto-nodes-layout": { - "stars": 26, - "last_update": "2024-06-19 21:38:47", - "author_account_age_days": 2316 + "stars": 28, + "last_update": "2024-08-02 17:31:24", + "author_account_age_days": 2340 }, "https://github.com/picturesonpictures/comfy_PoP": { "stars": 15, "last_update": "2024-07-05 07:32:50", - "author_account_age_days": 614 + "author_account_age_days": 638 + }, + "https://github.com/pikenrover/ComfyUI_PRNodes": { + "stars": 2, + "last_update": "2024-08-01 14:08:00", + "author_account_age_days": 21 }, "https://github.com/pkpkTech/ComfyUI-SaveAVIF": { "stars": 0, "last_update": "2024-05-22 22:19:21", - "author_account_age_days": 1530 + "author_account_age_days": 1555 }, "https://github.com/pkpkTech/ComfyUI-SaveQueues": { "stars": 1, "last_update": "2024-05-22 22:19:54", - "author_account_age_days": 1530 + "author_account_age_days": 1555 }, "https://github.com/pkpkTech/ComfyUI-TemporaryLoader": { "stars": 1, "last_update": "2024-05-22 22:19:44", - "author_account_age_days": 1530 + "author_account_age_days": 1555 }, "https://github.com/pkpkTech/ComfyUI-ngrok": { "stars": 3, "last_update": "2024-05-22 22:19:32", - "author_account_age_days": 1530 + "author_account_age_days": 1555 }, "https://github.com/portu-sim/comfyui_bmab": { - "stars": 55, - "last_update": "2024-06-09 14:22:04", - "author_account_age_days": 349 + "stars": 67, + "last_update": "2024-08-08 11:10:50", + "author_account_age_days": 374 }, "https://github.com/prodogape/ComfyUI-EasyOCR": { - "stars": 12, - "last_update": "2024-07-11 02:17:02", - "author_account_age_days": 1057 + "stars": 17, + "last_update": "2024-08-05 07:03:20", + "author_account_age_days": 1081 }, "https://github.com/prodogape/ComfyUI-Minio": { "stars": 2, "last_update": "2024-05-23 00:13:38", - "author_account_age_days": 1057 + "author_account_age_days": 1081 }, "https://github.com/prodogape/ComfyUI-OmDet": { "stars": 2, "last_update": "2024-06-14 13:01:34", - "author_account_age_days": 1057 + "author_account_age_days": 1081 }, "https://github.com/prodogape/Comfyui-Yolov8-JSON": { - "stars": 14, - "last_update": "2024-07-10 09:37:54", - "author_account_age_days": 1057 + "stars": 17, + "last_update": "2024-08-08 04:40:12", + "author_account_age_days": 1081 }, "https://github.com/prozacgod/comfyui-pzc-multiworkspace": { "stars": 7, "last_update": "2024-05-22 23:11:46", - "author_account_age_days": 5595 + "author_account_age_days": 5620 }, "https://github.com/pythongosssss/ComfyUI-Custom-Scripts": { - "stars": 1450, - "last_update": "2024-07-14 13:06:40", - "author_account_age_days": 525 + "stars": 1539, + "last_update": "2024-08-15 03:09:58", + "author_account_age_days": 549 }, "https://github.com/pythongosssss/ComfyUI-WD14-Tagger": { - "stars": 469, - "last_update": "2024-07-16 02:52:24", - "author_account_age_days": 525 + "stars": 524, + "last_update": "2024-08-14 02:19:00", + "author_account_age_days": 549 + }, + "https://github.com/pzc163/Comfyui-CatVTON": { + "stars": 92, + "last_update": "2024-07-31 18:18:47", + "author_account_age_days": 828 }, "https://github.com/qwixiwp/queuetools": { "stars": 0, "last_update": "2024-06-14 10:27:57", - "author_account_age_days": 638 + "author_account_age_days": 662 }, "https://github.com/ramyma/A8R8_ComfyUI_nodes": { "stars": 43, "last_update": "2024-06-29 01:20:57", - "author_account_age_days": 3244 + "author_account_age_days": 3268 }, "https://github.com/randjtw/advance-aesthetic-score": { "stars": 0, "last_update": "2024-05-23 01:14:47", - "author_account_age_days": 788 + "author_account_age_days": 812 }, "https://github.com/ratulrafsan/Comfyui-SAL-VTON": { - "stars": 65, + "stars": 69, "last_update": "2024-06-30 02:23:06", - "author_account_age_days": 4521 + "author_account_age_days": 4545 }, "https://github.com/rcfcu2000/zhihuige-nodes-comfyui": { - "stars": 0, + "stars": 1, "last_update": "2024-05-22 22:13:55", - "author_account_age_days": 3452 + "author_account_age_days": 3476 }, "https://github.com/rcsaquino/comfyui-custom-nodes": { "stars": 1, "last_update": "2024-05-22 22:13:43", - "author_account_age_days": 1538 + "author_account_age_days": 1563 }, "https://github.com/receyuki/comfyui-prompt-reader-node": { - "stars": 222, - "last_update": "2024-07-15 15:52:08", - "author_account_age_days": 2620 + "stars": 242, + "last_update": "2024-08-13 11:44:02", + "author_account_age_days": 2644 }, "https://github.com/redhottensors/ComfyUI-ODE": { - "stars": 26, - "last_update": "2024-07-21 21:40:04", - "author_account_age_days": 166 + "stars": 40, + "last_update": "2024-08-01 06:57:05", + "author_account_age_days": 191 }, "https://github.com/redhottensors/ComfyUI-Prediction": { "stars": 10, "last_update": "2024-07-14 21:19:01", - "author_account_age_days": 166 + "author_account_age_days": 191 }, "https://github.com/rgthree/rgthree-comfy": { - "stars": 782, - "last_update": "2024-07-15 00:43:35", - "author_account_age_days": 5002 + "stars": 846, + "last_update": "2024-08-11 00:41:25", + "author_account_age_days": 5026 }, "https://github.com/rhdunn/comfyui-bus-plugin": { "stars": 1, - "last_update": "2024-06-26 17:38:32", - "author_account_age_days": 5664 + "last_update": "2024-07-31 13:52:43", + "author_account_age_days": 5688 }, "https://github.com/richinsley/Comfy-LFO": { "stars": 5, "last_update": "2024-05-22 20:46:30", - "author_account_age_days": 2708 + "author_account_age_days": 2732 }, "https://github.com/ricklove/comfyui-ricklove": { "stars": 0, "last_update": "2024-05-22 23:21:25", - "author_account_age_days": 4860 + "author_account_age_days": 4884 }, "https://github.com/risunobushi/comfyUI_FrequencySeparation_RGB-HSV": { "stars": 13, "last_update": "2024-06-14 10:28:04", - "author_account_age_days": 674 + "author_account_age_days": 698 }, "https://github.com/rklaffehn/rk-comfy-nodes": { "stars": 2, "last_update": "2024-06-14 10:24:43", - "author_account_age_days": 320 + "author_account_age_days": 344 }, "https://github.com/romeobuilderotti/ComfyUI-PNG-Metadata": { "stars": 5, "last_update": "2024-05-22 21:29:25", - "author_account_age_days": 318 + "author_account_age_days": 342 }, "https://github.com/ronniebasak/ComfyUI-Tara-LLM-Integration": { - "stars": 78, - "last_update": "2024-06-25 09:06:23", - "author_account_age_days": 4182 + "stars": 82, + "last_update": "2024-07-31 14:02:18", + "author_account_age_days": 4206 }, "https://github.com/royceschultz/ComfyUI-Notifications": { - "stars": 6, + "stars": 7, "last_update": "2024-05-23 01:23:16", - "author_account_age_days": 2557 + "author_account_age_days": 2581 }, "https://github.com/royceschultz/ComfyUI-TranscriptionTools": { - "stars": 12, + "stars": 14, "last_update": "2024-05-23 01:10:10", - "author_account_age_days": 2557 + "author_account_age_days": 2581 }, "https://github.com/rui40000/RUI-Nodes": { "stars": 15, "last_update": "2024-05-22 22:12:26", - "author_account_age_days": 501 + "author_account_age_days": 525 }, "https://github.com/ruiqutech/ComfyUI-RuiquNodes": { "stars": 0, "last_update": "2024-05-23 01:21:50", - "author_account_age_days": 97 + "author_account_age_days": 121 }, "https://github.com/runtime44/comfyui_r44_nodes": { - "stars": 32, + "stars": 34, "last_update": "2024-07-01 08:02:04", - "author_account_age_days": 195 + "author_account_age_days": 219 + }, + "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside": { + "stars": 1, + "last_update": "2024-08-15 00:06:24", + "author_account_age_days": 3741 }, "https://github.com/saftle/suplex_comfy_nodes": { "stars": 0, - "last_update": "2024-05-29 13:09:25", - "author_account_age_days": 4784 + "last_update": "2024-08-13 18:59:15", + "author_account_age_days": 4809 }, "https://github.com/sdfxai/SDFXBridgeForComfyUI": { "stars": 8, "last_update": "2024-06-14 10:26:56", - "author_account_age_days": 262 + "author_account_age_days": 286 }, "https://github.com/seanlynch/comfyui-optical-flow": { - "stars": 26, + "stars": 28, "last_update": "2024-05-22 20:52:17", - "author_account_age_days": 5332 + "author_account_age_days": 5357 }, "https://github.com/seanlynch/srl-nodes": { "stars": 3, "last_update": "2024-06-30 13:47:38", - "author_account_age_days": 5332 + "author_account_age_days": 5357 }, "https://github.com/sergekatzmann/ComfyUI_Nimbus-Pack": { - "stars": 2, + "stars": 3, "last_update": "2024-05-22 21:34:15", - "author_account_age_days": 3360 + "author_account_age_days": 3384 }, "https://github.com/shadowcz007/comfyui-Image-reward": { - "stars": 21, + "stars": 22, "last_update": "2024-06-14 10:24:49", - "author_account_age_days": 3342 + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-consistency-decoder": { "stars": 2, "last_update": "2024-06-14 10:23:35", - "author_account_age_days": 3342 + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-edit-mask": { "stars": 6, "last_update": "2024-06-20 01:42:48", - "author_account_age_days": 3342 + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-liveportrait": { - "stars": 262, - "last_update": "2024-07-14 06:44:12", - "author_account_age_days": 3342 + "stars": 340, + "last_update": "2024-08-08 14:58:32", + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-mixlab-nodes": { - "stars": 975, - "last_update": "2024-07-17 12:49:23", - "author_account_age_days": 3342 + "stars": 1054, + "last_update": "2024-08-13 16:28:10", + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-sound-lab": { - "stars": 76, + "stars": 82, "last_update": "2024-07-04 12:53:38", - "author_account_age_days": 3342 + "author_account_age_days": 3366 + }, + "https://github.com/shadowcz007/comfyui-try-on": { + "stars": 6, + "last_update": "2024-08-14 05:00:43", + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-ultralytics-yolo": { - "stars": 19, + "stars": 21, "last_update": "2024-06-22 09:06:04", - "author_account_age_days": 3342 + "author_account_age_days": 3366 }, "https://github.com/shi3z/ComfyUI_Memeplex_DALLE": { "stars": 2, "last_update": "2024-05-23 00:14:25", - "author_account_age_days": 5120 + "author_account_age_days": 5144 }, "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus": { - "stars": 146, - "last_update": "2024-04-17 09:02:51", - "author_account_age_days": 1792 + "stars": 189, + "last_update": "2024-08-05 21:56:54", + "author_account_age_days": 1816 }, "https://github.com/shiimizu/ComfyUI-TiledDiffusion": { - "stars": 234, + "stars": 253, "last_update": "2024-07-14 03:23:04", - "author_account_age_days": 1792 + "author_account_age_days": 1816 + }, + "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance": { + "stars": 5, + "last_update": "2024-08-08 19:59:57", + "author_account_age_days": 1816 }, "https://github.com/shiimizu/ComfyUI_smZNodes": { - "stars": 168, - "last_update": "2024-07-14 07:15:32", - "author_account_age_days": 1792 + "stars": 187, + "last_update": "2024-08-02 23:04:20", + "author_account_age_days": 1816 }, "https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage": { - "stars": 28, + "stars": 29, "last_update": "2024-05-22 20:41:29", - "author_account_age_days": 2250 + "author_account_age_days": 2275 }, "https://github.com/shingo1228/ComfyUI-send-eagle-slim": { - "stars": 22, - "last_update": "2024-05-22 20:41:15", - "author_account_age_days": 2250 + "stars": 24, + "last_update": "2024-07-30 22:28:41", + "author_account_age_days": 2275 + }, + "https://github.com/shinich39/comfyui-connect-from-afar": { + "stars": 0, + "last_update": "2024-08-15 01:21:57", + "author_account_age_days": 364 }, "https://github.com/shinich39/comfyui-load-image-in-seq": { - "stars": 3, - "last_update": "2024-07-03 03:40:21", - "author_account_age_days": 340 + "stars": 6, + "last_update": "2024-08-03 15:44:58", + "author_account_age_days": 364 + }, + "https://github.com/shinich39/comfyui-load-image-with-cmd": { + "stars": 0, + "last_update": "2024-08-13 21:14:59", + "author_account_age_days": 364 }, "https://github.com/shinich39/comfyui-local-db": { + "stars": 2, + "last_update": "2024-08-03 15:45:29", + "author_account_age_days": 364 + }, + "https://github.com/shinich39/comfyui-model-db": { "stars": 1, - "last_update": "2024-07-03 03:42:46", - "author_account_age_days": 340 + "last_update": "2024-07-27 18:32:45", + "author_account_age_days": 364 }, "https://github.com/shinich39/comfyui-ramdom-node": { "stars": 2, - "last_update": "2024-07-03 03:11:28", - "author_account_age_days": 340 + "last_update": "2024-07-31 13:47:50", + "author_account_age_days": 364 + }, + "https://github.com/shinich39/comfyui-target-search": { + "stars": 0, + "last_update": "2024-08-15 01:21:12", + "author_account_age_days": 364 }, "https://github.com/shobhitic/ComfyUI-PlusMinusTextClip": { "stars": 3, "last_update": "2024-06-20 13:57:29", - "author_account_age_days": 4335 + "author_account_age_days": 4359 }, "https://github.com/shockz0rz/ComfyUI_InterpolateEverything": { "stars": 23, "last_update": "2024-05-22 18:13:49", - "author_account_age_days": 1653 + "author_account_age_days": 1678 }, "https://github.com/shockz0rz/comfy-easy-grids": { - "stars": 13, + "stars": 15, "last_update": "2024-05-22 18:14:05", - "author_account_age_days": 1653 + "author_account_age_days": 1678 }, "https://github.com/siliconflow/BizyAir": { - "stars": 93, - "last_update": "2024-07-21 16:19:26", - "author_account_age_days": 333 + "stars": 141, + "last_update": "2024-08-15 05:17:12", + "author_account_age_days": 357 }, "https://github.com/siliconflow/onediff_comfy_nodes": { "stars": 16, "last_update": "2024-06-24 10:08:11", - "author_account_age_days": 333 + "author_account_age_days": 357 }, "https://github.com/sipherxyz/comfyui-art-venture": { - "stars": 108, - "last_update": "2024-06-28 02:06:23", - "author_account_age_days": 1134 + "stars": 124, + "last_update": "2024-07-31 07:12:49", + "author_account_age_days": 1158 }, "https://github.com/skfoo/ComfyUI-Coziness": { "stars": 23, "last_update": "2024-05-27 18:24:29", - "author_account_age_days": 2109 + "author_account_age_days": 2134 }, "https://github.com/slyt/comfyui-ollama-nodes": { "stars": 0, - "last_update": "2024-06-25 03:31:41", - "author_account_age_days": 3967 + "last_update": "2024-07-31 13:52:27", + "author_account_age_days": 3991 }, "https://github.com/smagnetize/kb-comfyui-nodes": { "stars": 0, "last_update": "2024-06-14 12:00:45", - "author_account_age_days": 2742 + "author_account_age_days": 2766 + }, + "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API": { + "stars": 3, + "last_update": "2024-08-10 19:31:31", + "author_account_age_days": 2773 }, "https://github.com/smthemex/ComfyUI_AnyDoor": { - "stars": 30, - "last_update": "2024-07-14 01:03:34", - "author_account_age_days": 381 + "stars": 38, + "last_update": "2024-08-03 00:29:30", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_ChatGLM_API": { - "stars": 19, - "last_update": "2024-06-25 04:10:29", - "author_account_age_days": 381 + "stars": 20, + "last_update": "2024-07-31 13:53:41", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_CustomNet": { - "stars": 5, - "last_update": "2024-06-25 01:04:17", - "author_account_age_days": 381 + "stars": 8, + "last_update": "2024-08-11 08:58:37", + "author_account_age_days": 406 + }, + "https://github.com/smthemex/ComfyUI_Diffree": { + "stars": 22, + "last_update": "2024-08-14 03:50:29", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_EchoMimic": { - "stars": 88, - "last_update": "2024-07-21 08:18:53", - "author_account_age_days": 381 + "stars": 160, + "last_update": "2024-08-08 13:28:12", + "author_account_age_days": 406 + }, + "https://github.com/smthemex/ComfyUI_FoleyCrafter": { + "stars": 10, + "last_update": "2024-08-12 10:11:51", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_FollowYourEmoji": { - "stars": 7, + "stars": 9, "last_update": "2024-07-21 06:01:11", - "author_account_age_days": 381 + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_HiDiffusion_Pro": { - "stars": 32, - "last_update": "2024-07-04 11:51:49", - "author_account_age_days": 381 + "stars": 38, + "last_update": "2024-07-31 13:54:16", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_ID_Animator": { - "stars": 21, - "last_update": "2024-06-27 08:32:11", - "author_account_age_days": 381 + "stars": 24, + "last_update": "2024-07-31 13:53:27", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Llama3_8B": { - "stars": 19, + "stars": 23, "last_update": "2024-06-25 00:49:01", - "author_account_age_days": 381 + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_MS_Diffusion": { - "stars": 11, - "last_update": "2024-07-09 13:42:13", - "author_account_age_days": 381 + "stars": 32, + "last_update": "2024-08-02 05:11:44", + "author_account_age_days": 406 + }, + "https://github.com/smthemex/ComfyUI_MooER": { + "stars": 2, + "last_update": "2024-08-15 01:41:35", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_ParlerTTS": { - "stars": 21, - "last_update": "2024-06-25 00:38:01", - "author_account_age_days": 381 + "stars": 27, + "last_update": "2024-08-10 02:09:04", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Pic2Story": { - "stars": 3, - "last_update": "2024-06-25 01:16:30", - "author_account_age_days": 381 + "stars": 7, + "last_update": "2024-08-11 09:35:21", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Pipeline_Tool": { - "stars": 9, - "last_update": "2024-06-25 01:13:53", - "author_account_age_days": 381 + "stars": 11, + "last_update": "2024-08-05 06:14:57", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Pops": { - "stars": 16, - "last_update": "2024-07-04 13:09:15", - "author_account_age_days": 381 + "stars": 21, + "last_update": "2024-08-12 09:11:49", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_StableAudio_Open": { - "stars": 8, - "last_update": "2024-06-25 00:56:09", - "author_account_age_days": 381 + "stars": 10, + "last_update": "2024-08-10 03:45:47", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Stable_Makeup": { - "stars": 30, - "last_update": "2024-07-18 00:53:56", - "author_account_age_days": 381 + "stars": 45, + "last_update": "2024-07-31 14:00:28", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_StoryDiffusion": { - "stars": 85, - "last_update": "2024-07-16 00:41:00", - "author_account_age_days": 381 + "stars": 112, + "last_update": "2024-08-14 02:53:07", + "author_account_age_days": 406 }, "https://github.com/smthemex/ComfyUI_Streamv2v_Plus": { - "stars": 3, - "last_update": "2024-07-21 14:44:13", - "author_account_age_days": 381 + "stars": 8, + "last_update": "2024-07-31 13:54:27", + "author_account_age_days": 406 }, "https://github.com/sn0w12/ComfyUI-Sn0w-Scripts": { - "stars": 4, - "last_update": "2024-07-20 00:16:47", - "author_account_age_days": 801 + "stars": 7, + "last_update": "2024-08-10 14:07:07", + "author_account_age_days": 825 }, "https://github.com/space-nuko/ComfyUI-Disco-Diffusion": { - "stars": 42, - "last_update": "2024-05-22 18:10:36", - "author_account_age_days": 2752 + "stars": 43, + "last_update": "2024-08-07 11:51:17", + "author_account_age_days": 2776 }, "https://github.com/space-nuko/ComfyUI-OpenPose-Editor": { - "stars": 159, + "stars": 162, "last_update": "2024-05-22 18:10:49", - "author_account_age_days": 2752 + "author_account_age_days": 2776 }, "https://github.com/space-nuko/nui-suite": { "stars": 10, "last_update": "2024-05-22 18:11:04", - "author_account_age_days": 2752 + "author_account_age_days": 2776 }, "https://github.com/spacepxl/ComfyUI-Florence-2": { - "stars": 46, + "stars": 51, "last_update": "2024-07-20 19:44:33", - "author_account_age_days": 321 + "author_account_age_days": 346 }, "https://github.com/spacepxl/ComfyUI-HQ-Image-Save": { - "stars": 35, + "stars": 36, "last_update": "2024-06-21 04:42:58", - "author_account_age_days": 321 + "author_account_age_days": 346 }, "https://github.com/spacepxl/ComfyUI-Image-Filters": { - "stars": 89, - "last_update": "2024-07-19 06:13:21", - "author_account_age_days": 321 + "stars": 96, + "last_update": "2024-08-05 04:29:03", + "author_account_age_days": 346 }, "https://github.com/spacepxl/ComfyUI-RAVE": { - "stars": 83, + "stars": 84, "last_update": "2024-05-22 20:56:19", - "author_account_age_days": 321 + "author_account_age_days": 346 }, "https://github.com/spacepxl/ComfyUI-StyleGan": { "stars": 6, "last_update": "2024-06-10 20:16:34", - "author_account_age_days": 321 + "author_account_age_days": 346 }, "https://github.com/spinagon/ComfyUI-seam-carving": { - "stars": 15, - "last_update": "2024-05-23 05:07:00", - "author_account_age_days": 4768 + "stars": 17, + "last_update": "2024-08-04 19:13:25", + "author_account_age_days": 4792 }, "https://github.com/spinagon/ComfyUI-seamless-tiling": { - "stars": 82, - "last_update": "2024-05-23 05:03:42", - "author_account_age_days": 4768 + "stars": 93, + "last_update": "2024-08-04 19:13:54", + "author_account_age_days": 4792 }, "https://github.com/spro/comfyui-mirror": { "stars": 4, "last_update": "2024-05-22 20:50:25", - "author_account_age_days": 5259 + "author_account_age_days": 5283 }, "https://github.com/ssitu/ComfyUI_UltimateSDUpscale": { - "stars": 683, + "stars": 714, "last_update": "2024-07-17 07:45:59", - "author_account_age_days": 1716 + "author_account_age_days": 1741 }, "https://github.com/ssitu/ComfyUI_fabric": { "stars": 85, "last_update": "2024-05-22 18:10:19", - "author_account_age_days": 1716 + "author_account_age_days": 1741 }, "https://github.com/ssitu/ComfyUI_restart_sampling": { - "stars": 78, + "stars": 79, "last_update": "2024-05-22 18:09:49", - "author_account_age_days": 1716 + "author_account_age_days": 1741 }, "https://github.com/ssitu/ComfyUI_roop": { - "stars": 63, + "stars": 64, "last_update": "2024-05-22 18:10:03", - "author_account_age_days": 1716 + "author_account_age_days": 1741 }, "https://github.com/stavsap/comfyui-ollama": { - "stars": 222, - "last_update": "2024-07-13 11:22:08", - "author_account_age_days": 4111 + "stars": 270, + "last_update": "2024-08-06 15:28:13", + "author_account_age_days": 4135 }, "https://github.com/storyicon/comfyui_musev_evolved": { - "stars": 14, + "stars": 15, "last_update": "2024-06-14 11:02:40", - "author_account_age_days": 2579 + "author_account_age_days": 2603 }, "https://github.com/storyicon/comfyui_segment_anything": { - "stars": 571, + "stars": 620, "last_update": "2024-07-12 10:17:33", - "author_account_age_days": 2579 + "author_account_age_days": 2603 }, "https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score": { "stars": 25, "last_update": "2024-06-17 10:01:44", - "author_account_age_days": 2654 + "author_account_age_days": 2678 }, "https://github.com/styler00dollar/ComfyUI-deepcache": { "stars": 8, "last_update": "2024-05-22 22:18:18", - "author_account_age_days": 1873 + "author_account_age_days": 1897 }, "https://github.com/styler00dollar/ComfyUI-sudo-latent-upscale": { - "stars": 29, + "stars": 34, "last_update": "2024-05-22 22:18:07", - "author_account_age_days": 1873 + "author_account_age_days": 1897 }, "https://github.com/subtleGradient/TinkerBot-tech-for-ComfyUI-Touchpad": { "stars": 21, - "last_update": "2024-06-19 04:30:39", - "author_account_age_days": 5958 + "last_update": "2024-08-03 08:42:29", + "author_account_age_days": 5982 }, "https://github.com/sugarkwork/comfyui_cohere": { - "stars": 0, - "last_update": "2024-06-14 13:59:30", - "author_account_age_days": 903 + "stars": 1, + "last_update": "2024-07-22 08:42:31", + "author_account_age_days": 927 }, "https://github.com/sugarkwork/comfyui_tag_fillter": { - "stars": 18, - "last_update": "2024-07-02 00:21:03", - "author_account_age_days": 903 + "stars": 23, + "last_update": "2024-08-13 02:04:26", + "author_account_age_days": 927 }, "https://github.com/superyoman/comfyui_lumaAPI": { - "stars": 14, + "stars": 16, "last_update": "2024-06-17 21:00:05", - "author_account_age_days": 476 + "author_account_age_days": 500 + }, + "https://github.com/syaofox/ComfyUI_FoxTools": { + "stars": 2, + "last_update": "2024-08-13 07:52:12", + "author_account_age_days": 3207 }, "https://github.com/syllebra/bilbox-comfyui": { - "stars": 84, - "last_update": "2024-05-22 20:40:43", - "author_account_age_days": 3163 + "stars": 89, + "last_update": "2024-08-14 13:31:54", + "author_account_age_days": 3187 }, "https://github.com/sylym/comfy_vid2vid": { - "stars": 60, + "stars": 62, "last_update": "2024-05-22 17:53:40", - "author_account_age_days": 1925 + "author_account_age_days": 1950 }, "https://github.com/szhublox/ambw_comfyui": { "stars": 14, "last_update": "2024-05-22 18:04:57", - "author_account_age_days": 1034 + "author_account_age_days": 1059 }, "https://github.com/taabata/LCM_Inpaint-Outpaint_Comfy": { - "stars": 227, + "stars": 232, "last_update": "2024-06-17 10:01:50", - "author_account_age_days": 1710 + "author_account_age_days": 1734 }, "https://github.com/talesofai/comfyui-browser": { - "stars": 433, + "stars": 455, "last_update": "2024-07-11 06:23:04", - "author_account_age_days": 583 + "author_account_age_days": 607 + }, + "https://github.com/teward/Comfy-Sentry": { + "stars": 1, + "last_update": "2024-07-31 21:37:42", + "author_account_age_days": 5150 }, "https://github.com/teward/ComfyUI-Helper-Nodes": { "stars": 4, "last_update": "2024-05-23 01:22:01", - "author_account_age_days": 5125 + "author_account_age_days": 5150 }, "https://github.com/theUpsider/ComfyUI-Logic": { - "stars": 116, - "last_update": "2024-07-02 09:38:11", - "author_account_age_days": 2750 + "stars": 120, + "last_update": "2024-08-10 11:21:41", + "author_account_age_days": 2774 }, "https://github.com/theUpsider/ComfyUI-Styles_CSV_Loader": { - "stars": 29, - "last_update": "2024-07-01 08:45:52", - "author_account_age_days": 2750 + "stars": 32, + "last_update": "2024-08-02 14:06:54", + "author_account_age_days": 2774 }, "https://github.com/thecooltechguy/ComfyUI-ComfyRun": { - "stars": 78, + "stars": 80, "last_update": "2024-05-22 21:33:11", - "author_account_age_days": 2450 + "author_account_age_days": 2474 }, "https://github.com/thecooltechguy/ComfyUI-ComfyWorkflows": { - "stars": 34, + "stars": 36, "last_update": "2024-05-22 21:33:47", - "author_account_age_days": 2450 + "author_account_age_days": 2474 }, "https://github.com/thecooltechguy/ComfyUI-MagicAnimate": { - "stars": 204, + "stars": 209, "last_update": "2024-05-22 21:33:35", - "author_account_age_days": 2450 + "author_account_age_days": 2474 }, "https://github.com/thecooltechguy/ComfyUI-Stable-Video-Diffusion": { - "stars": 298, + "stars": 307, "last_update": "2024-05-24 22:14:42", - "author_account_age_days": 2450 + "author_account_age_days": 2474 }, "https://github.com/tiankuan93/ComfyUI-V-Express": { - "stars": 89, + "stars": 94, "last_update": "2024-06-26 02:41:00", - "author_account_age_days": 2977 + "author_account_age_days": 3002 }, "https://github.com/tianlang0704/ComfyUI-StableProjectorzBridge": { - "stars": 10, - "last_update": "2024-07-10 05:43:30", - "author_account_age_days": 3352 + "stars": 11, + "last_update": "2024-07-29 21:14:17", + "author_account_age_days": 3377 }, "https://github.com/tmagara/ComfyUI-Prediction-Boost": { - "stars": 1, - "last_update": "2024-06-21 05:28:58", - "author_account_age_days": 4402 + "stars": 2, + "last_update": "2024-07-31 13:51:19", + "author_account_age_days": 4427 }, "https://github.com/tocubed/ComfyUI-AudioReactor": { "stars": 8, "last_update": "2024-05-22 22:21:57", - "author_account_age_days": 3887 + "author_account_age_days": 3911 }, "https://github.com/tooldigital/ComfyUI-Yolo-Cropper": { "stars": 6, "last_update": "2024-06-14 13:59:48", - "author_account_age_days": 4345 + "author_account_age_days": 4369 }, "https://github.com/toxicwind/ComfyUI-TTools": { "stars": 1, "last_update": "2024-07-04 20:07:35", - "author_account_age_days": 4397 + "author_account_age_days": 4422 }, "https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes": { - "stars": 473, - "last_update": "2024-06-18 15:27:19", - "author_account_age_days": 3677 + "stars": 483, + "last_update": "2024-08-11 14:43:02", + "author_account_age_days": 3701 }, "https://github.com/traugdor/ComfyUI-quadMoons-nodes": { - "stars": 10, - "last_update": "2024-06-22 14:28:25", - "author_account_age_days": 3847 + "stars": 12, + "last_update": "2024-08-14 22:06:07", + "author_account_age_days": 3872 }, "https://github.com/tritant/ComfyUI_CreaPrompt": { - "stars": 16, - "last_update": "2024-07-17 07:00:01", - "author_account_age_days": 3168 + "stars": 31, + "last_update": "2024-08-02 04:55:20", + "author_account_age_days": 3192 }, "https://github.com/trojblue/trNodes": { "stars": 8, "last_update": "2024-05-22 18:04:36", - "author_account_age_days": 2285 + "author_account_age_days": 2309 }, "https://github.com/trumanwong/ComfyUI-NSFW-Detection": { - "stars": 19, - "last_update": "2024-05-23 01:27:29", - "author_account_age_days": 2987 + "stars": 20, + "last_update": "2024-08-03 05:16:33", + "author_account_age_days": 3012 }, "https://github.com/tsogzark/ComfyUI-load-image-from-url": { - "stars": 8, + "stars": 9, "last_update": "2024-06-14 13:59:05", - "author_account_age_days": 1556 + "author_account_age_days": 1580 }, "https://github.com/ttulttul/ComfyUI-Iterative-Mixer": { - "stars": 103, + "stars": 108, "last_update": "2024-07-09 14:56:02", - "author_account_age_days": 4784 + "author_account_age_days": 4809 }, "https://github.com/ttulttul/ComfyUI-Tensor-Operations": { "stars": 6, "last_update": "2024-06-12 21:55:39", - "author_account_age_days": 4784 + "author_account_age_days": 4809 }, "https://github.com/tusharbhutt/Endless-Nodes": { "stars": 23, "last_update": "2024-06-14 12:02:17", - "author_account_age_days": 2692 + "author_account_age_days": 2717 }, "https://github.com/twri/sdxl_prompt_styler": { - "stars": 654, + "stars": 691, "last_update": "2024-05-22 18:16:58", - "author_account_age_days": 4095 + "author_account_age_days": 4119 }, "https://github.com/txt2any/ComfyUI-PromptOrganizer": { "stars": 0, "last_update": "2024-05-23 01:10:33", - "author_account_age_days": 112 + "author_account_age_days": 136 }, "https://github.com/ty0x2333/ComfyUI-Dev-Utils": { - "stars": 47, - "last_update": "2024-06-03 15:06:13", - "author_account_age_days": 3730 + "stars": 65, + "last_update": "2024-08-11 08:45:12", + "author_account_age_days": 3754 }, "https://github.com/tzwm/comfyui-profiler": { - "stars": 43, - "last_update": "2024-07-06 14:03:08", - "author_account_age_days": 4796 + "stars": 116, + "last_update": "2024-08-01 04:11:04", + "author_account_age_days": 4821 }, "https://github.com/uarefans/ComfyUI-Fans": { "stars": 12, "last_update": "2024-07-14 15:00:38", - "author_account_age_days": 1299 + "author_account_age_days": 1323 }, "https://github.com/uetuluk/comfyui-webcam-node": { - "stars": 2, + "stars": 3, "last_update": "2024-06-14 08:25:13", - "author_account_age_days": 2341 + "author_account_age_days": 2365 }, "https://github.com/un-seen/comfyui-tensorops": { - "stars": 1, - "last_update": "2024-07-17 07:08:06", - "author_account_age_days": 1343 + "stars": 6, + "last_update": "2024-08-08 09:51:45", + "author_account_age_days": 1368 + }, + "https://github.com/un-seen/comfyui_segment_anything_plus": { + "stars": 4, + "last_update": "2024-07-29 06:21:54", + "author_account_age_days": 1368 }, "https://github.com/unwdef/unwdef-nodes-comfyui": { "stars": 2, - "last_update": "2024-06-27 23:14:09", - "author_account_age_days": 101 + "last_update": "2024-07-31 13:39:39", + "author_account_age_days": 125 }, "https://github.com/vanche1212/ComfyUI-ZMG-Nodes": { "stars": 3, "last_update": "2024-06-25 04:48:19", - "author_account_age_days": 2985 + "author_account_age_days": 3009 }, "https://github.com/vanillacode314/SimpleWildcardsComfyUI": { - "stars": 3, - "last_update": "2024-06-28 10:57:45", - "author_account_age_days": 884 + "stars": 4, + "last_update": "2024-07-31 13:39:43", + "author_account_age_days": 909 + }, + "https://github.com/var1ableX/ComfyUI_Accessories": { + "stars": 1, + "last_update": "2024-07-27 04:00:14", + "author_account_age_days": 4816 + }, + "https://github.com/vault-developer/comfyui-image-blender": { + "stars": 17, + "last_update": "2024-08-03 19:30:31", + "author_account_age_days": 2665 }, "https://github.com/veighnsche/comfyui_gr85": { "stars": 1, "last_update": "2024-06-27 15:00:08", - "author_account_age_days": 3127 + "author_account_age_days": 3152 }, "https://github.com/victorchall/comfyui_webcamcapture": { - "stars": 6, + "stars": 7, "last_update": "2024-06-22 18:59:10", - "author_account_age_days": 3173 + "author_account_age_days": 3197 }, "https://github.com/vienteck/ComfyUI-Chat-GPT-Integration": { - "stars": 27, + "stars": 28, "last_update": "2024-05-22 22:11:14", - "author_account_age_days": 3454 + "author_account_age_days": 3479 }, "https://github.com/violet-chen/comfyui-psd2png": { "stars": 16, "last_update": "2024-06-12 15:30:14", - "author_account_age_days": 1425 + "author_account_age_days": 1449 }, "https://github.com/viperyl/ComfyUI-BiRefNet": { - "stars": 167, - "last_update": "2024-06-20 15:25:49", - "author_account_age_days": 2060 + "stars": 182, + "last_update": "2024-08-08 10:52:47", + "author_account_age_days": 2084 }, "https://github.com/viperyl/ComfyUI-RGT": { - "stars": 5, + "stars": 6, "last_update": "2024-06-20 15:33:50", - "author_account_age_days": 2060 + "author_account_age_days": 2084 }, "https://github.com/vivax3794/ComfyUI-Sub-Nodes": { - "stars": 103, - "last_update": "2024-07-20 19:51:37", - "author_account_age_days": 1866 + "stars": 114, + "last_update": "2024-07-22 00:42:28", + "author_account_age_days": 1890 }, "https://github.com/vivax3794/ComfyUI-Vivax-Nodes": { "stars": 3, "last_update": "2024-07-07 21:44:01", - "author_account_age_days": 1866 + "author_account_age_days": 1890 }, "https://github.com/vsevolod-oparin/comfyui-kandinsky22": { - "stars": 8, - "last_update": "2024-07-11 16:48:09", - "author_account_age_days": 5011 + "stars": 9, + "last_update": "2024-07-31 16:03:48", + "author_account_age_days": 5036 }, "https://github.com/wTechArtist/ComfyUI-CustomNodes": { - "stars": 0, - "last_update": "2024-07-21 13:56:33", - "author_account_age_days": 1388 + "stars": 3, + "last_update": "2024-08-08 08:06:19", + "author_account_age_days": 1412 }, "https://github.com/wallish77/wlsh_nodes": { - "stars": 87, + "stars": 89, "last_update": "2024-06-19 12:01:29", - "author_account_age_days": 2247 + "author_account_age_days": 2272 }, "https://github.com/wandbrandon/comfyui-pixel": { "stars": 4, "last_update": "2024-06-14 07:07:09", - "author_account_age_days": 3411 + "author_account_age_days": 3435 }, "https://github.com/web3nomad/ComfyUI_Invisible_Watermark": { "stars": 1, "last_update": "2024-05-23 01:16:54", - "author_account_age_days": 995 + "author_account_age_days": 1019 + }, + "https://github.com/webfiltered/DebugNode-ComfyUI": { + "stars": 2, + "last_update": "2024-08-05 10:46:37", + "author_account_age_days": 25 }, "https://github.com/wei30172/comfygen": { - "stars": 5, + "stars": 6, "last_update": "2024-05-23 00:21:19", - "author_account_age_days": 1640 + "author_account_age_days": 1664 }, "https://github.com/whatbirdisthat/cyberdolphin": { "stars": 14, - "last_update": "2024-05-23 03:43:08", - "author_account_age_days": 5514 + "last_update": "2024-07-31 13:40:12", + "author_account_age_days": 5538 }, "https://github.com/whmc76/ComfyUI-Openpose-Editor-Plus": { "stars": 30, "last_update": "2024-06-20 13:52:34", - "author_account_age_days": 479 + "author_account_age_days": 503 }, "https://github.com/wmatson/easy-comfy-nodes": { "stars": 15, - "last_update": "2024-07-19 20:14:24", - "author_account_age_days": 4145 + "last_update": "2024-07-31 13:40:36", + "author_account_age_days": 4169 }, "https://github.com/wolfden/ComfyUi_PromptStylers": { - "stars": 68, + "stars": 69, "last_update": "2024-05-22 18:17:46", - "author_account_age_days": 5748 + "author_account_age_days": 5773 }, "https://github.com/wolfden/ComfyUi_String_Function_Tree": { "stars": 8, "last_update": "2024-05-22 18:29:16", - "author_account_age_days": 5748 + "author_account_age_days": 5773 }, "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler": { - "stars": 0, - "last_update": "2024-07-21 21:23:14", - "author_account_age_days": 1595 + "stars": 47, + "last_update": "2024-07-27 18:32:55", + "author_account_age_days": 1619 }, "https://github.com/wujm424606/ComfyUi-Ollama-YN": { - "stars": 24, + "stars": 42, "last_update": "2024-07-12 13:24:56", - "author_account_age_days": 2290 + "author_account_age_days": 2314 }, "https://github.com/wutipong/ComfyUI-TextUtils": { "stars": 1, "last_update": "2024-06-14 09:34:31", - "author_account_age_days": 4212 + "author_account_age_days": 4236 }, "https://github.com/wwwins/ComfyUI-Simple-Aspect-Ratio": { "stars": 1, "last_update": "2024-05-22 22:22:25", - "author_account_age_days": 5077 + "author_account_age_days": 5101 }, "https://github.com/xXAdonesXx/NodeGPT": { "stars": 329, "last_update": "2024-06-20 11:41:30", - "author_account_age_days": 1506 + "author_account_age_days": 1530 }, "https://github.com/xiaoxiaodesha/hd_node": { - "stars": 8, + "stars": 9, "last_update": "2024-06-11 02:36:48", - "author_account_age_days": 2902 + "author_account_age_days": 2926 }, "https://github.com/xliry/ComfyUI_SendDiscord": { "stars": 0, "last_update": "2024-05-23 02:21:38", - "author_account_age_days": 1300 + "author_account_age_days": 1325 }, "https://github.com/xuhongming251/ComfyUI-GPEN": { "stars": 2, "last_update": "2024-06-15 14:33:37", - "author_account_age_days": 4133 + "author_account_age_days": 4157 }, "https://github.com/xuhongming251/ComfyUI-MuseTalkUtils": { "stars": 14, "last_update": "2024-06-15 14:32:32", - "author_account_age_days": 4133 + "author_account_age_days": 4157 }, "https://github.com/ycchanau/ComfyUI_Preview_Magnifier": { - "stars": 2, - "last_update": "2024-07-18 17:21:38", - "author_account_age_days": 2144 + "stars": 3, + "last_update": "2024-07-31 13:59:12", + "author_account_age_days": 2169 }, "https://github.com/yffyhk/comfyui_auto_danbooru": { "stars": 1, "last_update": "2024-05-22 23:23:03", - "author_account_age_days": 3749 + "author_account_age_days": 3773 + }, + "https://github.com/yiwangsimple/ComfyUI_DW_Chat": { + "stars": 65, + "last_update": "2024-08-13 19:02:18", + "author_account_age_days": 603 }, "https://github.com/yiwangsimple/ComfyUI_GroqChat": { - "stars": 37, - "last_update": "2024-07-19 06:20:14", - "author_account_age_days": 579 + "stars": 65, + "last_update": "2024-08-13 19:02:18", + "author_account_age_days": 603 }, "https://github.com/yolain/ComfyUI-Easy-Use": { - "stars": 627, - "last_update": "2024-07-20 13:02:31", - "author_account_age_days": 1368 + "stars": 750, + "last_update": "2024-08-14 14:00:49", + "author_account_age_days": 1392 }, "https://github.com/yolanother/DTAIComfyImageSubmit": { "stars": 1, "last_update": "2024-05-22 18:14:56", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/yolanother/DTAIComfyLoaders": { "stars": 1, "last_update": "2024-05-22 18:14:44", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/yolanother/DTAIComfyPromptAgent": { "stars": 5, "last_update": "2024-05-22 18:14:18", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/yolanother/DTAIComfyQRCodes": { "stars": 2, "last_update": "2024-05-22 18:15:09", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/yolanother/DTAIComfyVariables": { - "stars": 8, + "stars": 9, "last_update": "2024-05-22 18:15:21", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/yolanother/DTAIImageToTextNode": { "stars": 15, "last_update": "2024-05-22 18:14:31", - "author_account_age_days": 4891 + "author_account_age_days": 4915 }, "https://github.com/youyegit/tdxh_node_comfyui": { + "stars": 3, + "last_update": "2024-08-02 09:47:45", + "author_account_age_days": 480 + }, + "https://github.com/yuan199696/add_text_2_img": { "stars": 2, - "last_update": "2024-05-23 17:55:42", - "author_account_age_days": 456 + "last_update": "2024-08-15 02:51:45", + "author_account_age_days": 2494 + }, + "https://github.com/yuan199696/chinese_clip_encode": { + "stars": 2, + "last_update": "2024-08-15 02:47:23", + "author_account_age_days": 2494 }, "https://github.com/yuvraj108c/ComfyUI-Depth-Anything-Tensorrt": { - "stars": 69, + "stars": 72, "last_update": "2024-07-02 08:09:45", - "author_account_age_days": 2180 + "author_account_age_days": 2204 + }, + "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt": { + "stars": 11, + "last_update": "2024-08-14 04:00:22", + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-PiperTTS": { - "stars": 26, + "stars": 27, "last_update": "2024-05-22 23:17:27", - "author_account_age_days": 2180 + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-Pronodes": { "stars": 1, "last_update": "2024-05-22 23:16:51", - "author_account_age_days": 2180 + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-Upscaler-Tensorrt": { - "stars": 43, - "last_update": "2024-05-31 05:50:59", - "author_account_age_days": 2180 + "stars": 44, + "last_update": "2024-08-12 10:56:15", + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-Vsgan": { "stars": 2, "last_update": "2024-05-22 23:17:02", - "author_account_age_days": 2180 + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-Whisper": { - "stars": 57, - "last_update": "2024-05-31 05:59:22", - "author_account_age_days": 2180 + "stars": 63, + "last_update": "2024-08-06 05:31:10", + "author_account_age_days": 2204 }, "https://github.com/yuvraj108c/ComfyUI-YoloNasPose-Tensorrt": { "stars": 8, "last_update": "2024-06-28 15:59:14", - "author_account_age_days": 2180 + "author_account_age_days": 2204 }, "https://github.com/za-wa-n-go/ComfyUI_Zwng_Nodes": { - "stars": 3, - "last_update": "2024-07-02 14:57:01", - "author_account_age_days": 615 + "stars": 4, + "last_update": "2024-07-31 13:52:30", + "author_account_age_days": 640 }, "https://github.com/zcfrank1st/Comfyui-Toolbox": { "stars": 5, "last_update": "2024-05-22 22:08:07", - "author_account_age_days": 4442 + "author_account_age_days": 4467 }, "https://github.com/zcfrank1st/Comfyui-Yolov8": { - "stars": 17, + "stars": 19, "last_update": "2024-06-14 07:08:40", - "author_account_age_days": 4442 + "author_account_age_days": 4467 }, "https://github.com/zcfrank1st/comfyui_visual_anagrams": { "stars": 5, "last_update": "2024-06-14 07:07:27", - "author_account_age_days": 4442 + "author_account_age_days": 4467 }, "https://github.com/zer0TF/cute-comfy": { - "stars": 30, + "stars": 31, "last_update": "2024-05-22 21:18:53", - "author_account_age_days": 2697 + "author_account_age_days": 2722 }, "https://github.com/zeroxoxo/ComfyUI-Fast-Style-Transfer": { - "stars": 56, - "last_update": "2024-07-18 20:47:14", - "author_account_age_days": 2470 + "stars": 62, + "last_update": "2024-08-15 03:56:51", + "author_account_age_days": 2495 }, "https://github.com/zfkun/ComfyUI_zfkun": { - "stars": 14, + "stars": 17, "last_update": "2024-05-27 11:21:51", - "author_account_age_days": 4890 + "author_account_age_days": 4914 }, "https://github.com/zhangp365/ComfyUI-utils-nodes": { - "stars": 7, - "last_update": "2024-07-19 05:43:12", - "author_account_age_days": 318 + "stars": 10, + "last_update": "2024-08-08 02:31:08", + "author_account_age_days": 342 }, "https://github.com/zhongpei/ComfyUI-InstructIR": { - "stars": 61, + "stars": 62, "last_update": "2024-05-22 23:19:43", - "author_account_age_days": 3486 + "author_account_age_days": 3510 }, "https://github.com/zhongpei/Comfyui_image2prompt": { - "stars": 252, + "stars": 265, "last_update": "2024-05-22 23:19:30", - "author_account_age_days": 3486 + "author_account_age_days": 3510 }, "https://github.com/zhuanqianfish/ComfyUI-EasyNode": { "stars": 60, "last_update": "2024-06-14 07:10:18", - "author_account_age_days": 4262 + "author_account_age_days": 4286 }, "https://github.com/zhulu111/ComfyUI_Bxb": { - "stars": 102, - "last_update": "2024-07-15 01:35:34", - "author_account_age_days": 66 + "stars": 658, + "last_update": "2024-08-01 04:31:43", + "author_account_age_days": 91 }, "https://github.com/zohac/ComfyUI_ZC_DrawShape": { "stars": 3, "last_update": "2024-06-25 15:05:28", - "author_account_age_days": 2689 + "author_account_age_days": 2713 }, "https://github.com/zombieyang/sd-ppp": { - "stars": 24, - "last_update": "2024-07-21 08:55:43", - "author_account_age_days": 3945 + "stars": 77, + "last_update": "2024-08-15 05:29:20", + "author_account_age_days": 3969 } } \ No newline at end of file diff --git a/glob/manager_core.py b/glob/manager_core.py index 3c0470fb..343ea206 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 47] +version = [2, 49] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') @@ -97,12 +97,15 @@ def clear_pip_cache(): def is_blacklisted(name): name = name.strip() - pattern = r'([^<>!=]+)([<>!=]=?)(.*)' + pattern = r'([^<>!=]+)([<>!=]=?)([^ ]*)' match = re.search(pattern, name) if match: name = match.group(1) + if name in cm_global.pip_blacklist: + return True + if name in cm_global.pip_downgrade_blacklist: pips = get_installed_packages() @@ -123,12 +126,15 @@ def is_installed(name): if name.startswith('#'): return True - pattern = r'([^<>!=]+)([<>!=]=?)(.*)' + pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)' match = re.search(pattern, name) if match: name = match.group(1) + if name in cm_global.pip_blacklist: + return True + if name in cm_global.pip_downgrade_blacklist: pips = get_installed_packages() @@ -405,8 +411,14 @@ def execute_install_script(url, repo_path, lazy_mode=False, instant_execution=Fa with open(requirements_path, "r") as requirements_file: for line in requirements_file: package_name = remap_pip_package(line.strip()) + if package_name and not package_name.startswith('#'): - install_cmd = [sys.executable, "-m", "pip", "install", package_name] + if '--index-url' in package_name: + s = package_name.split('--index-url') + install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()] + else: + install_cmd = [sys.executable, "-m", "pip", "install", package_name] + if package_name.strip() != "" and not package_name.startswith('#'): try_install_script(url, repo_path, install_cmd, instant_execution=instant_execution) @@ -1215,3 +1227,4 @@ def unzip(model_path): os.remove(model_path) return True + diff --git a/glob/manager_server.py b/glob/manager_server.py index c041368d..95ff7605 100644 --- a/glob/manager_server.py +++ b/glob/manager_server.py @@ -59,7 +59,7 @@ def is_allowed_security_level(level): async def get_risky_level(files): json_data1 = await core.get_data_by_mode('local', 'custom-node-list.json') - json_data2 = await core.get_data_by_mode('cache', 'custom-node-list.json', channel_url='https://github.com/ltdrdata/ComfyUI-Manager/raw/main/custom-node-list.json') + json_data2 = await core.get_data_by_mode('cache', 'custom-node-list.json', channel_url='https://github.com/ltdrdata/ComfyUI-Manager/raw/main') all_urls = set() for x in json_data1['custom_nodes'] + json_data2['custom_nodes']: @@ -249,8 +249,12 @@ def get_model_dir(data): model_type = data['type'] if model_type == "checkpoints": base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0] + elif model_type == "checkpoint": + base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0] elif model_type == "unclip": base_model = folder_paths.folder_names_and_paths["checkpoints"][0][0] + elif model_type == "clip": + base_model = folder_paths.folder_names_and_paths["clip"][0][0] elif model_type == "VAE": base_model = folder_paths.folder_names_and_paths["vae"][0][0] elif model_type == "lora": @@ -990,8 +994,17 @@ async def install_model(request): return web.Response(status=403) if not json_data['filename'].endswith('.safetensors') and not is_allowed_security_level('high'): - print(f"ERROR: To use this feature, you must either set '--listen' to a local IP and set the security level to 'normal-' or lower, or set the security level to 'middle' or 'weak'. Please contact the administrator.") - return web.Response(status=403) + models_json = await core.get_data_by_mode('cache', 'model-list.json') + + is_belongs_to_whitelist = False + for x in models_json['models']: + if x.get('url') == json_data['url']: + is_belongs_to_whitelist = True + break + + if not is_belongs_to_whitelist: + print(f"ERROR: To use this feature, you must either set '--listen' to a local IP and set the security level to 'normal-' or lower, or set the security level to 'middle' or 'weak'. Please contact the administrator.") + return web.Response(status=403) res = False diff --git a/glob/manager_util.py b/glob/manager_util.py index 5dc66b53..c8a93d7b 100644 --- a/glob/manager_util.py +++ b/glob/manager_util.py @@ -1,63 +1,64 @@ -try: - from distutils.version import StrictVersion -except: - print(f"[ComfyUI-Manager] 'distutils' package not found. Activating fallback mode for compatibility.") - class StrictVersion: - def __init__(self, version_string): - self.version_string = version_string - self.major = 0 - self.minor = 0 - self.patch = 0 - self.pre_release = None - self.parse_version_string() +# DON'T USE StrictVersion - cannot handle pre_release version +# try: +# from distutils.version import StrictVersion +# except: +# print(f"[ComfyUI-Manager] 'distutils' package not found. Activating fallback mode for compatibility.") +class StrictVersion: + def __init__(self, version_string): + self.version_string = version_string + self.major = 0 + self.minor = 0 + self.patch = 0 + self.pre_release = None + self.parse_version_string() - def parse_version_string(self): - parts = self.version_string.split('.') - if not parts: - raise ValueError("Version string must not be empty") + def parse_version_string(self): + parts = self.version_string.split('.') + if not parts: + raise ValueError("Version string must not be empty") - self.major = int(parts[0]) - self.minor = int(parts[1]) if len(parts) > 1 else 0 - self.patch = int(parts[2]) if len(parts) > 2 else 0 + self.major = int(parts[0]) + self.minor = int(parts[1]) if len(parts) > 1 else 0 + self.patch = int(parts[2]) if len(parts) > 2 else 0 - # Handling pre-release versions if present - if len(parts) > 3: - self.pre_release = parts[3] + # Handling pre-release versions if present + if len(parts) > 3: + self.pre_release = parts[3] - def __str__(self): - version = f"{self.major}.{self.minor}.{self.patch}" - if self.pre_release: - version += f"-{self.pre_release}" - return version + def __str__(self): + version = f"{self.major}.{self.minor}.{self.patch}" + if self.pre_release: + version += f"-{self.pre_release}" + return version - def __eq__(self, other): - return (self.major, self.minor, self.patch, self.pre_release) == \ - (other.major, other.minor, other.patch, other.pre_release) + def __eq__(self, other): + return (self.major, self.minor, self.patch, self.pre_release) == \ + (other.major, other.minor, other.patch, other.pre_release) - def __lt__(self, other): - if (self.major, self.minor, self.patch) == (other.major, other.minor, other.patch): - return self.pre_release_compare(self.pre_release, other.pre_release) < 0 - return (self.major, self.minor, self.patch) < (other.major, other.minor, other.patch) + def __lt__(self, other): + if (self.major, self.minor, self.patch) == (other.major, other.minor, other.patch): + return self.pre_release_compare(self.pre_release, other.pre_release) < 0 + return (self.major, self.minor, self.patch) < (other.major, other.minor, other.patch) - @staticmethod - def pre_release_compare(pre1, pre2): - if pre1 == pre2: - return 0 - if pre1 is None: - return 1 - if pre2 is None: - return -1 - return -1 if pre1 < pre2 else 1 + @staticmethod + def pre_release_compare(pre1, pre2): + if pre1 == pre2: + return 0 + if pre1 is None: + return 1 + if pre2 is None: + return -1 + return -1 if pre1 < pre2 else 1 - def __le__(self, other): - return self == other or self < other + def __le__(self, other): + return self == other or self < other - def __gt__(self, other): - return not self <= other + def __gt__(self, other): + return not self <= other - def __ge__(self, other): - return not self < other + def __ge__(self, other): + return not self < other - def __ne__(self, other): - return not self == other + def __ne__(self, other): + return not self == other diff --git a/glob/security_check.py b/glob/security_check.py index 1c6fdf6f..12fe527c 100644 --- a/glob/security_check.py +++ b/glob/security_check.py @@ -12,7 +12,7 @@ def security_check(): guide = { "ComfyUI_LLMVISION": """ 0.Remove ComfyUI\\custom_nodes\\ComfyUI_LLMVISION. -1.Remove pip packages: openai-1.16.3.dist-info, anthropic-0.21.4.dist-info, openai-1.30.2.dist-info, anthropic-0.26.1.dist-info, %LocalAppData%\\rundll64.exe +1.Remove pip packages: openai-1.16.3.dist-info, anthropic-0.21.4.dist-info, openai-1.30.2.dist-info, anthropic-0.21.5.dist-info, anthropic-0.26.1.dist-info, %LocalAppData%\\rundll64.exe (For portable versions, it is recommended to reinstall. If you are using a venv, it is advised to recreate the venv.) 2.Remove these files in your system: lib/browser/admin.py, Cadmino.py, Fadmino.py, VISION-D.exe, BeamNG.UI.exe 3.Check your Windows registry for the key listed above and remove it. @@ -44,6 +44,18 @@ Detailed information: https://old.reddit.com/r/comfyui/comments/1dbls5n/psa_if_y installed_pips = subprocess.check_output([sys.executable, '-m', "pip", "freeze"], text=True) detected = set() + try: + anthropic_info = subprocess.check_output([sys.executable, '-m', "pip", "show", "anthropic"], text=True, stderr=subprocess.DEVNULL) + anthropic_reqs = [x for x in anthropic_info.split('\n') if x.startswith("Requires")][0].split(': ')[1] + if "pycrypto" in anthropic_reqs: + location = [x for x in anthropic_info.split('\n') if x.startswith("Location")][0].split(': ')[1] + for fi in os.listdir(location): + if fi.startswith("anthropic"): + guide["ComfyUI_LLMVISION"] = f"\n0.Remove {os.path.join(location, fi)}" + guide["ComfyUI_LLMVISION"] + detected.add("ComfyUI_LLMVISION") + except subprocess.CalledProcessError: + pass + for k, v in node_blacklist.items(): if os.path.exists(os.path.join(custom_nodes_path, k)): print(f"[SECURITY ALERT] custom node '{k}' is dangerous.") diff --git a/js/cm-api.js b/js/cm-api.js index 1a6309d3..95a13cfb 100644 --- a/js/cm-api.js +++ b/js/cm-api.js @@ -4,7 +4,7 @@ import { sleep } from "./common.js"; async function tryInstallCustomNode(event) { let msg = '-= [ComfyUI Manager] extension installation request =-\n\n'; - msg += `The '${event.detail.sender}' extension requires the installation of the '${event.detail.title}' extension. `; + msg += `The '${event.detail.sender}' extension requires the installation of the '${event.detail.target.title}' extension. `; if(event.detail.target.installed == 'Disabled') { msg += 'However, the extension is currently disabled. Would you like to enable it and reboot?' diff --git a/js/node_fixer.js b/js/node_fixer.js index 94b4c747..f83022f5 100644 --- a/js/node_fixer.js +++ b/js/node_fixer.js @@ -105,6 +105,10 @@ function node_info_copy(src, dest, connect_both) { // copy input connections for(let i in src.inputs) { let input = src.inputs[i]; + if (input.widget !== undefined) { + const destWidget = dest.widgets.find(x => x.name === input.widget.name); + dest.convertWidgetToInput(destWidget); + } if(input.link) { let link = app.graph.links[input.link]; let src_node = app.graph.getNodeById(link.origin_id); @@ -138,6 +142,10 @@ function node_info_copy(src, dest, connect_both) { } } + dest.color = src.color; + dest.bgcolor = src.bgcolor; + dest.size = src.size; + app.graph.afterChange(); } @@ -202,7 +210,7 @@ app.registerExtension({ let new_node = LiteGraph.createNode(nodeType.comfyClass); new_node.pos = [this.pos[0], this.pos[1]]; app.canvas.graph.add(new_node, false); - node_info_copy(this, new_node); + node_info_copy(this, new_node, true); app.canvas.graph.remove(this); }, }); diff --git a/model-list.json b/model-list.json index a09be863..0863ae6e 100644 --- a/model-list.json +++ b/model-list.json @@ -178,7 +178,7 @@ }, { "name": "stabilityai/stable-diffusion-x4-upscaler", - "type": "checkpoints", + "type": "checkpoint", "base": "upscale", "save_path": "checkpoints/upscale", "description": "This upscaling model is a latent text-guided diffusion model and should be used with SD_4XUpscale_Conditioning and KSampler.", @@ -255,7 +255,7 @@ }, { "name": "Stable Video Diffusion Image-to-Video", - "type": "checkpoints", + "type": "checkpoint", "base": "SVD", "save_path": "checkpoints/SVD", "description": "Stable Video Diffusion (SVD) Image-to-Video is a diffusion model that takes in a still image as a conditioning frame, and generates a video from it.\nNOTE: 14 frames @ 576x1024", @@ -277,7 +277,7 @@ }, { "name": "Stable Video Diffusion Image-to-Video (XT)", - "type": "checkpoints", + "type": "checkpoint", "base": "SVD", "save_path": "checkpoints/SVD", "description": "Stable Video Diffusion (SVD) Image-to-Video is a diffusion model that takes in a still image as a conditioning frame, and generates a video from it.\nNOTE: 25 frames @ 576x1024 ", @@ -332,7 +332,7 @@ }, { "name": "stabilityai/comfyui_checkpoints/stable_cascade_stage_b.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "Stable Cascade", "save_path": "checkpoints/Stable-Cascade", "description": "Stable Cascade stage_b checkpoints", @@ -343,7 +343,7 @@ }, { "name": "stabilityai/comfyui_checkpoints/stable_cascade_stage_c.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "Stable Cascade", "save_path": "checkpoints/Stable-Cascade", "description": "Stable Cascade stage_c checkpoints", @@ -475,7 +475,7 @@ }, { "name": "SDXL-Turbo 1.0 (fp16)", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "checkpoints/SDXL-TURBO", "description": "SDXL-Turbo 1.0 fp16", @@ -486,7 +486,7 @@ }, { "name": "SDXL-Turbo 1.0", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "checkpoints/SDXL-TURBO", "description": "SDXL-Turbo 1.0", @@ -497,7 +497,7 @@ }, { "name": "sd_xl_base_1.0_0.9vae.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "default", "description": "Stable Diffusion XL base model (VAE 0.9)", @@ -508,7 +508,7 @@ }, { "name": "sd_xl_base_1.0.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "default", "description": "Stable Diffusion XL base model", @@ -519,7 +519,7 @@ }, { "name": "sd_xl_refiner_1.0_0.9vae.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "default", "description": "Stable Diffusion XL refiner model (VAE 0.9)", @@ -530,7 +530,7 @@ }, { "name": "stable-diffusion-xl-refiner-1.0", - "type": "checkpoints", + "type": "checkpoint", "base": "SDXL", "save_path": "default", "description": "Stable Diffusion XL refiner model", @@ -618,9 +618,44 @@ "size": "892MB" }, + { + "name": "google-t5/t5-v1_1-xxl_encoderonly-fp16", + "type": "clip", + "base": "t5", + "save_path": "clip/t5", + "description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1", + "reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly", + "filename": "google_t5-v1_1-xxl_encoderonly-fp16.safetensors", + "url": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly/resolve/main/pytorch_model.safetensors", + "size": "10.1GB" + }, + { + "name": "google-t5/t5-v1_1-xxl_encoderonly-fp8_e4m3fn", + "type": "clip", + "base": "t5", + "save_path": "clip/t5", + "description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1", + "reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly", + "filename": "google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors", + "url": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly/resolve/main/t5xxl_fp8_e4m3fn.safetensors", + "size": "4.89GB" + }, + + { + "name": "comfyanonymous/clip_l", + "type": "clip", + "base": "clip", + "save_path": "default", + "description": "clip_l model", + "reference": "https://huggingface.co/comfyanonymous/flux_text_encoders/tree/main", + "filename": "clip_l.safetensors", + "url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/clip_l.safetensors", + "size": "246MB" + }, + { "name": "v1-5-pruned-emaonly.ckpt", - "type": "checkpoints", + "type": "checkpoint", "base": "SD1.5", "save_path": "default", "description": "Stable Diffusion 1.5 base model", @@ -631,7 +666,7 @@ }, { "name": "v2-1_512-ema-pruned.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "SD2", "save_path": "default", "description": "Stable Diffusion 2 base model (512)", @@ -642,7 +677,7 @@ }, { "name": "v2-1_768-ema-pruned.safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "SD2", "save_path": "default", "description": "Stable Diffusion 2 base model (768)", @@ -653,7 +688,7 @@ }, { "name": "AbyssOrangeMix2 (hard)", - "type": "checkpoints", + "type": "checkpoint", "base": "SD1.5", "save_path": "default", "description": "AbyssOrangeMix2 - hard version (anime style)", @@ -664,7 +699,7 @@ }, { "name": "AbyssOrangeMix3 A1", - "type": "checkpoints", + "type": "checkpoint", "base": "SD1.5", "save_path": "default", "description": "AbyssOrangeMix3 - A1 (anime style)", @@ -675,7 +710,7 @@ }, { "name": "AbyssOrangeMix3 A3", - "type": "checkpoints", + "type": "checkpoint", "base": "SD1.5", "save_path": "default", "description": "AbyssOrangeMix - A3 (anime style)", @@ -686,7 +721,7 @@ }, { "name": "Waifu Diffusion 1.5 Beta3 (fp16)", - "type": "checkpoints", + "type": "checkpoint", "base": "SD2.1", "save_path": "default", "description": "Waifu Diffusion 1.5 Beta3", @@ -807,7 +842,7 @@ }, { "name": "Segmind-Vega", - "type": "checkpoints", + "type": "checkpoint", "base": "segmind-vega", "save_path": "checkpoints/segmind-vega", "description": "The Segmind-Vega Model is a distilled version of the Stable Diffusion XL (SDXL), offering a remarkable 70% reduction in size and an impressive 100% speedup while retaining high-quality text-to-image generation capabilities.", @@ -1962,7 +1997,7 @@ }, { "name": "TencentARC/motionctrl.pth", - "type": "checkpoints", + "type": "checkpoint", "base": "MotionCtrl", "save_path": "checkpoints/motionctrl", "description": "To use the ComfyUI-MotionCtrl extension, downloading this model is required.", @@ -2378,6 +2413,17 @@ "url": "https://huggingface.co/TencentARC/PhotoMaker/resolve/main/photomaker-v1.bin", "size": "934.1MB" }, + { + "name": "photomaker-v2.bin", + "type": "photomaker", + "base": "SDXL", + "save_path": "photomaker", + "description": "PhotoMaker model. This model is compatible with SDXL.", + "reference": "https://huggingface.co/TencentARC/PhotoMaker-V2", + "filename": "photomaker-v2.bin", + "url": "https://huggingface.co/TencentARC/PhotoMaker-V2/resolve/main/photomaker-v2.bin", + "size": "1.8GB" + }, { "name": "1k3d68.onnx", "type": "insightface", @@ -2620,28 +2666,6 @@ "url": "https://huggingface.co/ShilongLiu/GroundingDINO/raw/main/GroundingDINO_SwinT_OGC.cfg.py", "size": "1.01KB" }, - { - "name": "ViT-H SAM model", - "type": "sam", - "base": "SAM", - "save_path": "sams", - "description": "Segmenty Anything SAM model (ViT-H)", - "reference": "https://github.com/facebookresearch/segment-anything#model-checkpoints", - "filename": "sam_vit_h_4b8939.pth", - "url": "https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth", - "size": "2.56GB" - }, - { - "name": "ViT-L SAM model", - "type": "sam", - "base": "SAM", - "save_path": "sams", - "description": "Segmenty Anything SAM model (ViT-L)", - "reference": "https://github.com/facebookresearch/segment-anything#model-checkpoints", - "filename": "sam_vit_l_0b3195.pth", - "url": "https://dl.fbaipublicfiles.com/segment_anything/sam_vit_l_0b3195.pth", - "size": "1.25GB" - }, { "name": "MobileSAM", "type": "sam", @@ -2655,7 +2679,7 @@ }, { "name": "DynamiCrafter 1024 bf16 safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "DynamiCrafter", "save_path": "checkpoints/dynamicrafter", "description": "DynamiCrafter image2video model 1024x575", @@ -2666,7 +2690,7 @@ }, { "name": "DynamiCrafter 512 interpolation bf16 safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "DynamiCrafter", "save_path": "checkpoints/dynamicrafter", "description": "DynamiCrafter image2video interpolation model 512", @@ -2688,7 +2712,7 @@ }, { "name": "Depth-FM-v1 fp16 safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "Depth-FM", "save_path": "checkpoints/depthfm", "description": "Depth-FM monocular depth estimation model", @@ -2699,7 +2723,7 @@ }, { "name": "Depth-FM-v1 fp32 safetensors", - "type": "checkpoints", + "type": "checkpoint", "base": "Depth-FM", "save_path": "checkpoints/depthfm", "description": "Depth-FM monocular depth estimation model", @@ -2710,7 +2734,7 @@ }, { "name": "SUPIR-v0F.ckpt", - "type": "checkpoints", + "type": "checkpoint", "base": "SUPIR", "save_path": "checkpoints/SUPIR", "description": "SUPIR checkpoint model", @@ -2721,7 +2745,7 @@ }, { "name": "SUPIR-v0Q.ckpt", - "type": "checkpoints", + "type": "checkpoint", "base": "SUPIR", "save_path": "checkpoints/SUPIR", "description": "SUPIR checkpoint model", @@ -2732,7 +2756,7 @@ }, { "name": "Kijai/SUPIR-v0F_fp16.safetensors (pruned)", - "type": "checkpoints", + "type": "checkpoint", "base": "SUPIR", "save_path": "checkpoints/SUPIR", "description": "SUPIR checkpoint model", @@ -2743,7 +2767,7 @@ }, { "name": "Kijai/SUPIR-v0Q_fp16.safetensors (pruned)", - "type": "checkpoints", + "type": "checkpoint", "base": "SUPIR", "save_path": "checkpoints/SUPIR", "description": "SUPIR checkpoint model", @@ -2787,8 +2811,8 @@ }, { "name": "Zero123 3D object Model", - "type": "Zero123", - "base": "Zero123", + "type": "zero123", + "base": "zero123", "save_path": "checkpoints/zero123", "description": "model that been trained on 10M+ 3D objects from Objaverse-XL, used for generated rotated CamView", "reference": "https://objaverse.allenai.org/docs/zero123-xl/", @@ -2798,8 +2822,8 @@ }, { "name": "Zero123 3D object Model", - "type": "Zero123", - "base": "Zero123", + "type": "zero123", + "base": "zero123", "save_path": "checkpoints/zero123", "description": "Stable Zero123 is a model for view-conditioned image generation based on [a/Zero123](https://github.com/cvlab-columbia/zero123).", "reference": "https://huggingface.co/stabilityai/stable-zero123", @@ -2809,8 +2833,8 @@ }, { "name": "Zero123 3D object Model", - "type": "Zero123", - "base": "Zero123", + "type": "zero123", + "base": "zero123", "save_path": "checkpoints/zero123", "description": "Zero123 original checkpoints in 105000 steps.", "reference": "https://huggingface.co/cvlab/zero123-weights", @@ -2820,8 +2844,8 @@ }, { "name": "Zero123 3D object Model", - "type": "Zero123", - "base": "Zero123", + "type": "zero123", + "base": "zero123", "save_path": "checkpoints/zero123", "description": "Zero123 original checkpoints in 165000 steps.", "reference": "https://huggingface.co/cvlab/zero123-weights", @@ -3050,6 +3074,17 @@ "url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model.safetensors", "size": "2.50GB" }, + { + "name": "xinsir/ControlNet++: All-in-one ControlNet (ProMax model)", + "type": "controlnet", + "base": "SDXL", + "save_path": "controlnet/SDXL/controlnet-union-sdxl-1.0", + "description": "All-in-one ControlNet for image generations and editing! (ProMax model)", + "reference": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0", + "filename": "iffusion_pytorch_model_promax.safetensors", + "url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model_promax.safetensors", + "size": "2.50GB" + }, { "name": "xinsir/Controlnet-Scribble-Sdxl-1.0", "type": "controlnet", @@ -3359,6 +3394,110 @@ "filename": "PixArt-Sigma-XL-2-1024-MS.pth", "url": "https://huggingface.co/PixArt-alpha/PixArt-Sigma/resolve/main/PixArt-Sigma-XL-2-1024-MS.pth", "size": "2.47GB" + }, + + { + "name": "hunyuan_dit_1.2.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.2.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.2.safetensors", + "size": "8.24GB" + }, + { + "name": "hunyuan_dit_1.1.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.1.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.1.safetensors", + "size": "8.24GB" + }, + { + "name": "hunyuan_dit_1.0.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.0.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.0.safetensors", + "size": "8.24GB" + }, + + { + "name": "FLUX.1 [schnell] Diffusion model", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [Schnell] Diffusion model (a.k.a. FLUX.1 turbo model)[w/Due to the large size of the model, it is recommended to download it through a browser if possible.]", + "reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell", + "filename": "flux1-schnell.sft", + "url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/flux1-schnell.sft", + "size": "23.8GB" + }, + + { + "name": "FLUX.1 VAE model", + "type": "vae", + "base": "FLUX.1", + "save_path": "vae/FLUX1", + "description": "FLUX.1 [Schnell] VAE model", + "reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell", + "filename": "ae.sft", + "url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors", + "size": "335MB" + }, + + { + "name": "kijai/FLUX.1 [schnell] Diffusion model (float8_e4m3fn)", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [Schnell] Diffusion model (float8_e4m3fn)", + "reference": "https://huggingface.co/Kijai/flux-fp8", + "filename": "flux1-schnell-fp8.safetensors", + "url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-schnell-fp8.safetensors", + "size": "11.9GB" + }, + { + "name": "kijai/FLUX.1 [dev] Diffusion model (float8_e4m3fn)", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [dev] Diffusion model (float8_e4m3fn)", + "reference": "https://huggingface.co/Kijai/flux-fp8", + "filename": "flux1-dev-fp8.safetensors", + "url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-dev-fp8.safetensors", + "size": "11.9GB" + }, + + { + "name": "Comfy Org/FLUX.1 [dev] Checkpoint model (fp8)", + "type": "checkpoint", + "base": "FLUX.1", + "save_path": "checkpoints/FLUX1", + "description": "FLUX.1 [dev] Checkpoint model (fp8)", + "reference": "https://huggingface.co/Comfy-Org/flux1-dev/tree/main", + "filename": "flux1-dev-fp8.safetensors", + "url": "https://huggingface.co/Comfy-Org/flux1-dev/resolve/main/flux1-dev-fp8.safetensors", + "size": "17.2GB" + }, + { + "name": "Comfy Org/FLUX.1 [schnell] Checkpoint model (fp8)", + "type": "checkpoint", + "base": "FLUX.1", + "save_path": "checkpoints/FLUX1", + "description": "FLUX.1 [schnell] Checkpoint model (fp8)", + "reference": "https://huggingface.co/Comfy-Org/flux1-dev/tree/main", + "filename": "flux1-schnell-fp8.safetensors", + "url": "https://huggingface.co/Comfy-Org/flux1-schnell/resolve/main/flux1-schnell-fp8.safetensors", + "size": "17.2GB" } ] -} \ 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 aa38fb93..9ed30900 100644 --- a/node_db/dev/custom-node-list.json +++ b/node_db/dev/custom-node-list.json @@ -9,8 +9,249 @@ "description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel." }, - - + { + "author": "logtd", + "title": "ComfyUI-Fluxtapoz [WIP]", + "reference": "https://github.com/logtd/ComfyUI-Fluxtapoz", + "files": [ + "https://github.com/logtd/ComfyUI-Fluxtapoz" + ], + "install_type": "git-clone", + "description": "A set of nodes for editing images using Flux in ComfyUI" + }, + { + "author": "ChrisColeTech", + "title": "ComfyUI-Get-Random-File [UNSAFE]", + "reference": "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File", + "files": [ + "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File" + ], + "install_type": "git-clone", + "description": "Gets a random file from a directory. Returns the filpath as a STRING. [w/This node allows access to arbitrary files through the workflow, which could pose a security threat.]" + }, + { + "author": "logtd", + "title": "ComfyUI-Fluxtapoz [WIP]", + "reference": "https://github.com/logtd/ComfyUI-Fluxtapoz", + "files": [ + "https://github.com/logtd/ComfyUI-Fluxtapoz" + ], + "install_type": "git-clone", + "description": "A set of nodes for editing images using Flux in ComfyUI" + }, + { + "author": "neeltheninja", + "title": "ComfyUI-ControlNeXt [WIP]", + "reference": "https://github.com/neverbiasu/ComfyUI-ControlNeXt", + "files": [ + "https://github.com/neverbiasu/ComfyUI-ControlNeXt" + ], + "install_type": "git-clone", + "description": "In progress🚧" + }, + { + "author": "neeltheninja", + "title": "ComfyUI-TextOverlay", + "reference": "https://github.com/neeltheninja/ComfyUI-TextOverlay", + "files": [ + "https://github.com/neeltheninja/ComfyUI-TextOverlay" + ], + "install_type": "git-clone", + "description": "A custom node for ComfyUI that adds text overlay to images, with options for text and background color, opacity, vertical positioning, and custom font selection. [w/Name conflict with munkyfoot/ComfyUI-TextOverlay. Cannot install simulatenously.]" + }, + { + "author": "comfyanonymous", + "title": "ComfyUI_bitsandbytes_NF4 [EXPERIMENTAL]", + "reference": "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4", + "files": [ + "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4" + ], + "install_type": "git-clone", + "description": "A quickly written custom node that uses code from Forge to support the nf4 flux dev checkpoint and nf4 flux schnell checkpoint.\nRequires installing bitsandbytes.\nMake sure your ComfyUI is updated.\nThe node is: CheckpointLoaderNF4, just plug it in your flux workflow instead of the regular one.[w/NF4 checckpoint doesn't support LoRA.]" + }, + { + "author": "kijai", + "title": "ComfyUI-EasyAnimateWrapper [WIP]", + "reference": "https://github.com/kijai/ComfyUI-EasyAnimateWrapper", + "files": [ + "https://github.com/kijai/ComfyUI-EasyAnimateWrapper" + ], + "install_type": "git-clone", + "description": "EasyAnimateWrapper for ComfyUI" + }, + { + "author": "logtd", + "title": "ComfyUI-Veevee [WIP]", + "reference": "https://github.com/logtd/ComfyUI-Veevee", + "files": [ + "https://github.com/logtd/ComfyUI-Veevee" + ], + "install_type": "git-clone", + "description": "A Video2Video framework for text2image models in ComfyUI. Supports SD1.5 and SDXL." + }, + { + "author": "kijai", + "title": "ComfyUI-LLaVA-OneVision [WIP]", + "reference": "https://github.com/kijai/ComfyUI-LLaVA-OneVision", + "files": [ + "https://github.com/kijai/ComfyUI-LLaVA-OneVision" + ], + "install_type": "git-clone", + "description": "Original repo: [a/https://github.com/LLaVA-VL/LLaVA-NeXT](https://github.com/LLaVA-VL/LLaVA-NeXT)\nUnsure of the dependencies, the original was a huge list, but I didn't install single new one to my environment and it worked." + }, + { + "author": "TTPlanetPig", + "title": "for comfyui image proprocessor", + "reference": "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor", + "files": [ + "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor" + ], + "install_type": "git-clone", + "description": "Adapt for Hunyuan now" + }, + { + "author": "IuvenisSapiens", + "title": "ComfyUI_MiniCPM-V-2_6-int4", + "id": "minicpm-v-2_6-int4", + "reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4", + "files": [ + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4" + ], + "install_type": "git-clone", + "description": "This is an implementation of [a/MiniCPM-V-2_6-int4](https://github.com/OpenBMB/MiniCPM-V) by [a/ComfyUI](https://github.com/comfyanonymous/ComfyUI), including support for text-based queries, video queries, single-image queries, and multi-image queries to generate captions or responses." + }, + { + "author": "chrisdreid", + "title": "ComfyUI_EnvAutopsyAPI [UNSAFE]", + "reference": "https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI", + "files": [ + "https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI" + ], + "install_type": "git-clone", + "description": "ComfyUI_EnvAutopsyAPI is a powerful debugging tool designed for ComfyUI that provides in-depth analysis of your environment and dependencies through an API interface. This tool allows you to inspect environment variables, pip packages, and dependency trees, making it easier to diagnose and resolve issues in your ComfyUI setup.[w/This tool may expose sensitive system information if used on a public server. MUST READ [a/THIS](https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI#%EF%B8%8F-warning-security-risk-%EF%B8%8F) before install.]" + }, + { + "author": "kijai", + "title": "ComfyUI-CogVideoXWrapper [WIP]", + "reference": "https://github.com/kijai/ComfyUI-CogVideoXWrapper", + "files": [ + "https://github.com/kijai/ComfyUI-CogVideoXWrapper" + ], + "install_type": "git-clone", + "description": "Original repo: [a/https://github.com/THUDM/CogVideo](https://github.com/THUDM/CogVideo)\nNOTE:Currently requires diffusers with PR: [a/huggingface/diffusers#9082](https://github.com/huggingface/diffusers/pull/9082)" + }, + { + "author": "neuratech-ai", + "title": "ComfyUI-MultiGPU", + "reference": "https://github.com/neuratech-ai/ComfyUI-MultiGPU", + "files": [ + "https://github.com/neuratech-ai/ComfyUI-MultiGPU" + ], + "install_type": "git-clone", + "description": "Experimental nodes for using multiple GPUs in a single ComfyUI workflow.\nThis extension adds new nodes for model loading that allow you to specify the GPU to use for each model. It monkey patches the memory management of ComfyUI in a hacky way and is neither a comprehensive solution nor a well-tested one. Use at your own risk.\nNote that this does not add parallelism. The workflow steps are still executed sequentially just on different GPUs. Any potential speedup comes from not having to constantly load and unload models from VRAM." + }, + { + "author": "Isi-dev", + "title": "Isi-dev/ComfyUI-UniAnimate", + "reference": "https://github.com/Isi-dev/ComfyUI-UniAnimate", + "files": [ + "https://github.com/Isi-dev/ComfyUI-UniAnimate" + ], + "install_type": "git-clone", + "description": "This is my ComfyUi-windows implementation for the image animation project ▶ UniAnimate: Taming Unified Video Diffusion Models for Consistent Human Image Animation[w/This node cannot be installed simultaneously with ComfyUI-UniAnimate by AIFSH because it has the same name as that custom node.]" + }, + { + "author": "Futureversecom", + "title": "ComfyUI-JEN", + "reference": "https://github.com/futureversecom/ComfyUI-JEN", + "files": [ + "https://github.com/futureversecom/ComfyUI-JEN" + ], + "install_type": "git-clone", + "description": "Comfy UI custom nodes for JEN music generation powered by Futureverse" + }, + { + "author": "denislov", + "title": "Comfyui_AutoSurvey", + "reference": "https://github.com/denislov/Comfyui_AutoSurvey", + "files": [ + "https://github.com/denislov/Comfyui_AutoSurvey" + ], + "install_type": "git-clone", + "description": "Nodes:AutoSurvey, WriteOutline, WriteSection, ChatModel, QueryKnowledge, ManageDatabase, AddDoc2Knowledge" + }, + { + "author": "leoleelxh", + "title": "ComfyUI-MidjourneyNode-leoleexh", + "reference": "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh", + "files": [ + "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh" + ], + "install_type": "git-clone", + "description": "This node allows ComfyUI to easily integrate with Midjourney, utilizing the ultra-high quality of Midjourney and the powerful control of SD to provide more convenient capabilities for AIGC.\nNOTE: This node relies on the midjourney proxy project and requires API deployment in advance. For detailed installation, please refer to the instructions of the project. https://github.com/novicezk/midjourney-proxy" + }, + { + "author": "kijai", + "title": "ComfyUI-FollowYourEmojiWrapper [WIP]", + "reference": "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper", + "files": [ + "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper" + ], + "install_type": "git-clone", + "description": "Original repo: [a/https://github.com/mayuelala/FollowYourEmoji](https://github.com/mayuelala/FollowYourEmoji)" + }, + { + "author": "haomole", + "title": "Comfyui-SadTalker", + "reference": "https://github.com/haomole/Comfyui-SadTalker", + "files": [ + "https://github.com/haomole/Comfyui-SadTalker" + ], + "install_type": "git-clone", + "description": "[a/SadTalker](https://github.com/OpenTalker/SadTalker) for ComfyUI" + }, + { + "author": "maepopi", + "title": "Diffusers-in-ComfyUI", + "reference": "https://github.com/maepopi/Diffusers-in-ComfyUI", + "files": [ + "https://github.com/maepopi/Diffusers-in-ComfyUI" + ], + "install_type": "git-clone", + "description": "This is a custom node allowing the use of the diffusers pipeline into ComfyUI. Based on [a/Limitex/ComfyUI-Diffusers](https://github.com/Limitex/ComfyUI-Diffusers)" + }, + { + "author": "hotpizzatactics", + "title": "ComfyUI-WaterMark-Detector", + "id": "watermark-detector", + "reference": "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector", + "files": [ + "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector" + ], + "install_type": "git-clone", + "description": "Nodes:CLAHE Enhancement, High Pass Filter, Edge Detection, Combine Enhancements, Adaptive Thresholding, Morphological Operations, Gray Color Enhancement, Improved Gray Color Enhancement, Texture Enhancement, Denoising Filter, Flexible Combine Enhancements." + }, + { + "author": "drmbt", + "title": "comfyui-dreambait-nodes", + "reference": "https://github.com/drmbt/comfyui-dreambait-nodes", + "files": [ + "https://github.com/drmbt/comfyui-dreambait-nodes" + ], + "install_type": "git-clone", + "description": "Nodes:Aspect Pad Image For Outpainting" + }, + { + "author": "AIFSH", + "title": "IMAGDressing-ComfyUI", + "id": "imagdressing", + "reference": "https://github.com/AIFSH/IMAGDressing-ComfyUI", + "files": [ + "https://github.com/AIFSH/IMAGDressing-ComfyUI" + ], + "install_type": "git-clone", + "description": "Nodes:IMAGDressingNode, TextNode" + }, { "author": "BetaDoggo", "title": "ComfyUI-LogicGates", @@ -83,26 +324,6 @@ "install_type": "git-clone", "description": "NODES: LygiaProgram, LygiaUniforms" }, - { - "author": "filliptm", - "title": "ComfyUI_FL-Trainer [WIP]", - "reference": "https://github.com/filliptm/ComfyUI_FL-Trainer", - "files": [ - "https://github.com/filliptm/ComfyUI_FL-Trainer" - ], - "install_type": "git-clone", - "description": "Trainer nodes based on KohyaSS trainer." - }, - { - "author": "Indra's Mirror", - "title": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper [WIP]", - "reference": "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper", - "files": [ - "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper" - ], - "install_type": "git-clone", - "description": "WORK IN PROGRESS (Currently Not Working)" - }, { "author": "SpaceWarpStudio", "title": "ComfyUI_Remaker_FaceSwap", @@ -175,16 +396,6 @@ "install_type": "git-clone", "description": "If you wish to incorporate these changes into your repo, feel free to open an issue and ask. The commits should be pretty clear, and I also label almost all changes with #HACK so a full text search will work too.\nPlease let me know if you decide to incorporate any of these changes into your LivePortrait implementation so I can direct people to you repository. I do not intend to maintain this repo.\nSome operations are simply not supported on MPS and I didn't rewrite them. Most of my changes are just to .cuda calls and that sort of thing. Many operations are still done on CPU, so don't expect awesome performance." }, - { - "author": "justUmen", - "title": "Bjornulf_custom_nodes [WIP]", - "reference": "https://github.com/justUmen/Bjornulf_custom_nodes", - "files": [ - "https://github.com/justUmen/Bjornulf_custom_nodes" - ], - "install_type": "git-clone", - "description": "Nodes: ollamaLoader, ShowText, ShowInt, LoopTexts, LoopFloat, LoopInteger, ..." - }, { "author": "thderoo", "title": "_topfun_s_nodes", @@ -205,16 +416,6 @@ "install_type": "git-clone", "description": "This repository provides developers with a way to better manage their ComfyUI model memory. It includes nodes that allow developers to either unload all models or unload one model at a time. These nodes are designed as pass-through nodes, so they can be used anywhere in the flow. The nodes can be found in the 'Unload Model' section.[w/These are massive hammers, and it could be possible to break things, please don't use them if you need finesse.]" }, - { - "author": "GeekyGhost", - "title": "ComfyUI-GeekyRemB v2", - "reference": "https://github.com/GeekyGhost/ComfyUI-GeekyRemB", - "files": [ - "https://github.com/GeekyGhost/ComfyUI-GeekyRemB/raw/SketchUITest/GeekyRembv2.py" - ], - "install_type": "copy", - "description": "GeekyRemB Node Description: GeekyRemB is a powerful and versatile image processing node for ComfyUI, designed to remove backgrounds from images with advanced customization options. This node leverages the rembg library and offers a wide range of features for fine-tuning the background removal process and enhancing the resulting images." - }, { "author": "AIFSH", "title": "ComfyUI-OpenDIT [WIP]", @@ -237,17 +438,6 @@ "install_type": "git-clone", "description": "Custom ComfyUI nodes to run [a/fal-ai/AuraSR](https://huggingface.co/fal-ai/AuraSR) model.[w/This node cannot be installed simultaneously with AIFSH/ComfyUI-AuraSR due to overlapping repository names.]" }, - { - "author": "mingqizhang", - "title": "ComfyUI_AEMatter_zmq", - "id": "aematter", - "reference": "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq", - "files": [ - "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq" - ], - "install_type": "git-clone", - "description": "Nodes:AEMatter_ModelLoader, Create_Trimap, AEMatter_Apply, Mask_Transfor, Replace_Background, Gaussian_Filter, Guide_Filter, Improved_Aplha_Composite" - }, { "author": "m-ai-studio", "title": "mai-prompt-progress", @@ -291,17 +481,6 @@ "install_type": "git-clone", "description": "A simple node to load image from local path or http url. You can find this node from 'image' category." }, - { - "author": "mingqizhang", - "title": "ComfyUI_AEMatter_zmq", - "id": "aematter-zmq", - "reference": "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq", - "files": [ - "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq" - ], - "install_type": "git-clone", - "description": "Nodes:AEMatter_ModelLoader, Create_Trimap, AEMatter_Apply, Mask_Transfor, Replace_Background, Gaussian_Filter, Guide_Filter" - }, { "author": "majorsauce", "title": "comfyui_indieTools [WIP]", @@ -335,16 +514,6 @@ "install_type": "copy", "description": "Some additional audio utilites for use on top of Sample Diffusion ComfyUI Extension" }, - { - "author": "mingqizhang", - "title": "ComfyUI_AEMatter_zmq", - "reference": "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq", - "files": [ - "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq" - ], - "install_type": "git-clone", - "description": "Nodes:AEMatter_ModelLoader, Create_Trimap, AEMatter_Apply, Mask_Transfor, Replace_Background, Gaussian_Filter, Guide_Filter." - }, { "author": "nat-chan", "title": "comfyui-paint", @@ -593,6 +762,17 @@ "install_type": "git-clone", "description": "Nodes:BetterImageDimensions, SDXLDimensions, PureRatio" }, + { + "author": "endman100", + "title": "ComfyUI-augmentation", + "id": "augmentation", + "reference": "https://github.com/endman100/ComfyUI-augmentation", + "files": [ + "https://github.com/endman100/ComfyUI-augmentation" + ], + "install_type": "git-clone", + "description": "Nodes:RamdomFlipImage (endman100)" + }, { "author": "endman100", "title": "ComfyUI Nodes: SaveConditioning and LoadConditioning", @@ -746,16 +926,6 @@ "install_type": "git-clone", "description": "Primary Nodes for Inference.Core and Stability Matrix. With a focus on not impacting startup performance and using fully qualified Node names. [w/This custom node is likely to conflict with many other nodes.]" }, - { - "author": "blepping", - "title": "comfyui_overly_complicated_sampling", - "reference": "https://github.com/blepping/comfyui_overly_complicated_sampling", - "files": [ - "https://github.com/blepping/comfyui_overly_complicated_sampling" - ], - "install_type": "git-clone", - "description": "Very unstable, experimental and mathematically unsound sampling for ComfyUI.\nCurrent status: In flux, not suitable for general use." - }, { "author": "tracerstar", "title": "comfyui-p5js-node", @@ -1219,16 +1389,6 @@ "install_type": "git-clone", "description": "This is a PoC port of [a/Google's Prompt-to-Prompt](https://github.com/google/prompt-to-prompt/) to ComfyUI. It isn't feature complete. But it's good enough for evaluating if prompt-to-prompt is of any good." }, - { - "author": "MushroomFleet", - "title": "DJZ-Nodes", - "reference": "https://github.com/MushroomFleet/DJZ-Nodes", - "files": [ - "https://github.com/MushroomFleet/DJZ-Nodes" - ], - "install_type": "git-clone", - "description": "Nodes:Aspect Size. Drift Johnsons Custom nodes for ComfyUI" - }, { "author": "stavsap", "title": "ComfyUI Ollama [WIP]", @@ -1749,16 +1909,6 @@ "install_type": "git-clone", "description": "Nodes: CheckpointVAELoaderSimpleText, CheckpointVAESelectorText, LoRA_Tag_To_Stack" }, - { - "author": "dnl13", - "title": "ComfyUI-dnl13-seg", - "reference": "https://github.com/dnl13/ComfyUI-dnl13-seg", - "files": [ - "https://github.com/dnl13/ComfyUI-dnl13-seg" - ], - "install_type": "git-clone", - "description": "After discovering @storyicon implementation here of Segment Anything, I realized its potential as a powerful tool for ComfyUI if implemented correctly. I delved into the SAM and Dino models. The following is my own adaptation of sam_hq for ComfyUI." - }, { "author": "Brandelan", "title": "ComfyUI_bd_customNodes", diff --git a/node_db/dev/extension-node-map.json b/node_db/dev/extension-node-map.json index eba38899..9da20298 100644 --- a/node_db/dev/extension-node-map.json +++ b/node_db/dev/extension-node-map.json @@ -204,6 +204,15 @@ "title_aux": "ComfyUI-ViViD" } ], + "https://github.com/AIFSH/IMAGDressing-ComfyUI": [ + [ + "IMAGDressingNode", + "TextNode" + ], + { + "title_aux": "IMAGDressing-ComfyUI" + } + ], "https://github.com/ALatentPlace/ComfyUI_yanc": [ [ "> Clear Text", @@ -268,7 +277,6 @@ "IntConditions", "IntMathOperation", "InversionDemoAdvancedPromptNode", - "InversionDemoFakeAdvancedPromptNode", "InversionDemoLazyConditional", "InversionDemoLazyIndexSwitch", "InversionDemoLazyMixImages", @@ -284,6 +292,27 @@ "title_aux": "execution-inversion-demo-comfyui" } ], + "https://github.com/BetaDoggo/ComfyUI-LogicGates": [ + [ + "AND", + "BitMemory", + "BoolToString", + "ByteMemory", + "ByteToBits", + "CreateByte", + "NAND", + "NOR", + "NOT", + "ON", + "OR", + "SWITCH", + "XNOR", + "XOR" + ], + { + "title_aux": "ComfyUI-LogicGates" + } + ], "https://github.com/BlueDangerX/ComfyUI-BDXNodes": [ [ "BDXTestInt", @@ -322,6 +351,15 @@ "title_aux": "ComfyUI_bd_customNodes" } ], + "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File": [ + [ + "RandomFilePathNode", + "RandomImagePathNode" + ], + { + "title_aux": "ComfyUI-Get-Random-File [UNSAFE]" + } + ], "https://github.com/DeTK/ComfyUI-Switch": [ [ "NodeSwitch" @@ -347,14 +385,6 @@ "title_aux": "ComfyUI-MusicGen [WIP]" } ], - "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": [ - [ - "LuminaDiffusersNode" - ], - { - "title_aux": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper [WIP]" - } - ], "https://github.com/ExponentialML/ComfyUI_LiveDirector": [ [ "LiveDirector" @@ -388,14 +418,6 @@ "title_aux": "ComfyUI-Airtable [WIP]" } ], - "https://github.com/GeekyGhost/ComfyUI-GeekyRemB/raw/SketchUITest/GeekyRembv2.py": [ - [ - "GeekyRemB" - ], - { - "title_aux": "ComfyUI-GeekyRemB v2" - } - ], "https://github.com/GentlemanHu/ComfyUI-Notifier": [ [ "GentlemanHu_Notifier" @@ -421,6 +443,7 @@ "GR Image/Depth Mask", "GR Mask Create", "GR Mask Create Random", + "GR Mask Create Random Multi", "GR Mask Resize", "GR Multi Mask Create", "GR Onomatopoeia", @@ -455,6 +478,26 @@ "title_aux": "GH Tools for ComfyUI" } ], + "https://github.com/Isi-dev/ComfyUI-UniAnimate": [ + [ + "Gen_align_pose", + "UniAnimateImage" + ], + { + "title_aux": "Isi-dev/ComfyUI-UniAnimate" + } + ], + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": [ + [ + "DisplayText", + "LoadVideo", + "MiniCPM_VQA", + "PreViewVideo" + ], + { + "title_aux": "ComfyUI_MiniCPM-V-2_6-int4" + } + ], "https://github.com/IvanZhd/comfyui-codeformer": [ [ "RedBeanie_CustomImageInverter" @@ -471,6 +514,33 @@ "title_aux": "comfyui-terminal-command [UNSAFE]" } ], + "https://github.com/JichaoLiang/Immortal_comfyUI": [ + [ + "AppendNode", + "ApplyVoiceConversion", + "ImAppendQuickbackNode", + "ImAppendQuickbackVideoNode", + "ImAppendVideoNode", + "ImApplyWav2lip", + "ImDumpEntity", + "ImDumpNode", + "ImNodeTitleOverride", + "LoadPackage", + "MergeNode", + "NewNode", + "SaveImagePath", + "SaveToDirectory", + "SetEvent", + "SetNodeMapping", + "SetProperties", + "batchNodes", + "mergeEntityAndPointer", + "redirectToNode" + ], + { + "title_aux": "Immortal_comfyUI" + } + ], "https://github.com/Jiffies-64/ComfyUI-SaveImagePlus": [ [ "SaveImagePlus" @@ -607,14 +677,6 @@ "title_aux": "CheckProgress [WIP]" } ], - "https://github.com/MushroomFleet/DJZ-Nodes": [ - [ - "AspectSize" - ], - { - "title_aux": "DJZ-Nodes" - } - ], "https://github.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/raw/main/EXT_VariationUtils.py": [ [ "BatchToList", @@ -626,14 +688,6 @@ "title_aux": "ComfyUI-Waveform-Extensions" } ], - "https://github.com/NitramDom/ComfyUI_FacialFlip": [ - [ - "Swapper" - ], - { - "title_aux": "ComfyUI_FacialFlip" - } - ], "https://github.com/PluMaZero/ComfyUI-SpaceFlower": [ [ "SpaceFlower_HangulPrompt", @@ -647,13 +701,20 @@ [ "CPPN Generator", "Color Match", + "Coordinates From Mask", "Custom Shader", + "Distance Map", "Folder Queue Manager", "Image Blend by Mask (Batch)", "Image Noise Generator", + "Image to Optical Flow", "Perlin Noise Generator", + "Preview Mask", "Random Image Generator", + "Shift Mask", + "Slit Scan", "Spring Mesh", + "Temporal Blur", "Video Queue Manager" ], { @@ -768,6 +829,17 @@ "title_aux": "ComfyUI-TSFNodes" } ], + "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor": [ + [ + "TTPlanet_Tile_Preprocessor_GF", + "TTPlanet_Tile_Preprocessor_Simple", + "TTPlanet_Tile_Preprocessor_cufoff", + "TTPlanet_inpainting_Preprecessor" + ], + { + "title_aux": "for comfyui image proprocessor" + } + ], "https://github.com/Video3DGenResearch/comfyui-batch-input-node": [ [ "BatchImageAndPrompt", @@ -780,7 +852,9 @@ ], "https://github.com/VisionExp/ve_custom_comfyui_nodes": [ [ - "LoadImgFromInputUrl" + "LoadImgFromInputUrl", + "assets/Asset Image", + "render3d/Render Node" ], { "title_aux": "ve_custom_comfyui_nodes" @@ -836,6 +910,19 @@ "title_aux": "ComfyUI-PuLID-ZHO [WIP]" } ], + "https://github.com/adityathiru/ComfyUI-LLMs": [ + [ + "Model", + "Model V2", + "Predict", + "Predict V2", + "Prompt Builder", + "Text Field" + ], + { + "title_aux": "ComfyUI LLMs [WIP]" + } + ], "https://github.com/alexisrolland/ComfyUI-AuraSR": [ [ "RunAuraSR", @@ -947,15 +1034,6 @@ "title_aux": "Gen Data Tester [WIP]" } ], - "https://github.com/blepping/comfyui_overly_complicated_sampling": [ - [ - "ComposableSampler", - "ComposableStepSampler" - ], - { - "title_aux": "comfyui_overly_complicated_sampling" - } - ], "https://github.com/bruce007lee/comfyui-cleaner": [ [ "cleaner" @@ -970,7 +1048,9 @@ "FaceAlign", "FaceAlignImageProcess", "FaceAlignMaskProcess", - "ImageFillColorByMask" + "ImageFillColorByMask", + "ImageTransposeAdvance", + "LoadImageAdvance" ], { "title_aux": "comfyui-tiny-utils" @@ -1038,6 +1118,7 @@ "AlignYourStepsScheduler", "BasicGuider", "BasicScheduler", + "BetaSamplingScheduler", "CFGGuider", "CLIPAttentionMultiply", "CLIPLoader", @@ -1048,6 +1129,8 @@ "CLIPSetLastLayer", "CLIPTextEncode", "CLIPTextEncodeControlnet", + "CLIPTextEncodeFlux", + "CLIPTextEncodeHunyuanDiT", "CLIPTextEncodeSD3", "CLIPTextEncodeSDXL", "CLIPTextEncodeSDXLRefiner", @@ -1084,6 +1167,7 @@ "ExponentialScheduler", "FeatherMask", "FlipSigmas", + "FluxGuidance", "FreeU", "FreeU_V2", "GITSScheduler", @@ -1143,6 +1227,7 @@ "MaskToImage", "ModelMergeAdd", "ModelMergeBlocks", + "ModelMergeFlux1", "ModelMergeSD1", "ModelMergeSD2", "ModelMergeSD3_2B", @@ -1153,6 +1238,7 @@ "ModelSamplingContinuousEDM", "ModelSamplingContinuousV", "ModelSamplingDiscrete", + "ModelSamplingFlux", "ModelSamplingSD3", "ModelSamplingStableCascade", "Morphology", @@ -1180,6 +1266,7 @@ "SamplerCustomAdvanced", "SamplerDPMAdaptative", "SamplerDPMPP_2M_SDE", + "SamplerDPMPP_2S_Ancestral", "SamplerDPMPP_3M_SDE", "SamplerDPMPP_SDE", "SamplerEulerAncestral", @@ -1195,6 +1282,7 @@ "SaveLatent", "SelfAttentionGuidance", "SetLatentNoiseMask", + "SetUnionControlNetType", "SolidMask", "SplitImageWithAlpha", "SplitSigmas", @@ -1235,6 +1323,14 @@ "title_aux": "ComfyUI" } ], + "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4": [ + [ + "CheckpointLoaderNF4" + ], + { + "title_aux": "ComfyUI_bitsandbytes_NF4 [EXPERIMENTAL]" + } + ], "https://github.com/comfypod/ComfyUI-Comflow": [ [ "ComflowInputBoolean", @@ -1269,6 +1365,26 @@ "title_aux": "ComfyUI-Better-Dimensions" } ], + "https://github.com/denislov/Comfyui_AutoSurvey": [ + [ + "AddDoc2Knowledge", + "AutoSurvey", + "ChatModel", + "ComfyMilvus", + "ComfyWeaviate", + "ManageDatabase", + "MilvusScheme", + "MsField", + "QueryKnowledge", + "WcProperty", + "WcPropertyComb", + "WriteOutline", + "WriteSection" + ], + { + "title_aux": "Comfyui_AutoSurvey" + } + ], "https://github.com/dfl/comfyui-stylegan": [ [ "StyleGAN Generator", @@ -1278,20 +1394,6 @@ "title_aux": "comfyui-stylegan" } ], - "https://github.com/dnl13/ComfyUI-dnl13-seg": [ - [ - "Automatic Segmentation (dnl13)", - "BatchSelector (dnl13)", - "Combine Images By Mask (dnl13)", - "Dinov1 Model Loader (dnl13)", - "Mask with prompt (dnl13)", - "RGB (dnl13)", - "SAM Model Loader (dnl13)" - ], - { - "title_aux": "ComfyUI-dnl13-seg" - } - ], "https://github.com/doucx/ComfyUI_WcpD_Utility_Kit": [ [ "BlackImage", @@ -1304,6 +1406,14 @@ "title_aux": "ComfyUI_WcpD_Utility_Kit" } ], + "https://github.com/drmbt/comfyui-dreambait-nodes": [ + [ + "Aspect Pad Image For Outpainting" + ], + { + "title_aux": "comfyui-dreambait-nodes" + } + ], "https://github.com/eigenpunk/ComfyUI-audio": [ [ "ApplyVoiceFixer", @@ -1365,6 +1475,14 @@ "title_aux": "ComfyUI Nodes: SaveConditioning and LoadConditioning" } ], + "https://github.com/endman100/ComfyUI-augmentation": [ + [ + "RamdomFlipImage (endman100)" + ], + { + "title_aux": "ComfyUI-augmentation" + } + ], "https://github.com/ericbeyer/guidance_interval": [ [ "Guidance Interval" @@ -1430,6 +1548,18 @@ "title_aux": "ComfyUI-InstantStyle" } ], + "https://github.com/haomole/Comfyui-SadTalker": [ + [ + "LoadRefVideo", + "SadTalker", + "ShowAudio", + "ShowText", + "ShowVideo" + ], + { + "title_aux": "Comfyui-SadTalker" + } + ], "https://github.com/horidream/ComfyUI-Horidream": [ [ "PassThroughWithSound" @@ -1438,6 +1568,27 @@ "title_aux": "ComfyUI-Horidream" } ], + "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector": [ + [ + "AdaptiveThresholding", + "AdvancedWatermarkEnhancement", + "AdvancedWaveletWatermarkEnhancement", + "CLAHEEnhancement", + "CombineEnhancements", + "ComprehensiveImageEnhancement", + "DenoisingFilter", + "EdgeDetection", + "FlexibleCombineEnhancements", + "HighPassFilter", + "ImprovedGrayColorEnhancement", + "MorphologicalOperations", + "TextureEnhancement", + "WatermarkEnhancement" + ], + { + "title_aux": "ComfyUI-WaterMark-Detector" + } + ], "https://github.com/houdinii/comfy-magick": [ [ "AdaptiveBlur", @@ -1672,40 +1823,6 @@ "title_aux": "ComfyUI-Unique3D [WIP]" } ], - "https://github.com/justUmen/Bjornulf_custom_nodes": [ - [ - "Bjornulf_CombineTexts", - "Bjornulf_CustomStringType", - "Bjornulf_LoopBasicBatch", - "Bjornulf_LoopCombosSamplersSchedulers", - "Bjornulf_LoopFloat", - "Bjornulf_LoopInteger", - "Bjornulf_LoopSamplers", - "Bjornulf_LoopSchedulers", - "Bjornulf_LoopTexts", - "Bjornulf_RandomModelClipVae", - "Bjornulf_RandomTexts", - "Bjornulf_ResizeImage", - "Bjornulf_SaveApiImage", - "Bjornulf_SaveImagePath", - "Bjornulf_SaveText", - "Bjornulf_SaveTmpImage", - "Bjornulf_ShowFloat", - "Bjornulf_ShowInt", - "Bjornulf_ShowText", - "Bjornulf_VideoPingPong", - "Bjornulf_WriteImageAllInOne", - "Bjornulf_WriteImageCharacter", - "Bjornulf_WriteImageCharacters", - "Bjornulf_WriteImageEnvironment", - "Bjornulf_WriteText", - "Bjornulf_imgs2vid", - "Bjornulf_ollamaLoader" - ], - { - "title_aux": "Bjornulf_custom_nodes [WIP]" - } - ], "https://github.com/kadirnar/ComfyUI-Adapter": [ [ "GarmentSegLoader" @@ -1763,6 +1880,18 @@ "title_aux": "ComfyUI-CV-VAE" } ], + "https://github.com/kijai/ComfyUI-CogVideoXWrapper": [ + [ + "CogVideoDecode", + "CogVideoImageEncode", + "CogVideoSampler", + "CogVideoTextEncode", + "DownloadAndLoadCogVideoModel" + ], + { + "title_aux": "ComfyUI-CogVideoXWrapper [WIP]" + } + ], "https://github.com/kijai/ComfyUI-DeepSeek-VL": [ [ "deepseek_vl_inference", @@ -1790,6 +1919,43 @@ "title_aux": "ComfyUI-DiffusersSD3Wrapper" } ], + "https://github.com/kijai/ComfyUI-EasyAnimateWrapper": [ + [ + "DownloadAndLoadEasyAnimateModel", + "EasyAnimateDecode", + "EasyAnimateImageEncoder", + "EasyAnimateResize", + "EasyAnimateSampler", + "EasyAnimateTextEncode" + ], + { + "title_aux": "ComfyUI-EasyAnimateWrapper [WIP]" + } + ], + "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper": [ + [ + "DownloadAndLoadFYEModel", + "FYECLIPEncode", + "FYEClipEmbedToComfy", + "FYELandmarkEncode", + "FYELandmarkToComfy", + "FYEMediaPipe", + "FYESampler", + "FYESamplerLong" + ], + { + "title_aux": "ComfyUI-FollowYourEmojiWrapper [WIP]" + } + ], + "https://github.com/kijai/ComfyUI-LLaVA-OneVision": [ + [ + "DownloadAndLoadLLaVAOneVisionModel", + "LLaVA_OneVision_Run" + ], + { + "title_aux": "ComfyUI-LLaVA-OneVision [WIP]" + } + ], "https://github.com/komojini/ComfyUI_Prompt_Template_CustomNodes/raw/main/prompt_with_template.py": [ [ "ObjectPromptWithTemplate", @@ -1826,6 +1992,15 @@ "title_aux": "ssd-1b-comfyui" } ], + "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh": [ + [ + "MidjourneyGenerateNode", + "MidjourneyUpscaleNode" + ], + { + "title_aux": "ComfyUI-MidjourneyNode-leoleexh" + } + ], "https://github.com/linhusyung/comfyui-Build-and-train-your-network": [ [ "Conv_layer", @@ -1847,6 +2022,18 @@ "title_aux": "ComfyUI Build and Train Your Network [WIP]" } ], + "https://github.com/logtd/ComfyUI-Fluxtapoz": [ + [ + "FluxDeGuidance", + "FluxInverseSampler", + "InFluxFlipSigmas", + "InFluxModelSamplingPred", + "OutFluxModelSamplingPred" + ], + { + "title_aux": "ComfyUI-Fluxtapoz [WIP]" + } + ], "https://github.com/logtd/ComfyUI-MotionThiefExperiment": [ [ "ApplyRefMotionNode", @@ -1857,6 +2044,24 @@ "title_aux": "ComfyUI-MotionThiefExperiment" } ], + "https://github.com/logtd/ComfyUI-Veevee": [ + [ + "ApplyVVModel", + "FlowConfig", + "FlowGetFlow", + "GetRaftFlow", + "InjectionConfig", + "PivotConfig", + "RaveConfig", + "SCAConfig", + "TemporalConfig", + "VVSamplerSampler", + "VVUnsamplerSampler" + ], + { + "title_aux": "ComfyUI-Veevee [WIP]" + } + ], "https://github.com/longgui0318/comfyui-one-more-step": [ [ "Calculate More Step Latent", @@ -1884,6 +2089,18 @@ "title_aux": "ComfyUI-Workflow-Component [WIP]" } ], + "https://github.com/maepopi/Diffusers-in-ComfyUI": [ + [ + "BLoRALoader", + "CreatePipeline", + "ImageInference", + "LoRALoader", + "MakeCanny" + ], + { + "title_aux": "Diffusers-in-ComfyUI" + } + ], "https://github.com/majorsauce/comfyui_indieTools": [ [ "IndCutByMask", @@ -1908,6 +2125,7 @@ [ "marduk191_5_text_string", "marduk191_5way_text_switch", + "marduk191_s_random_latent", "marduk191_workflow_settings" ], { @@ -1935,12 +2153,22 @@ "title_aux": "ComfyUI mashb1t nodes" } ], + "https://github.com/melMass/ComfyUI-Lygia": [ + [ + "LygiaProgram", + "LygiaUniforms" + ], + { + "title_aux": "ComfyUI-Lygia" + } + ], "https://github.com/mikeymcfish/FishTools": [ [ "AnaglyphCreator", "AnaglyphCreatorPro", "Deptherize", - "LaserCutterFull" + "LaserCutterFull", + "ShadowMap" ], { "author": "Fish", @@ -1950,21 +2178,6 @@ "title_aux": "LaserCutterFull and Deptherize Nodes" } ], - "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq": [ - [ - "AEMatter_Apply", - "AEMatter_ModelLoader", - "Create_Trimap", - "Gaussian_Filter", - "Guide_Filter", - "Improved_Aplha_Composite", - "Mask_Transfor", - "Replace_Background" - ], - { - "title_aux": "ComfyUI_AEMatter_zmq" - } - ], "https://github.com/mut-ex/comfyui-gligengui-node": [ [ "GLIGEN_GUI" @@ -1973,6 +2186,36 @@ "title_aux": "ComfyUI GLIGEN GUI Node" } ], + "https://github.com/neeltheninja/ComfyUI-TextOverlay": [ + [ + "TextOverlay" + ], + { + "title_aux": "ComfyUI-TextOverlay" + } + ], + "https://github.com/neuratech-ai/ComfyUI-MultiGPU": [ + [ + "CLIPLoaderMultiGPU", + "CheckpointLoaderMultiGPU", + "ControlNetLoaderMultiGPU", + "DualCLIPLoaderMultiGPU", + "UNETLoaderMultiGPU", + "VAELoaderMultiGPU" + ], + { + "title_aux": "ComfyUI-MultiGPU" + } + ], + "https://github.com/neverbiasu/ComfyUI-ControlNeXt": [ + [ + "ControlNextPipelineConfig", + "ControlNextSDXL" + ], + { + "title_aux": "ComfyUI-ControlNeXt [WIP]" + } + ], "https://github.com/nidefawl/ComfyUI-nidefawl": [ [ "BlendImagesWithBoundedMasks", @@ -2007,8 +2250,11 @@ "PromptUtilitiesJoinStringList", "PromptUtilitiesLoadPreset", "PromptUtilitiesLoadPresetAdvanced", + "PromptUtilitiesPromptWeight", "PromptUtilitiesRandomPreset", - "PromptUtilitiesRandomPresetAdvanced" + "PromptUtilitiesRandomPresetAdvanced", + "PromptUtilitiesReplaceOrInsertTag", + "PromptUtilitiesRoundPromptWeight" ], { "title_aux": "ComfyUI-PromptUtilities" @@ -2039,6 +2285,7 @@ "https://github.com/pamparamm/ComfyUI-ppm": [ [ "AttentionCouplePPM", + "CFGLimiterGuider", "CFGPPSamplerSelect", "CLIPMicroConditioning", "CLIPNegPip", @@ -2094,40 +2341,7 @@ ], "https://github.com/redhottensors/ComfyUI-ODE": [ [ - "Blended Transition [DVB]", - "Calculation [DVB]", - "Create Frame Set [DVB]", - "Divide [DVB]", - "Fade From Black [DVB]", - "Fade To Black [DVB]", - "Float Input [DVB]", - "For Each Done [DVB]", - "For Each Filename [DVB]", - "Frame Set Append [DVB]", - "Frame Set Frame Dimensions Scaled [DVB]", - "Frame Set Index Offset [DVB]", - "Frame Set Merger [DVB]", - "Frame Set Reindex [DVB]", - "Frame Set Repeat [DVB]", - "Frame Set Reverse [DVB]", - "Frame Set Split Beginning [DVB]", - "Frame Set Split End [DVB]", - "Frame Set Splitter [DVB]", - "Generate Inbetween Frames [DVB]", - "Int Input [DVB]", - "Linear Camera Pan [DVB]", - "Linear Camera Roll [DVB]", - "Linear Camera Zoom [DVB]", - "Load Image From Path [DVB]", - "Multiply [DVB]", - "ODESamplerSelect", - "Sine Camera Pan [DVB]", - "Sine Camera Roll [DVB]", - "Sine Camera Zoom [DVB]", - "String Input [DVB]", - "Text Input [DVB]", - "Trace Memory Allocation [DVB]", - "Unwrap Frame Set [DVB]" + "ODESamplerSelect" ], { "author": "RedHotTensors", @@ -2165,6 +2379,23 @@ "title_aux": "comfyui-CLIPSeg" } ], + "https://github.com/shadowcz007/comfyui-hydit-lowvram": [ + [ + "DiffusersCLIPLoader", + "DiffusersCheckpointLoader", + "DiffusersClipTextEncode", + "DiffusersControlNetLoader", + "DiffusersLoraLoader", + "DiffusersModelMakeup", + "DiffusersPipelineLoader", + "DiffusersSampler", + "DiffusersSchedulerLoader", + "DiffusersVAELoader" + ], + { + "title_aux": "comfyui-hydit" + } + ], "https://github.com/shadowcz007/comfyui-musicgen": [ [ "AudioPlay", @@ -2348,6 +2579,19 @@ "title_aux": "ComfyUI-clip-interrogator [WIP]" } ], + "https://github.com/walterFeng/ComfyUI-Image-Utils": [ + [ + "Calculate Image Brightness", + "Calculate Image Contrast", + "Calculate Image Saturation", + "Color Similarity Checker", + "Displace Filter", + "Load Image (By Url)" + ], + { + "title_aux": "ComfyUI-Image-Utils" + } + ], "https://github.com/willblaschko/ComfyUI-Unload-Models": [ [ "DeleteAnyObject", diff --git a/node_db/dev/github-stats.json b/node_db/dev/github-stats.json index 60282994..71c21cfc 100644 --- a/node_db/dev/github-stats.json +++ b/node_db/dev/github-stats.json @@ -1,862 +1,1017 @@ { "https://github.com/17Retoucher/ComfyUI_Fooocus": { - "stars": 52, + "stars": 53, "last_update": "2024-02-24 07:33:29", - "author_account_age_days": 191 + "author_account_age_days": 223 }, "https://github.com/A719689614/ComfyUI_AC_FUNV8Beta1": { "stars": 13, "last_update": "2024-03-08 10:11:44", - "author_account_age_days": 335 + "author_account_age_days": 366 }, "https://github.com/AI2lab/comfyUI-tool-2lab": { - "stars": 11, - "last_update": "2024-07-11 06:36:13", - "author_account_age_days": 212 + "stars": 14, + "last_update": "2024-08-14 01:23:44", + "author_account_age_days": 244 }, "https://github.com/AIFSH/ComfyUI-OpenDIT": { "stars": 0, "last_update": "2024-06-30 09:33:55", - "author_account_age_days": 251 + "author_account_age_days": 283 }, "https://github.com/AIFSH/ComfyUI-ViViD": { - "stars": 3, + "stars": 4, "last_update": "2024-06-25 08:16:53", - "author_account_age_days": 251 + "author_account_age_days": 283 + }, + "https://github.com/AIFSH/IMAGDressing-ComfyUI": { + "stars": 47, + "last_update": "2024-07-23 06:52:57", + "author_account_age_days": 283 }, "https://github.com/AIGODLIKE/ComfyUI-Studio": { - "stars": 210, + "stars": 222, "last_update": "2024-06-05 00:52:46", - "author_account_age_days": 521 + "author_account_age_days": 552 }, "https://github.com/ALatentPlace/ComfyUI_yanc": { - "stars": 23, - "last_update": "2024-06-30 10:04:17", - "author_account_age_days": 1480 + "stars": 31, + "last_update": "2024-07-26 12:47:44", + "author_account_age_days": 1511 }, "https://github.com/AllenEdgarPoe/ComfyUI-Xorbis-nodes": { - "stars": 1, - "last_update": "2024-07-10 00:16:57", - "author_account_age_days": 2125 + "stars": 2, + "last_update": "2024-07-18 05:36:48", + "author_account_age_days": 2157 }, "https://github.com/AustinMroz/ComfyUI-WorkflowCheckpointing": { - "stars": 6, - "last_update": "2024-07-03 21:55:35", - "author_account_age_days": 4094 + "stars": 7, + "last_update": "2024-08-01 18:38:01", + "author_account_age_days": 4126 }, "https://github.com/BadCafeCode/execution-inversion-demo-comfyui": { - "stars": 6, - "last_update": "2024-06-19 06:59:39", - "author_account_age_days": 450 + "stars": 16, + "last_update": "2024-08-07 02:17:46", + "author_account_age_days": 482 }, "https://github.com/Beinsezii/comfyui-amd-go-fast": { - "stars": 9, + "stars": 11, "last_update": "2024-05-10 00:48:37", - "author_account_age_days": 2246 + "author_account_age_days": 2277 + }, + "https://github.com/BetaDoggo/ComfyUI-LogicGates": { + "stars": 3, + "last_update": "2024-07-21 06:31:25", + "author_account_age_days": 849 }, "https://github.com/BlueDangerX/ComfyUI-BDXNodes": { "stars": 1, "last_update": "2023-12-10 04:01:19", - "author_account_age_days": 267 + "author_account_age_days": 298 }, "https://github.com/Brandelan/ComfyUI_bd_customNodes": { - "stars": 1, + "stars": 2, "last_update": "2023-10-09 00:40:26", - "author_account_age_days": 4171 + "author_account_age_days": 4203 + }, + "https://github.com/ChrisColeTech/ComfyUI-Get-Random-File": { + "stars": 1, + "last_update": "2024-08-15 03:39:28", + "author_account_age_days": 2464 }, "https://github.com/DeTK/ComfyUI-Switch": { "stars": 0, "last_update": "2024-03-04 11:52:04", - "author_account_age_days": 2051 + "author_account_age_days": 2082 }, "https://github.com/DrMWeigand/ComfyUI_LineBreakInserter": { "stars": 0, "last_update": "2024-04-19 11:37:19", - "author_account_age_days": 1052 + "author_account_age_days": 1083 }, "https://github.com/Elawphant/ComfyUI-MusicGen": { - "stars": 4, + "stars": 5, "last_update": "2024-05-11 13:33:24", - "author_account_age_days": 2608 + "author_account_age_days": 2639 }, "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": { - "stars": 0, - "last_update": "2024-07-12 21:51:11", - "author_account_age_days": 27 + "stars": 13, + "last_update": "2024-07-30 10:27:07", + "author_account_age_days": 58 }, "https://github.com/ExponentialML/ComfyUI_LiveDirector": { "stars": 35, "last_update": "2024-04-09 19:01:49", - "author_account_age_days": 1643 + "author_account_age_days": 1675 }, "https://github.com/Extraltodeus/Conditioning-token-experiments-for-ComfyUI": { "stars": 13, "last_update": "2024-03-10 01:04:02", - "author_account_age_days": 3170 + "author_account_age_days": 3201 }, "https://github.com/FoundD-oka/ComfyUI-kisekae-OOTD": { "stars": 0, "last_update": "2024-06-02 06:13:42", - "author_account_age_days": 458 + "author_account_age_days": 489 }, "https://github.com/Fucci-Mateo/ComfyUI-Airtable": { "stars": 0, "last_update": "2024-06-25 13:35:18", - "author_account_age_days": 899 + "author_account_age_days": 930 }, "https://github.com/GentlemanHu/ComfyUI-Notifier": { "stars": 3, "last_update": "2024-07-14 15:38:44", - "author_account_age_days": 2403 + "author_account_age_days": 2435 }, "https://github.com/GraftingRayman/ComfyUI_GR_PromptSelector": { - "stars": 24, - "last_update": "2024-07-09 08:28:38", - "author_account_age_days": 183 + "stars": 45, + "last_update": "2024-07-23 08:57:27", + "author_account_age_days": 214 }, "https://github.com/Grant-CP/ComfyUI-LivePortraitKJ-MPS": { - "stars": 10, + "stars": 11, "last_update": "2024-07-11 22:04:16", - "author_account_age_days": 1193 + "author_account_age_days": 1225 }, "https://github.com/GrindHouse66/ComfyUI-GH_Tools": { "stars": 0, "last_update": "2024-03-10 13:27:14", - "author_account_age_days": 644 + "author_account_age_days": 675 + }, + "https://github.com/Isi-dev/ComfyUI-UniAnimate": { + "stars": 17, + "last_update": "2024-08-15 05:54:39", + "author_account_age_days": 1143 + }, + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": { + "stars": 30, + "last_update": "2024-08-13 16:45:27", + "author_account_age_days": 462 }, "https://github.com/IvanZhd/comfyui-codeformer": { "stars": 0, "last_update": "2023-12-02 20:51:52", - "author_account_age_days": 2598 + "author_account_age_days": 2630 }, "https://github.com/Jaxkr/comfyui-terminal-command": { "stars": 1, "last_update": "2023-12-03 10:31:40", - "author_account_age_days": 4647 + "author_account_age_days": 4679 + }, + "https://github.com/JichaoLiang/Immortal_comfyUI": { + "stars": 1, + "last_update": "2024-08-10 18:48:12", + "author_account_age_days": 1075 }, "https://github.com/Jiffies-64/ComfyUI-SaveImagePlus": { "stars": 0, "last_update": "2024-04-01 10:52:59", - "author_account_age_days": 911 + "author_account_age_days": 943 }, "https://github.com/Jordach/comfy-consistency-vae": { "stars": 68, "last_update": "2023-11-06 20:50:40", - "author_account_age_days": 4533 + "author_account_age_days": 4564 + }, + "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling": { + "stars": 7, + "last_update": "2024-08-02 15:16:12", + "author_account_age_days": 3406 }, "https://github.com/LZpenguin/ComfyUI-Text": { "stars": 23, "last_update": "2024-06-20 13:38:16", - "author_account_age_days": 1999 + "author_account_age_days": 2030 }, "https://github.com/LarryJane491/ComfyUI-ModelUnloader": { - "stars": 1, + "stars": 2, "last_update": "2024-01-14 08:22:39", - "author_account_age_days": 184 + "author_account_age_days": 215 }, "https://github.com/LevelPixel/ComfyUI-LevelPixel": { "stars": 1, "last_update": "2024-07-11 22:36:24", - "author_account_age_days": 2 + "author_account_age_days": 34 }, "https://github.com/LotzF/ComfyUI-Simple-Chat-GPT-completion": { "stars": 0, "last_update": "2024-02-04 21:15:22", - "author_account_age_days": 950 + "author_account_age_days": 981 }, "https://github.com/LykosAI/ComfyUI-Inference-Core-Nodes": { - "stars": 18, - "last_update": "2024-04-05 05:11:51", - "author_account_age_days": 398 + "stars": 22, + "last_update": "2024-08-10 16:50:33", + "author_account_age_days": 430 }, "https://github.com/MrAdamBlack/CheckProgress": { "stars": 1, "last_update": "2024-01-10 08:02:18", - "author_account_age_days": 2740 + "author_account_age_days": 2771 }, "https://github.com/MushroomFleet/DJZ-Nodes": { - "stars": 4, - "last_update": "2024-03-18 11:18:42", - "author_account_age_days": 3741 + "stars": 7, + "last_update": "2024-07-27 04:00:20", + "author_account_age_days": 3773 + }, + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt": { + "stars": 3, + "last_update": "2024-08-14 02:16:43", + "author_account_age_days": 145 }, "https://github.com/NicholasKao1029/comfyui-hook": { "stars": 0, "last_update": "2024-03-07 05:50:56", - "author_account_age_days": 2050 - }, - "https://github.com/NitramDom/ComfyUI_FacialFlip": { - "stars": 2, - "last_update": "2024-06-07 14:56:55", - "author_account_age_days": 3172 + "author_account_age_days": 2082 }, "https://github.com/PluMaZero/ComfyUI-SpaceFlower": { "stars": 4, "last_update": "2023-12-09 05:55:15", - "author_account_age_days": 1078 + "author_account_age_days": 1110 }, "https://github.com/Quasimondo/ComfyUI-QuasimondoNodes": { - "stars": 8, - "last_update": "2024-07-13 15:15:02", - "author_account_age_days": 5295 + "stars": 13, + "last_update": "2024-07-31 13:01:18", + "author_account_age_days": 5326 }, "https://github.com/SadaleNet/ComfyUI-Prompt-To-Prompt": { "stars": 20, "last_update": "2024-03-17 04:30:01", - "author_account_age_days": 4060 + "author_account_age_days": 4091 }, "https://github.com/Sai-ComfyUI/ComfyUI-MS-Nodes": { "stars": 2, "last_update": "2024-02-22 08:34:44", - "author_account_age_days": 229 + "author_account_age_days": 260 }, "https://github.com/Scorpinaus/ComfyUI-DiffusersLoader": { - "stars": 6, - "last_update": "2024-07-13 02:48:08", - "author_account_age_days": 1130 + "stars": 8, + "last_update": "2024-07-30 09:02:59", + "author_account_age_days": 1161 }, "https://github.com/SeedV/ComfyUI-SeedV-Nodes": { "stars": 1, "last_update": "2024-06-05 10:01:47", - "author_account_age_days": 1146 + "author_account_age_days": 1177 }, "https://github.com/Shinsplat/ComfyUI-Shinsplat": { - "stars": 22, - "last_update": "2024-07-12 15:32:48", - "author_account_age_days": 1044 + "stars": 25, + "last_update": "2024-08-04 04:36:51", + "author_account_age_days": 1076 }, "https://github.com/SpaceWarpStudio/ComfyUI_Remaker_FaceSwap": { "stars": 0, - "last_update": "2024-07-12 15:32:22", - "author_account_age_days": 2976 + "last_update": "2024-07-15 11:57:20", + "author_account_age_days": 3007 }, "https://github.com/StartHua/Comfyui_CSDMT_CXH": { - "stars": 14, + "stars": 17, "last_update": "2024-07-11 15:36:03", - "author_account_age_days": 2855 + "author_account_age_days": 2887 }, "https://github.com/StartHua/Comfyui_CXH_CRM": { - "stars": 36, + "stars": 40, "last_update": "2024-06-06 14:15:14", - "author_account_age_days": 2855 + "author_account_age_days": 2887 }, "https://github.com/TSFSean/ComfyUI-TSFNodes": { "stars": 4, "last_update": "2024-05-18 00:59:06", - "author_account_age_days": 3492 + "author_account_age_days": 3524 + }, + "https://github.com/TTPlanetPig/Comfyui_TTP_CN_Preprocessor": { + "stars": 8, + "last_update": "2024-08-08 15:06:32", + "author_account_age_days": 254 }, "https://github.com/TemryL/ComfyUI-IDM-VTON": { - "stars": 242, - "last_update": "2024-07-10 15:13:37", - "author_account_age_days": 889 + "stars": 310, + "last_update": "2024-08-11 20:19:52", + "author_account_age_days": 920 }, "https://github.com/Video3DGenResearch/comfyui-batch-input-node": { "stars": 1, "last_update": "2024-04-28 15:21:17", - "author_account_age_days": 126 + "author_account_age_days": 158 }, "https://github.com/VisionExp/ve_custom_comfyui_nodes": { "stars": 0, - "last_update": "2024-07-12 15:21:42", - "author_account_age_days": 25 + "last_update": "2024-07-17 11:51:54", + "author_account_age_days": 56 }, "https://github.com/WSJUSA/Comfyui-StableSR": { - "stars": 39, + "stars": 40, "last_update": "2023-10-18 12:40:30", - "author_account_age_days": 1444 + "author_account_age_days": 1476 }, "https://github.com/WilliamStanford/visuallabs_comfyui_nodes": { "stars": 1, "last_update": "2024-04-16 21:53:02", - "author_account_age_days": 1790 + "author_account_age_days": 1821 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-AnyText": { - "stars": 51, + "stars": 52, "last_update": "2024-05-22 14:30:05", - "author_account_age_days": 360 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-AuraSR-ZHO": { - "stars": 61, + "stars": 79, "last_update": "2024-07-11 07:33:30", - "author_account_age_days": 360 + "author_account_age_days": 391 }, "https://github.com/ZHO-ZHO-ZHO/ComfyUI-PuLID-ZHO": { - "stars": 185, + "stars": 191, "last_update": "2024-05-22 13:38:23", - "author_account_age_days": 360 + "author_account_age_days": 391 + }, + "https://github.com/adityathiru/ComfyUI-LLMs": { + "stars": 2, + "last_update": "2024-08-01 17:45:44", + "author_account_age_days": 3180 }, "https://github.com/alexisrolland/ComfyUI-AuraSR": { - "stars": 14, - "last_update": "2024-07-12 03:00:52", - "author_account_age_days": 3306 + "stars": 20, + "last_update": "2024-07-31 16:41:31", + "author_account_age_days": 3337 }, "https://github.com/alt-key-project/comfyui-dream-video-batches": { - "stars": 53, - "last_update": "2024-07-01 05:37:03", - "author_account_age_days": 680 + "stars": 59, + "last_update": "2024-08-14 01:26:20", + "author_account_age_days": 712 }, "https://github.com/baicai99/ComfyUI-FrameSkipping": { - "stars": 6, - "last_update": "2024-06-18 10:25:55", - "author_account_age_days": 851 + "stars": 8, + "last_update": "2024-08-06 06:10:48", + "author_account_age_days": 882 }, "https://github.com/beyastard/ComfyUI_BeySoft": { "stars": 0, "last_update": "2024-05-26 22:44:55", - "author_account_age_days": 4306 + "author_account_age_days": 4338 }, "https://github.com/birnam/ComfyUI-GenData-Pack": { "stars": 0, "last_update": "2024-03-25 01:25:23", - "author_account_age_days": 5029 + "author_account_age_days": 5061 }, "https://github.com/blepping/comfyui_overly_complicated_sampling": { - "stars": 6, - "last_update": "2024-07-10 00:01:45", - "author_account_age_days": 174 + "stars": 14, + "last_update": "2024-08-09 14:52:53", + "author_account_age_days": 205 }, "https://github.com/blib-la/ComfyUI-Captain-Extensions": { "stars": 0, "last_update": "2024-05-17 23:27:25", - "author_account_age_days": 293 + "author_account_age_days": 325 }, "https://github.com/bruce007lee/comfyui-cleaner": { "stars": 3, "last_update": "2024-04-20 15:36:03", - "author_account_age_days": 4532 + "author_account_age_days": 4564 }, "https://github.com/bruce007lee/comfyui-tiny-utils": { - "stars": 0, - "last_update": "2024-06-07 03:44:47", - "author_account_age_days": 4532 + "stars": 1, + "last_update": "2024-08-11 09:23:27", + "author_account_age_days": 4564 }, "https://github.com/brycegoh/comfyui-custom-nodes": { "stars": 0, "last_update": "2024-06-05 09:30:06", - "author_account_age_days": 3129 + "author_account_age_days": 3160 }, "https://github.com/chaojie/ComfyUI-DynamiCrafter": { - "stars": 112, + "stars": 121, "last_update": "2024-06-14 10:23:59", - "author_account_age_days": 4854 + "author_account_age_days": 4885 }, "https://github.com/chaojie/ComfyUI-mobvoi-openapi": { "stars": 2, "last_update": "2024-05-29 09:02:52", - "author_account_age_days": 4854 + "author_account_age_days": 4885 + }, + "https://github.com/chrisdreid/ComfyUI_EnvAutopsyAPI": { + "stars": 3, + "last_update": "2024-08-13 23:24:24", + "author_account_age_days": 3170 }, "https://github.com/christian-byrne/infinite-zoom-parallax-nodes": { "stars": 5, "last_update": "2024-07-08 15:07:05", - "author_account_age_days": 1368 + "author_account_age_days": 1400 }, "https://github.com/christian-byrne/python-interpreter-node": { - "stars": 27, + "stars": 30, "last_update": "2024-06-24 19:46:50", - "author_account_age_days": 1368 + "author_account_age_days": 1400 }, "https://github.com/comfyanonymous/ComfyUI": { - "stars": 42120, - "last_update": "2024-07-14 14:08:31", - "author_account_age_days": 569 + "stars": 46443, + "last_update": "2024-08-15 05:04:19", + "author_account_age_days": 600 + }, + "https://github.com/comfyanonymous/ComfyUI_bitsandbytes_NF4": { + "stars": 163, + "last_update": "2024-08-12 16:41:02", + "author_account_age_days": 600 }, "https://github.com/comfypod/ComfyUI-Comflow": { "stars": 0, "last_update": "2024-06-17 08:44:08", - "author_account_age_days": 43 + "author_account_age_days": 74 }, "https://github.com/corbin-hayden13/ComfyUI-Better-Dimensions": { "stars": 7, "last_update": "2024-06-12 17:45:21", - "author_account_age_days": 1835 + "author_account_age_days": 1867 }, "https://github.com/cubiq/Comfy_Dungeon": { - "stars": 191, + "stars": 203, "last_update": "2024-04-26 11:00:58", - "author_account_age_days": 5031 + "author_account_age_days": 5062 + }, + "https://github.com/denislov/Comfyui_AutoSurvey": { + "stars": 2, + "last_update": "2024-08-03 06:50:57", + "author_account_age_days": 2039 }, "https://github.com/dezi-ai/ComfyUI-AnimateLCM": { - "stars": 153, + "stars": 156, "last_update": "2024-02-07 17:34:39", - "author_account_age_days": 197 + "author_account_age_days": 229 }, "https://github.com/dfl/comfyui-stylegan": { "stars": 1, "last_update": "2024-03-14 14:34:25", - "author_account_age_days": 5994 + "author_account_age_days": 6026 }, "https://github.com/dnl13/ComfyUI-dnl13-seg": { "stars": 17, - "last_update": "2024-01-08 10:52:13", - "author_account_age_days": 4239 + "last_update": "2024-08-11 09:41:13", + "author_account_age_days": 4270 }, "https://github.com/doucx/ComfyUI_WcpD_Utility_Kit": { "stars": 1, "last_update": "2024-01-06 19:07:45", - "author_account_age_days": 2343 + "author_account_age_days": 2375 + }, + "https://github.com/drmbt/comfyui-dreambait-nodes": { + "stars": 1, + "last_update": "2024-07-22 03:21:21", + "author_account_age_days": 3829 }, "https://github.com/eigenpunk/ComfyUI-audio": { - "stars": 61, + "stars": 66, "last_update": "2024-03-03 21:14:14", - "author_account_age_days": 945 + "author_account_age_days": 977 }, "https://github.com/ejektaflex/ComfyUI-Ty": { "stars": 0, "last_update": "2024-06-12 16:08:16", - "author_account_age_days": 2792 + "author_account_age_days": 2823 }, "https://github.com/endman100/ComfyUI-SaveAndLoadPromptCondition": { "stars": 0, "last_update": "2024-07-03 09:35:02", - "author_account_age_days": 2493 + "author_account_age_days": 2525 + }, + "https://github.com/endman100/ComfyUI-augmentation": { + "stars": 1, + "last_update": "2024-07-23 09:06:24", + "author_account_age_days": 2525 }, "https://github.com/ericbeyer/guidance_interval": { "stars": 2, "last_update": "2024-04-16 03:24:01", - "author_account_age_days": 2615 + "author_account_age_days": 2646 }, "https://github.com/filliptm/ComfyUI_FL-Trainer": { - "stars": 0, - "last_update": "2024-07-13 13:30:59", - "author_account_age_days": 1756 + "stars": 114, + "last_update": "2024-08-13 04:56:41", + "author_account_age_days": 1788 }, "https://github.com/flowtyone/comfyui-flowty-lcm": { - "stars": 62, + "stars": 61, "last_update": "2023-10-23 12:08:55", - "author_account_age_days": 294 + "author_account_age_days": 325 }, "https://github.com/flyingdogsoftware/gyre_for_comfyui": { - "stars": 1, - "last_update": "2024-07-04 22:58:40", - "author_account_age_days": 2033 + "stars": 2, + "last_update": "2024-08-06 20:53:24", + "author_account_age_days": 2064 }, "https://github.com/foglerek/comfyui-cem-tools": { "stars": 1, "last_update": "2024-01-13 23:22:07", - "author_account_age_days": 4058 + "author_account_age_days": 4090 + }, + "https://github.com/futureversecom/ComfyUI-JEN": { + "stars": 1, + "last_update": "2024-08-06 00:24:56", + "author_account_age_days": 771 }, "https://github.com/gameltb/ComfyUI_paper_playground": { - "stars": 10, - "last_update": "2024-07-08 14:01:35", - "author_account_age_days": 4075 + "stars": 11, + "last_update": "2024-08-03 20:07:59", + "author_account_age_days": 4107 }, "https://github.com/gameltb/ComfyUI_stable_fast": { - "stars": 186, - "last_update": "2024-06-06 12:43:16", - "author_account_age_days": 4075 + "stars": 193, + "last_update": "2024-08-04 09:25:33", + "author_account_age_days": 4107 }, "https://github.com/gameltb/io_comfyui": { - "stars": 3, + "stars": 5, "last_update": "2024-04-06 04:40:05", - "author_account_age_days": 4075 + "author_account_age_days": 4107 }, "https://github.com/githubYiheng/comfyui_median_filter": { "stars": 0, "last_update": "2024-07-03 11:38:39", - "author_account_age_days": 3923 + "author_account_age_days": 3955 }, "https://github.com/haofanwang/ComfyUI-InstantStyle": { - "stars": 5, + "stars": 6, "last_update": "2024-05-23 16:11:13", - "author_account_age_days": 2998 + "author_account_age_days": 3029 + }, + "https://github.com/haomole/Comfyui-SadTalker": { + "stars": 8, + "last_update": "2024-08-05 02:44:26", + "author_account_age_days": 353 }, "https://github.com/horidream/ComfyUI-Horidream": { "stars": 0, - "last_update": "2024-06-18 02:09:07", - "author_account_age_days": 5064 + "last_update": "2024-07-15 07:42:11", + "author_account_age_days": 5095 + }, + "https://github.com/hotpizzatactics/ComfyUI-WaterMark-Detector": { + "stars": 1, + "last_update": "2024-07-23 14:36:35", + "author_account_age_days": 28 }, "https://github.com/houdinii/comfy-magick": { "stars": 4, "last_update": "2024-03-11 06:40:54", - "author_account_age_days": 3540 + "author_account_age_days": 3572 }, "https://github.com/huchenlei/ComfyUI_densediffusion": { - "stars": 86, - "last_update": "2024-06-11 00:39:28", - "author_account_age_days": 2896 + "stars": 102, + "last_update": "2024-07-27 18:33:35", + "author_account_age_days": 2927 }, "https://github.com/huchenlei/ComfyUI_omost": { - "stars": 355, - "last_update": "2024-06-26 21:16:52", - "author_account_age_days": 2896 + "stars": 393, + "last_update": "2024-08-04 18:51:27", + "author_account_age_days": 2927 }, "https://github.com/huizhang0110/ComfyUI_Easy_Nodes_hui": { "stars": 2, "last_update": "2024-02-27 08:22:49", - "author_account_age_days": 2475 + "author_account_age_days": 2506 }, "https://github.com/hy134300/comfyui-hb-node": { "stars": 0, "last_update": "2024-04-09 09:56:22", - "author_account_age_days": 1781 + "author_account_age_days": 1812 }, "https://github.com/hy134300/comfyui-hydit": { "stars": 8, "last_update": "2024-06-07 09:52:15", - "author_account_age_days": 1781 + "author_account_age_days": 1812 }, "https://github.com/ilovejohnwhite/UncleBillyGoncho": { "stars": 0, "last_update": "2024-02-29 00:16:42", - "author_account_age_days": 893 + "author_account_age_days": 925 }, "https://github.com/immersiveexperience/ie-comfyui-color-nodes": { "stars": 2, "last_update": "2024-06-18 10:54:55", - "author_account_age_days": 289 + "author_account_age_days": 320 }, "https://github.com/jh-leon-kim/ComfyUI-JHK-utils": { "stars": 0, "last_update": "2024-06-04 08:57:52", - "author_account_age_days": 192 + "author_account_age_days": 223 }, "https://github.com/jimmm-ai/TimeUi-a-ComfyUi-Timeline-Node": { - "stars": 214, + "stars": 217, "last_update": "2024-07-04 11:44:03", - "author_account_age_days": 40 + "author_account_age_days": 72 }, "https://github.com/jn-jairo/jn_node_suite_comfyui": { - "stars": 5, + "stars": 6, "last_update": "2024-06-08 05:15:33", - "author_account_age_days": 4004 + "author_account_age_days": 4036 }, "https://github.com/jtscmw01/ComfyUI-DiffBIR": { - "stars": 69, + "stars": 79, "last_update": "2024-05-21 05:28:34", - "author_account_age_days": 522 + "author_account_age_days": 553 }, "https://github.com/jtydhr88/ComfyUI-Unique3D": { - "stars": 132, - "last_update": "2024-07-04 04:27:01", - "author_account_age_days": 4773 + "stars": 147, + "last_update": "2024-07-31 13:52:24", + "author_account_age_days": 4804 }, "https://github.com/justUmen/Bjornulf_custom_nodes": { - "stars": 1, - "last_update": "2024-07-11 09:10:27", - "author_account_age_days": 2809 + "stars": 5, + "last_update": "2024-08-14 03:03:13", + "author_account_age_days": 2840 }, "https://github.com/kadirnar/ComfyUI-Adapter": { "stars": 3, "last_update": "2024-04-03 12:05:39", - "author_account_age_days": 2349 + "author_account_age_days": 2381 }, "https://github.com/kadirnar/comfyui_helpers": { "stars": 2, "last_update": "2024-03-04 16:25:30", - "author_account_age_days": 2349 + "author_account_age_days": 2381 }, "https://github.com/kappa54m/ComfyUI_Usability": { - "stars": 0, - "last_update": "2024-02-05 14:49:45", - "author_account_age_days": 1531 + "stars": 1, + "last_update": "2024-08-08 15:31:47", + "author_account_age_days": 1562 }, "https://github.com/kijai/ComfyUI-CV-VAE": { "stars": 9, "last_update": "2024-06-03 21:46:49", - "author_account_age_days": 2203 + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-CogVideoXWrapper": { + "stars": 128, + "last_update": "2024-08-07 17:37:22", + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DeepSeek-VL": { - "stars": 22, + "stars": 24, "last_update": "2024-05-21 16:43:40", - "author_account_age_days": 2203 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DiffSynthWrapper": { - "stars": 51, + "stars": 55, "last_update": "2024-06-22 00:16:46", - "author_account_age_days": 2203 + "author_account_age_days": 2234 }, "https://github.com/kijai/ComfyUI-DiffusersSD3Wrapper": { "stars": 8, "last_update": "2024-06-17 13:03:43", - "author_account_age_days": 2203 + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-EasyAnimateWrapper": { + "stars": 63, + "last_update": "2024-08-14 02:20:18", + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-FollowYourEmojiWrapper": { + "stars": 44, + "last_update": "2024-07-27 12:50:25", + "author_account_age_days": 2234 + }, + "https://github.com/kijai/ComfyUI-LLaVA-OneVision": { + "stars": 45, + "last_update": "2024-08-12 01:09:47", + "author_account_age_days": 2234 }, "https://github.com/kycg/comfyui-Kwtoolset": { "stars": 0, "last_update": "2024-06-12 17:04:09", - "author_account_age_days": 961 + "author_account_age_days": 992 }, "https://github.com/laksjdjf/ssd-1b-comfyui": { "stars": 1, "last_update": "2023-10-27 20:05:06", - "author_account_age_days": 2851 + "author_account_age_days": 2883 + }, + "https://github.com/leoleelxh/ComfyUI-MidjourneyNode-leoleexh": { + "stars": 3, + "last_update": "2024-08-01 03:37:17", + "author_account_age_days": 4127 }, "https://github.com/linhusyung/comfyui-Build-and-train-your-network": { "stars": 93, "last_update": "2024-06-26 05:44:43", - "author_account_age_days": 698 + "author_account_age_days": 729 + }, + "https://github.com/logtd/ComfyUI-Fluxtapoz": { + "stars": 0, + "last_update": "2024-08-15 05:03:18", + "author_account_age_days": 174 }, "https://github.com/logtd/ComfyUI-MotionThiefExperiment": { - "stars": 36, + "stars": 37, "last_update": "2024-05-22 00:12:06", - "author_account_age_days": 142 + "author_account_age_days": 174 + }, + "https://github.com/logtd/ComfyUI-Veevee": { + "stars": 47, + "last_update": "2024-08-12 03:04:12", + "author_account_age_days": 174 }, "https://github.com/longgui0318/comfyui-one-more-step": { "stars": 1, "last_update": "2024-05-07 08:40:56", - "author_account_age_days": 4185 + "author_account_age_days": 4216 }, "https://github.com/ltdrdata/ComfyUI-Workflow-Component": { - "stars": 204, - "last_update": "2024-04-26 01:39:09", - "author_account_age_days": 482 + "stars": 210, + "last_update": "2024-07-30 08:08:28", + "author_account_age_days": 514 }, "https://github.com/m-ai-studio/mai-prompt-progress": { - "stars": 0, - "last_update": "2024-06-27 12:45:45", - "author_account_age_days": 69 + "stars": 1, + "last_update": "2024-08-08 10:19:56", + "author_account_age_days": 100 + }, + "https://github.com/maepopi/Diffusers-in-ComfyUI": { + "stars": 3, + "last_update": "2024-08-07 17:14:03", + "author_account_age_days": 2409 }, "https://github.com/majorsauce/comfyui_indieTools": { "stars": 0, "last_update": "2024-06-25 08:59:57", - "author_account_age_days": 1825 + "author_account_age_days": 1857 }, "https://github.com/marcueberall/ComfyUI-BuildPath": { "stars": 0, "last_update": "2024-02-06 07:57:33", - "author_account_age_days": 1802 + "author_account_age_days": 1834 }, "https://github.com/marduk191/comfyui-marnodes": { "stars": 1, - "last_update": "2024-07-14 08:29:14", - "author_account_age_days": 4435 + "last_update": "2024-08-13 22:15:05", + "author_account_age_days": 4466 }, "https://github.com/maruhidd/ComfyUI_Transparent-Background": { - "stars": 1, + "stars": 3, "last_update": "2024-06-14 07:02:56", - "author_account_age_days": 2275 + "author_account_age_days": 2307 }, "https://github.com/mashb1t/comfyui-nodes-mashb1t": { "stars": 0, "last_update": "2024-06-11 15:55:53", - "author_account_age_days": 3556 + "author_account_age_days": 3587 }, "https://github.com/melMass/ComfyUI-Lygia": { "stars": 0, "last_update": "2024-07-14 09:59:10", - "author_account_age_days": 3765 + "author_account_age_days": 3797 }, "https://github.com/mikeymcfish/FishTools": { "stars": 20, "last_update": "2024-07-13 20:51:17", - "author_account_age_days": 3423 - }, - "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq": { - "stars": 0, - "last_update": "2024-06-28 10:09:23", - "author_account_age_days": 2614 + "author_account_age_days": 3455 }, "https://github.com/mut-ex/comfyui-gligengui-node": { - "stars": 34, + "stars": 42, "last_update": "2024-02-28 02:46:05", - "author_account_age_days": 2879 + "author_account_age_days": 2910 }, "https://github.com/nat-chan/comfyui-eval": { - "stars": 1, + "stars": 2, "last_update": "2024-05-28 11:56:37", - "author_account_age_days": 3013 + "author_account_age_days": 3045 }, "https://github.com/nat-chan/comfyui-in-memory-transceiver": { "stars": 1, "last_update": "2024-05-01 10:03:01", - "author_account_age_days": 3013 + "author_account_age_days": 3045 }, "https://github.com/nat-chan/comfyui-paint": { "stars": 2, "last_update": "2024-06-14 11:01:38", - "author_account_age_days": 3013 + "author_account_age_days": 3045 + }, + "https://github.com/neeltheninja/ComfyUI-TextOverlay": { + "stars": 1, + "last_update": "2024-07-31 18:40:19", + "author_account_age_days": 1930 + }, + "https://github.com/neuratech-ai/ComfyUI-MultiGPU": { + "stars": 52, + "last_update": "2024-08-04 16:37:11", + "author_account_age_days": 125 + }, + "https://github.com/neverbiasu/ComfyUI-ControlNeXt": { + "stars": 1, + "last_update": "2024-08-15 04:53:55", + "author_account_age_days": 1071 }, "https://github.com/nidefawl/ComfyUI-nidefawl": { "stars": 0, "last_update": "2024-01-16 18:16:41", - "author_account_age_days": 4888 + "author_account_age_days": 4919 }, "https://github.com/nkchocoai/ComfyUI-PromptUtilities": { - "stars": 7, - "last_update": "2024-06-23 04:58:30", - "author_account_age_days": 180 + "stars": 8, + "last_update": "2024-08-07 04:49:05", + "author_account_age_days": 211 }, "https://github.com/norgeous/ComfyUI-UI-Builder": { "stars": 11, - "last_update": "2024-07-14 15:12:17", - "author_account_age_days": 4049 + "last_update": "2024-08-11 22:22:04", + "author_account_age_days": 4081 }, "https://github.com/oyvindg/ComfyUI-TrollSuite": { - "stars": 0, + "stars": 1, "last_update": "2024-05-22 21:32:03", - "author_account_age_days": 2350 + "author_account_age_days": 2381 }, "https://github.com/oztrkoguz/ComfyUI_Kosmos2_BBox_Cutter": { - "stars": 13, - "last_update": "2024-05-03 10:52:29", - "author_account_age_days": 861 + "stars": 16, + "last_update": "2024-07-25 05:50:01", + "author_account_age_days": 893 }, "https://github.com/pamparamm/ComfyUI-ppm": { - "stars": 4, - "last_update": "2024-07-13 21:29:26", - "author_account_age_days": 2151 + "stars": 48, + "last_update": "2024-08-14 22:17:14", + "author_account_age_days": 2182 }, "https://github.com/phineas-pta/comfy-trt-test": { - "stars": 83, + "stars": 84, "last_update": "2024-06-04 21:09:17", - "author_account_age_days": 2309 + "author_account_age_days": 2340 }, "https://github.com/poisenbery/NudeNet-Detector-Provider": { "stars": 1, "last_update": "2024-02-26 02:11:27", - "author_account_age_days": 1257 + "author_account_age_days": 1288 }, "https://github.com/prabinpebam/anyPython": { - "stars": 6, + "stars": 9, "last_update": "2024-07-01 04:07:16", - "author_account_age_days": 4263 + "author_account_age_days": 4294 }, "https://github.com/prismwastaken/comfyui-tools": { "stars": 0, "last_update": "2024-03-05 14:34:56", - "author_account_age_days": 177 + "author_account_age_days": 209 }, "https://github.com/pzzmyc/comfyui-sd3-simple-simpletuner": { "stars": 1, "last_update": "2024-06-19 12:48:18", - "author_account_age_days": 2119 + "author_account_age_days": 2151 }, "https://github.com/redhottensors/ComfyUI-ODE": { - "stars": 24, - "last_update": "2024-06-23 22:16:53", - "author_account_age_days": 159 + "stars": 40, + "last_update": "2024-08-01 06:57:05", + "author_account_age_days": 191 }, "https://github.com/romeobuilderotti/ComfyUI-EZ-Pipes": { "stars": 3, "last_update": "2023-11-15 22:00:49", - "author_account_age_days": 310 + "author_account_age_days": 342 }, "https://github.com/runtime44/comfyui_r44_nodes": { - "stars": 32, + "stars": 34, "last_update": "2024-07-01 08:02:04", - "author_account_age_days": 188 + "author_account_age_days": 219 }, "https://github.com/sangeet/comfyui-testui": { "stars": 2, "last_update": "2024-05-15 00:55:17", - "author_account_age_days": 5100 + "author_account_age_days": 5131 }, "https://github.com/sdfxai/SDFXBridgeForComfyUI": { "stars": 8, "last_update": "2024-06-14 10:26:56", - "author_account_age_days": 255 + "author_account_age_days": 286 }, "https://github.com/shadowcz007/ComfyUI-PuLID-Test": { "stars": 8, "last_update": "2024-05-12 14:37:28", - "author_account_age_days": 3335 + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-CLIPSeg": { "stars": 1, "last_update": "2024-02-08 02:16:24", - "author_account_age_days": 3335 + "author_account_age_days": 3366 + }, + "https://github.com/shadowcz007/comfyui-hydit-lowvram": { + "stars": 2, + "last_update": "2024-07-31 10:04:09", + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-llamafile": { "stars": 15, "last_update": "2024-05-21 19:47:56", - "author_account_age_days": 3335 + "author_account_age_days": 3366 }, "https://github.com/shadowcz007/comfyui-musicgen": { - "stars": 67, + "stars": 82, "last_update": "2024-07-04 12:53:38", - "author_account_age_days": 3335 + "author_account_age_days": 3366 }, "https://github.com/shirazdesigner/CLIPTextEncodeAndEnhancev4": { "stars": 0, "last_update": "2024-04-27 13:25:08", - "author_account_age_days": 3982 + "author_account_age_days": 4013 }, "https://github.com/sofakid/dandy": { - "stars": 36, + "stars": 40, "last_update": "2024-05-27 21:46:18", - "author_account_age_days": 4073 + "author_account_age_days": 4105 }, "https://github.com/stavsap/ComfyUI-React-SDK": { "stars": 6, "last_update": "2024-03-17 21:54:21", - "author_account_age_days": 4104 + "author_account_age_days": 4135 }, "https://github.com/stutya/ComfyUI-Terminal": { "stars": 0, "last_update": "2024-02-05 16:47:28", - "author_account_age_days": 3858 + "author_account_age_days": 3889 }, "https://github.com/sugarkwork/comfyui_psd": { "stars": 1, "last_update": "2024-03-26 08:24:56", - "author_account_age_days": 896 + "author_account_age_days": 927 }, "https://github.com/tachyon-beep/comfyui-simplefeed": { "stars": 3, "last_update": "2024-05-22 03:30:57", - "author_account_age_days": 4941 + "author_account_age_days": 4973 }, "https://github.com/talesofai/comfyui-supersave": { "stars": 1, "last_update": "2023-12-27 02:05:53", - "author_account_age_days": 576 + "author_account_age_days": 607 + }, + "https://github.com/teward/Comfy-Sentry": { + "stars": 1, + "last_update": "2024-07-31 21:37:42", + "author_account_age_days": 5150 }, "https://github.com/thderoo/ComfyUI-_topfun_s_nodes": { "stars": 6, "last_update": "2024-07-03 14:39:28", - "author_account_age_days": 2886 + "author_account_age_days": 2918 }, "https://github.com/tjorbogarden/my-useful-comfyui-custom-nodes": { "stars": 0, "last_update": "2024-03-05 13:31:31", - "author_account_age_days": 133 + "author_account_age_days": 164 }, "https://github.com/tom-doerr/dspy_nodes": { - "stars": 127, - "last_update": "2024-07-12 01:38:01", - "author_account_age_days": 2800 + "stars": 167, + "last_update": "2024-08-04 18:55:22", + "author_account_age_days": 2831 }, "https://github.com/tracerstar/comfyui-p5js-node": { - "stars": 28, + "stars": 32, "last_update": "2024-07-05 23:47:57", - "author_account_age_days": 5219 + "author_account_age_days": 5250 }, "https://github.com/tuckerdarby/ComfyUI-TDNodes": { "stars": 3, "last_update": "2024-02-19 17:00:55", - "author_account_age_days": 2958 + "author_account_age_days": 2990 }, "https://github.com/umisetokikaze/comfyui_mergekit": { "stars": 0, "last_update": "2024-04-28 07:21:00", - "author_account_age_days": 1843 + "author_account_age_days": 1874 }, "https://github.com/unanan/ComfyUI-Dist": { "stars": 5, "last_update": "2024-02-28 10:03:50", - "author_account_age_days": 2918 + "author_account_age_days": 2949 }, "https://github.com/unanan/ComfyUI-clip-interrogator": { - "stars": 25, - "last_update": "2024-07-03 06:01:32", - "author_account_age_days": 1050 + "stars": 36, + "last_update": "2024-07-27 18:33:22", + "author_account_age_days": 1081 + }, + "https://github.com/walterFeng/ComfyUI-Image-Utils": { + "stars": 1, + "last_update": "2024-08-09 11:31:26", + "author_account_age_days": 2827 }, "https://github.com/willblaschko/ComfyUI-Unload-Models": { - "stars": 1, + "stars": 4, "last_update": "2024-06-30 10:07:40", - "author_account_age_days": 4612 + "author_account_age_days": 4643 }, "https://github.com/wormley/comfyui-wormley-nodes": { "stars": 0, "last_update": "2023-11-12 19:05:11", - "author_account_age_days": 2493 + "author_account_age_days": 2525 }, "https://github.com/yushan777/ComfyUI-Y7Nodes": { "stars": 1, - "last_update": "2024-06-27 15:01:31", - "author_account_age_days": 538 + "last_update": "2024-08-04 08:48:59", + "author_account_age_days": 569 + }, + "https://github.com/zml-ai/comfyui-hydit": { + "stars": 1, + "last_update": "2024-08-07 09:37:09", + "author_account_age_days": 2035 }, "https://github.com/zmwv823/ComfyUI-AnyText": { - "stars": 62, - "last_update": "2024-07-05 09:43:59", - "author_account_age_days": 3289 + "stars": 82, + "last_update": "2024-07-26 01:12:04", + "author_account_age_days": 3321 } } \ No newline at end of file diff --git a/node_db/legacy/custom-node-list.json b/node_db/legacy/custom-node-list.json index 4ae435d9..2c2a68c8 100644 --- a/node_db/legacy/custom-node-list.json +++ b/node_db/legacy/custom-node-list.json @@ -10,6 +10,80 @@ }, + + { + "author": "shinich39", + "title": "comfyui-pkg39 [DEPRECATED]", + "reference": "https://github.com/shinich39/comfyui-pkg39", + "files": [ + "https://github.com/shinich39/comfyui-pkg39" + ], + "install_type": "git-clone", + "description": "This package has created for generate image from generated image and embedded workflow." + }, + { + "author": "dnl13", + "title": "ComfyUI-dnl13-seg [DEPRECATED]", + "reference": "https://github.com/dnl13/ComfyUI-dnl13-seg", + "files": [ + "https://github.com/dnl13/ComfyUI-dnl13-seg" + ], + "install_type": "git-clone", + "description": "After discovering @storyicon implementation here of Segment Anything, I realized its potential as a powerful tool for ComfyUI if implemented correctly. I delved into the SAM and Dino models. The following is my own adaptation of sam_hq for ComfyUI." + }, + { + "author": "1038lab", + "title": "ComfyUI-latentSizeSelector [REMOVED]", + "id": "ComfyUI-latentSizeSelector", + "reference": "https://github.com/1038lab/ComfyUI_LatentSizeSelector", + "files": [ + "https://github.com/1038lab/ComfyUI_LatentSizeSelector" + ], + "install_type": "git-clone", + "description": "You'll get a new node Latent Size Selector, you can pick the x and y sizes from a list." + }, + { + "author": "hy134300", + "title": "ComfyUI-PhotoMaker-V2 [REMOVED]", + "reference": "https://github.com/hy134300/ComfyUI-PhotoMaker-V2", + "files": [ + "https://github.com/hy134300/ComfyUI-PhotoMaker-V2" + ], + "install_type": "git-clone", + "description": "Nodes for PhotoMaker-V2" + }, + { + "author": "neverbiasu", + "title": "ComfyUI ImageCaptioner [REMOVED]", + "reference": "https://github.com/neverbiasu/ComfyUI-ImageCaptioner", + "files": [ + "https://github.com/neverbiasu/ComfyUI-ImageCaptioner" + ], + "install_type": "git-clone", + "description": "A ComfyUI extension for generating captions for your images. Runs on your own system, no external services used, no filter." + }, + { + "author": "mingqizhang", + "title": "ComfyUI_InSPyResNet_zmq [REMOVED]", + "id": "inspy", + "reference": "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq", + "files": [ + "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq" + ], + "install_type": "git-clone", + "description": "Nodes:INSPY removebg ModelLoader, INSPY RMBG" + }, + { + "author": "mingqizhang", + "title": "ComfyUI_AEMatter_zmq [REMOVED]", + "id": "aematter", + "reference": "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq", + "files": [ + "https://github.com/mingqizhang/ComfyUI_AEMatter_zmq" + ], + "install_type": "git-clone", + "description": "Nodes:AEMatter_ModelLoader, Create_Trimap, AEMatter_Apply, Mask_Transfor, Replace_Background, Gaussian_Filter, Guide_Filter, Improved_Aplha_Composite" + }, { "author": "bradsec", "title": "ComfyUI_StringTools [REMOVED]", @@ -462,7 +536,7 @@ "https://github.com/laksjdjf/IPAdapter-ComfyUI" ], "install_type": "git-clone", - "description": "This custom nodes provides loader of the IP-Adapter model.[w/NOTE: To use this extension node, you need to download the [a/ip-adapter_sd15.bin](https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.bin) file and place it in the %%**custom_nodes/IPAdapter-ComfyUI/models**%% directory. Additionally, you need to download the 'Clip vision model' from the 'Install models' menu as well.]
NOTE: Use ComfyUI_IPAdapter_plus instead of this." + "description": "This custom nodes provides loader of the IP-Adapter model.[w/NOTE: To use this extension node, you need to download the [a/ip-adapter_sd15.bin](https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15.bin) file and place it in the %%**custom_nodes/IPAdapter-ComfyUI/models**%% directory. Additionally, you need to download the 'Clip vision model' from the 'Install models' menu as well.]\nNOTE: Use ComfyUI_IPAdapter_plus instead of this." }, { "author": "RockOfFire", diff --git a/node_db/new/custom-node-list.json b/node_db/new/custom-node-list.json index 56f4cc29..a72f2223 100644 --- a/node_db/new/custom-node-list.json +++ b/node_db/new/custom-node-list.json @@ -9,691 +9,691 @@ }, - - - { - "author": "TechnoByteJS", - "title": "TechNodes", - "id": "technodes", - "reference": "https://github.com/TechnoByteJS/ComfyUI-TechNodes", + "author": "ryanontheinside", + "title": "ComfyUI_RyanOnTheInside", + "reference": "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside", "files": [ - "https://github.com/TechnoByteJS/ComfyUI-TechNodes" + "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside" ], "install_type": "git-clone", - "description": "ComfyUI nodes for merging, testing and more. SDNext Merge, VAE Merge, MBW Layers, Repeat VAE, Quantization." + "description": "RyanOnTheInside node pack introduces the following (so far): Particle Systems, Optical Flow, Temporal Masks." }, { - "author": "wootwootwootwoot", - "title": "ComfyUI-RK-Sampler", - "id": "rk-sampler", - "reference": "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler", + "author": "city96", + "title": "ComfyUI-GGUF", + "id": "gguf", + "reference": "https://github.com/city96/ComfyUI-GGUF", "files": [ - "https://github.com/wootwootwootwoot/ComfyUI-RK-Sampler" + "https://github.com/city96/ComfyUI-GGUF" ], "install_type": "git-clone", - "description": "Batched Runge-Kutta Samplers for ComfyUI" - }, - { - "author": "BetaDoggo", - "title": "ComfyUI Video Player", - "id": "videoplayer", - "reference": "https://github.com/BetaDoggo/ComfyUI-VideoPlayer", - "files": [ - "https://github.com/BetaDoggo/ComfyUI-VideoPlayer" - ], - "install_type": "git-clone", - "description": "1 step closer to replacing all software with comfy" - }, - { - "author": "googincheng", - "title": "ComfyUX", - "id": "comfyux", - "reference": "https://github.com/googincheng/ComfyUX", - "files": [ - "https://github.com/googincheng/ComfyUX" - ], - "install_type": "git-clone", - "description": "Better user experience plugin for ComfyUI." - }, - { - "author": "WX-NPS1598", - "title": "Auto Crop By NPS", - "id": "autocrop-nps", - "reference": "https://github.com/WX-NPS1598/ComfyUI-Auto_Crop_By_NPS", - "files": [ - "https://github.com/WX-NPS1598/ComfyUI-Auto_Crop_By_NPS" - ], - "install_type": "git-clone", - "description": "A very useful automatic cropping tool! It can realize cropping, expansion and rotation functions in the form of a slider. " - }, - { - "author": "BetaDoggo", - "title": "ComfyUI YetAnotherSafetyChecker", - "id": "yetanothersafetychecker", - "reference": "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker", - "files": [ - "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker" - ], - "install_type": "git-clone", - "description": "Just a simple node to filter out NSFW outputs. This node utilizes [a/AdamCodd/vit-base-nsfw-detector](https://huggingface.co/AdamCodd/vit-base-nsfw-detector) to score the outputs. I chose this model because it's small, fast, and performed very well in my testing. Nudity tends to be scored in the 0.95+ range, but I've set the default to 0.8 as a safe baseline." + "description": "GGUF Quantization support for native ComfyUI models\nThis is currently very much WIP. These custom nodes provide support for model files stored in the GGUF format popularized by llama.cpp.\nWhile quantization wasn't feasible for regular UNET models (conv2d), transformer/DiT models such as flux seem less affected by quantization. This allows running it in much lower bits per weight variable bitrate quants on low-end GPUs.\n[w/LoRA / Controlnet / etc are currently not supported due to the weights being quantized.]" }, { "author": "smthemex", - "title": "ComfyUI_FollowYourEmoji", - "id": "FollowYourEmoji", - "reference": "https://github.com/smthemex/ComfyUI_FollowYourEmoji", + "title": "ComfyUI_MooER", + "id": "comfyui_mooer", + "reference": "https://github.com/smthemex/ComfyUI_MooER", "files": [ - "https://github.com/smthemex/ComfyUI_FollowYourEmoji" + "https://github.com/smthemex/ComfyUI_MooER" ], "install_type": "git-clone", - "description": "You can make emoji from a video and a image in comfyui" + "description": "MooER is an LLM-based Speech Recognition and Translation Model from Moore Threads.You can use MooER when install ComfyUI_MooER node" }, { - "author": "fssorc", - "title": "ComfyUI_FaceShaper", - "id": "facesharper", - "reference": "https://github.com/fssorc/ComfyUI_FaceShaper", + "author": "fairy-root", + "title": "Ollama and Llava Vision integration for ComfyUI", + "reference": "https://github.com/fairy-root/comfyui-ollama-llms", "files": [ - "https://github.com/fssorc/ComfyUI_FaceShaper" + "https://github.com/fairy-root/comfyui-ollama-llms" ], "install_type": "git-clone", - "description": "Nodes:Match two faces' shape before using other face swap nodes\nFace-swapping tools typically only replace facial features during the swap, without altering the facial shape. When there is a significant difference in facial shape between the target person and the person in the original photo, the result of the face swap is less satisfactory.\nThis project is a small script that can first liquefy and stretch the face in the original photo according to the horizontal and vertical proportions of the target person's facial contour. The resulting image can be used as input for other face-swapping nodes." + "description": "The PonySwitch node is a custom node for ComfyUI that modifies prompts based on a toggle switch and adds configurable pony tags." }, { - "author": "Marksusu", - "title": "ComfyUI_MTEncode", - "id": "mtencode", - "reference": "https://github.com/Marksusu/ComfyUI_MTEncode", + "author": "shinich39", + "title": "comfyui-target-search", + "reference": "https://github.com/shinich39/comfyui-target-search", "files": [ - "https://github.com/Marksusu/ComfyUI_MTEncode" + "https://github.com/shinich39/comfyui-target-search" ], "install_type": "git-clone", - "description": "Nodes:MTCLIPEncode" - }, - { - "author": "ShmuelRonen", - "title": "ComfyUI-AstralAnimator", - "id": "astralanimator", - "reference": "https://github.com/ShmuelRonen/ComfyUI-AstralAnimator", - "files": [ - "https://github.com/ShmuelRonen/ComfyUI-AstralAnimator" - ], - "install_type": "git-clone", - "description": "A custom node for ComfyUI that enables smooth, keyframe-based animations for image generation. Create dynamic sequences with control over motion, zoom, rotation, and easing effects. Ideal for AI-assisted animation and video content creation." - }, - { - "author": "AIFSH", - "title": "VocalSeparation-ComfyUI", - "id": "vocalseparation", - "reference": "https://github.com/AIFSH/VocalSeparation-ComfyUI", - "files": [ - "https://github.com/AIFSH/VocalSeparation-ComfyUI" - ], - "install_type": "git-clone", - "description": "a custom node for separation vocals from music based on [a/ZFTurbo/Music-Source-Separation-Training](https://github.com/ZFTurbo/Music-Source-Separation-Training)" - }, - { - "author": "amorano", - "title": "Cozy Communication", - "id": "cozy_comm", - "reference": "https://github.com/cozy-comfyui/cozy_comm", - "files": [ - "https://github.com/cozy-comfyui/cozy_comm" - ], - "nodename_pattern": " \\(cozy\\)", - "install_type": "git-clone", - "description": "Post images and video to Discord. Nodes to facilitate communication using REST. " - }, - { - "author": "WX-NPS1598", - "title": "ComfyUI-auto-crop-by-NPS", - "id": "auto-crop-nps", - "reference": "https://github.com/WX-NPS1598/ComfyUI-auto-crop-by-NPS", - "files": [ - "https://github.com/WX-NPS1598/ComfyUI-auto-crop-by-NPS" - ], - "install_type": "git-clone", - "description": "A very useful automatic cropping tool! It can realize cropping, expansion and rotation functions in the form of a slider." - }, - { - "author": "RhizoNymph", - "title": "ComfyUI-Latte", - "id": "latte", - "reference": "https://github.com/RhizoNymph/ComfyUI-Latte", - "files": [ - "https://github.com/RhizoNymph/ComfyUI-Latte" - ], - "install_type": "git-clone", - "description": "Nodes:LatteVideoGenerator" - }, - { - "author": "lrzjason", - "title": "Comfyui Kolors Utils", - "reference": "https://github.com/lrzjason/Comfyui-Kolors-Utils", - "files":[ - "https://github.com/lrzjason/Comfyui-Kolors-Utils" - ], - "install_type":"git-clone", - "description":"Nodes: Save Weight As Kolors Unet" - }, - { - "author": "ycchanau", - "title": "ComfyUI Preview Magnifier", - "id":"magnifier", - "reference": "https://github.com/ycchanau/ComfyUI_Preview_Magnifier", - "files":[ - "https://github.com/ycchanau/ComfyUI_Preview_Magnifier" - ], - "install_type":"git-clone", - "description":"Custom nodes that preview image with a magnifier." - }, - { - "author": "Koushakur", - "title": "ComfyUI-DenoiseChooser", - "id":"denoise-chooser", - "reference": "https://github.com/Koushakur/ComfyUI-DenoiseChooser", - "files":[ - "https://github.com/Koushakur/ComfyUI-DenoiseChooser" - ], - "install_type":"git-clone", - "description":"The latent gets passed straight through unaltered, if it's empty (i.e from a 'Empty Latent Image' node) FLOAT outputs the first value, otherwise it outputs the second value" - }, - { - "author": "john-mnz", - "title": "ComfyUI-Inspyrenet-Rembg", - "id":"inspyrenet", - "reference": "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg", - "files":[ - "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg" - ], - "install_type":"git-clone", - "description":"ComfyUI node for background removal implementing [a/InSPyReNet](https://github.com/plemeri/InSPyReNet)" - }, - { - "author": "AIFSH", - "title": "DiffMorpher-ComfyUI", - "id": "uvr5", - "reference": "https://github.com/AIFSH/DiffMorpher-ComfyUI", - "files": [ - "https://github.com/AIFSH/DiffMorpher-ComfyUI" - ], - "install_type": "git-clone", - "description": "a custom node for [a/DiffMorpher](https://github.com/Kevin-thu/DiffMorpher),you can find base workflow in [a/doc](https://github.com/AIFSH/DiffMorpher-ComfyUI/blob/main/doc)" - }, - { - "author": "2kpr", - "title": "ComfyUI-UltraPixel", - "id": "comfyui-ultrapixel", - "reference": "https://github.com/2kpr/ComfyUI-UltraPixel", - "files": [ - "https://github.com/2kpr/ComfyUI-UltraPixel" - ], - "install_type": "git-clone", - "description": "Implementation of UltraPixel on ComfyUI" - }, - { - "author": "LightSketch-ai", - "title": "ComfyUI-LivePortraitNode (Replicate API)", - "id": "lightsketchlp", - "reference": "https://github.com/LightSketch-ai/ComfyUI-LivePortraitNode", - "files": [ - "https://github.com/LightSketch-ai/ComfyUI-LivePortraitNode" - ], - "install_type": "git-clone", - "description": "Two simple to install nodes to get Live Portrait working in ComfyUI without the need for a fancy GPU (Replicate account needed)." - }, - { - "author": "aaronchm", - "title": "z-a1111-sd-webui-DanTagGen", - "id":"z-a1111-sd-webui-DanTagGen", - "reference": "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen", - "files":[ - "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen" - ], - "install_type":"git-clone", - "description":"Improved DanTagGen implementation that posesses all functionality of the A1111 webui extension." - }, - { - "author": "mikebilly", - "title": "Transparent-background-comfyUI", - "id":"transparent-background-comfyui", - "reference": "https://github.com/mikebilly/Transparent-background-comfyUI", - "files":[ - "https://github.com/mikebilly/Transparent-background-comfyUI" - ], - "install_type":"git-clone", - "description":"Removes background using Transparent Background" - }, - { - "author": "un-seen", - "title": "comfyui-tensorop", - "id":"comfyui-tensorop", - "reference": "https://github.com/un-seen/comfyui-tensorops", - "files":[ - "https://github.com/un-seen/comfyui-tensorops" - ], - "install_type":"git-clone", - "description":"Nodes to perform tensor operations in ComfyUI" - }, - { - "author": "ader47", - "title": "ComfyUI-MeshHamer", - "reference": "https://github.com/ader47/comfyui_meshhamer", - "files": [ - "https://github.com/ader47/comfyui_meshhamer" - ], - "install_type": "git-clone", - "description": "Nodes:MeshHamer Hand Refiner. See also: [a/HaMeR: Hand Mesh Recovery](https://github.com/geopavlakos/hamer/tree/main)" - }, - { - "author": "AIFSH", - "title": "SenseVoice-ComfyUI", - "id": "sensevoice", - "reference": "https://github.com/AIFSH/SenseVoice-ComfyUI", - "files": [ - "https://github.com/AIFSH/SenseVoice-ComfyUI" - ], - "install_type": "git-clone", - "description": "a custom node for [a/SenseVoice](https://github.com/FunAudioLLM/SenseVoice)" - }, - { - "author": "YMC", - "title": "ymc-node-as-x-type", - "reference": "https://github.com/YMC-GitHub/ymc-node-as-x-type", - "files": [ - "https://github.com/YMC-GitHub/ymc-node-as-x-type" - ], - "install_type": "git-clone", - "description": "some comfyui custom nodes to set it as known type" - }, - { - "author": "smthemex", - "title": "ComfyUI_EchoMimic", - "id": "EchoMimic", - "reference": "https://github.com/smthemex/ComfyUI_EchoMimic", - "files": [ - "https://github.com/smthemex/ComfyUI_EchoMimic" - ], - "install_type": "git-clone", - "description": "You can using EchoMimic in comfyui,whitch Lifelike Audio-Driven Portrait Animations through Editable Landmark Conditioning " - }, - { - "author": "Patricio Gonzalez Vivo", - "title": "GLSL Nodes", - "reference": "https://github.com/patriciogonzalezvivo/comfyui_glslnodes", - "files": [ - "https://github.com/patriciogonzalezvivo/comfyui_glslnodes" - ], - "install_type": "git-clone", - "description": "A collections of nodes to support GLSL shaders inside a workflow." - }, - { - "author": "MiaoshouAI", - "title": "ComfyUI-Miaoshouai-Tagger", - "id": "miaoshouai-tagger", - "reference": "https://github.com/miaoshouai/ComfyUI-Miaoshouai-Tagger", - "files": [ - "https://github.com/miaoshouai/ComfyUI-Miaoshouai-Tagger" - ], - "install_type": "git-clone", - "description": "A node helps with image tagging and caption based on Florence-2-base-PromptGen model." - }, - { - "author": "sn0w12", - "title": "ComfyUI-Sn0w-Scripts", - "reference": "https://github.com/sn0w12/ComfyUI-Sn0w-Scripts", - "files": [ - "https://github.com/sn0w12/ComfyUI-Sn0w-Scripts" - ], - "install_type": "git-clone", - "description": "A collection of nodes and improvements created for general ease and lora management. These are just nodes I made and found useful, they should work with most other nodes. Most nodes that take in a prompt are made with booru tags in mind and might not work as expected with other prompts." - }, - { - "author": "N3rd00d", - "title": "ComfyUI-Paint3D-Nodes", - "id": "paint3d", - "reference": "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes", - "files": [ - "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes" - ], - "install_type": "git-clone", - "description": "Paint3D Nodes is a custom ComfyUI node for 3D model texture inpainting based on [a/Paint3D](https://arxiv.org/pdf/2312.13913)." - }, - { - "author": "JackEllie", - "title": "ComfyUI-AI-Assistant", - "id": "AI-Assistant", - "reference": "https://github.com/JackEllie/ComfyUI_AI_Assistant", - "files": [ - "https://github.com/JackEllie/ComfyUI_AI_Assistant" - ], - "install_type": "git-clone", - "description": "Provides two additional preprocessors and a prompt organizing tool.[Original Project](https://github.com/tori29umai0123/AI-Assistant/blob/main/README.md?plain=1)." - }, - { - "author": "3D-MeshTool", - "title": "ComfyUI-3D-MeshTool", - "id": "3D-MeshTool", - "reference": "https://github.com/807502278/ComfyUI-3D-MeshTool", - "files": [ - "https://github.com/807502278/ComfyUI-3D-MeshTool" - ], - "install_type": "git-clone", - "description": "A simple 3D model processing tool within ComfyUI." - }, - { - "author": "APZmedia", - "title": "APZmedia Clean File Name Node", - "id": "clean-filename", - "reference": "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string", - "files": [ - "https://github.com/APZmedia/ComfyUI-APZmedia-cleanName-from-string" - ], - "install_type": "git-clone", - "description": "The Clean File Name Node is a custom node for ComfyUI designed to process and sanitize text strings for use as valid file names. It replaces invalid characters with a user-specified character and truncates the resulting string to a defined length." - }, - { - "author": "Cyberschorsch", - "title": "ComfyUI Checkpoint Loader Config", - "reference": "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader", - "files": [ - "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader" - ], - "install_type": "git-clone", - "description": "Provides a custom node to load config for sampler nodes from a yaml file." - }, - { - "author": "smthemex", - "title": "ComfyUI_Stable_Makeup", - "id": "Stable_Makeup", - "reference": "https://github.com/smthemex/ComfyUI_Stable_Makeup", - "files": [ - "https://github.com/smthemex/ComfyUI_Stable_Makeup" - ], - "install_type": "git-clone", - "description": "You can apply makeup to the characters in comfyui" - }, - { - "author": "ZHO-ZHO-ZHO", - "title": "ComfyUI-UltraEdit-ZHO", - "reference": "https://github.com/ZHO-ZHO-ZHO/ComfyUI-UltraEdit-ZHO", - "files": [ - "https://github.com/ZHO-ZHO-ZHO/ComfyUI-UltraEdit-ZHO" - ], - "install_type": "git-clone", - "description": "Unofficial implementation of [a/UltraEdit](https://github.com/HaozheZhao/UltraEdit) (Diffusers) for ComfyUI" - }, - { - "author": "Indra's Mirror", - "title": "ComfyUI-Documents", - "reference": "https://github.com/Excidos/ComfyUI-Documents", - "files": [ - "https://github.com/Excidos/ComfyUI-Documents" - ], - "install_type": "git-clone", - "description": "ComfyUI-Documents is a powerful extension for ComfyUI that enhances workflows with advanced document processing capabilities. It includes nodes for loading and parsing various document types (PDF, TXT, DOC, DOCX), converting PDF pages to images, splitting PDFs into individual pages, and selecting specific images from batches. Features include text extraction, image conversion, and seamless integration with existing ComfyUI projects." - }, - { - "author": "Expo", - "title": "LM Studio Image to Text Node for ComfyUI", - "reference": "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node", - "files": [ - "https://github.com/mattjohnpowell/comfyui-lmstudio-image-to-text-node" - ], - "install_type": "git-clone", - "description": "A custom node for ComfyUI that integrates LM Studio's vision models to generate text descriptions of images. It provides a flexible and customizable way to add image-to-text capabilities to your ComfyUI workflows, working with LM Studio's local API." - }, - { - "author": "AIFSH", - "title": "CosyVoice-ComfyUI", - "id": "cosyvoice", - "reference": "https://github.com/AIFSH/CosyVoice-ComfyUI", - "files": [ - "https://github.com/AIFSH/CosyVoice-ComfyUI" - ], - "install_type": "git-clone", - "description": "a comfyui custom node for [a/CosyVoice](https://github.com/FunAudioLLM/CosyVoice)" - }, - { - "author": "leestuartx", - "title": "ComfyUI-GG", - "reference": "https://github.com/leestuartx/ComfyUI-GG", - "files": [ - "https://github.com/leestuartx/ComfyUI-GG" - ], - "install_type": "git-clone", - "description": "ComfyUI-GG is a collection of ComfyUI nodes designed to enhance productivity in image processing workflows. This plugin provides a set of custom nodes that perform various image manipulations and metadata extractions to streamline your tasks." - }, - { - "author": "mgfxer", - "title": "ComfyUI-FrameFX", - "reference": "https://github.com/mgfxer/ComfyUI-FrameFX", - "files": [ - "https://github.com/mgfxer/ComfyUI-FrameFX" - ], - "install_type": "git-clone", - "description": "A set of custom nodes for frame interpolation and video processing in ComfyUI." - }, - { - "author": "injet-zhou", - "title": "comfyui_extra_api", - "reference": "https://github.com/injet-zhou/comfyui_extra_api", - "files": [ - "https://github.com/injet-zhou/comfyui_extra_api" - ], - "install_type": "git-clone", - "description": "Add more endpoints to make easy for utilizing ComfyUI API." + "description": "Move canvas to target on dragging connection." }, { "author": "MinusZoneAI", - "title": "ComfyUI-Kolors-MZ", - "id": "kolors-mz", - "reference": "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ", + "title": "ComfyUI-FluxExt-MZ", + "reference": "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ", "files": [ - "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ" + "https://github.com/MinusZoneAI/ComfyUI-FluxExt-MZ" ], "install_type": "git-clone", - "description": "Implementation of Kolors on ComfyUI\nReference from [a/https://github.com/kijai/ComfyUI-KwaiKolorsWrapper](https://github.com/kijai/ComfyUI-KwaiKolorsWrapper)\nUsing ComfyUI Native Sampling" + "description": "Nodes:MZ_Flux1PartialLoad_Patch. Tool nodes related to flux1" }, { - "author": "pamparamm", - "title": "ComfyUI-ppm", - "id": "comfyui-ppm", - "reference": "https://github.com/pamparamm/ComfyUI-ppm", + "author": "XLabs-AI", + "title": "x-flux-comfyui", + "reference": "https://github.com/XLabs-AI/x-flux-comfyui", "files": [ - "https://github.com/pamparamm/ComfyUI-ppm" + "https://github.com/XLabs-AI/x-flux-comfyui" ], "install_type": "git-clone", - "description": "Fixed AttentionCouple/NegPip(negative weights in prompts), more CFG++ samplers, etc." + "description": "Nodes:Load Flux LoRA, Load Flux ControlNet, Apply Flux ControlNet, Xlabs Sampler" }, { - "author": "Haoming02", - "title": "ComfyUI ReSharpen", - "reference": "https://github.com/Haoming02/comfyui-resharpen", + "author": "okgo4", + "title": "ComfyUI-Mosaic-Mask", + "reference": "https://github.com/okgo4/ComfyUI-Mosaic-Mask", "files": [ - "https://github.com/Haoming02/comfyui-resharpen" + "https://github.com/okgo4/ComfyUI-Mosaic-Mask" ], "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which allows you to increase or decrease the amount of details generated during the Stable Diffusion pipeline." - }, - { - "author": "BenNarum", - "title": "ComfyUI_CAS", - "reference": "https://github.com/BenNarum/ComfyUI_CAS", - "files": [ - "https://github.com/BenNarum/ComfyUI_CAS" - ], - "install_type": "git-clone", - "description": "This extension provides nodes that allow experimentation with various elements (samplers, latent, activators, attenuator, scheulders, ...) of Stable Diffusion." - }, - { - "author": "SiliconFlow", - "title": "☁️BizyAir Nodes", - "id": "bizyair", - "reference": "https://github.com/siliconflow/BizyAir", - "files": [ - "https://github.com/siliconflow/BizyAir" - ], - "install_type": "git-clone", - "description": "[a/BizyAir](https://github.com/siliconflow/BizyAir) Comfy Nodes that can run in any environment." - }, - { - "author": "Extraltodeus", - "title": "pre_cfg_comfy_nodes_for_ComfyUI", - "id": "precfg", - "reference": "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI", - "files": [ - "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI" - ], - "install_type": "git-clone", - "description": "A set of nodes to prepare the noise predictions before the CFG function" - }, - { - "author": "ZZXYWQ", - "title": "ZZX Nodes", - "id": "ZZXYWQ", - "reference": "https://github.com/ZZXYWQ/ComfyUI-ZZXYWQ", - "files": [ - "https://github.com/ZZXYWQ/ComfyUI-ZZXYWQ" - ], - "install_type": "git-clone", - "description": "Nodes: StreamRecorder, VideoFormatConverter, ZZX_PaintsUndo" - }, - { - "author": "smthemex", - "title": "ComfyUI_AnyDoor", - "id": "ComfyUI_AnyDoor", - "reference": "https://github.com/smthemex/ComfyUI_AnyDoor", - "files": [ - "https://github.com/smthemex/ComfyUI_AnyDoor" - ], - "install_type": "git-clone", - "description": "You can use anydoor, change clothes or object..." - }, - { - "author": "Haoming02", - "title": "ComfyUI Node Beautify", - "reference": "https://github.com/Haoming02/comfyui-node-beautify", - "files": [ - "https://github.com/Haoming02/comfyui-node-beautify" - ], - "install_type": "git-clone", - "description": "This is an Extension for ComfyUI, which helps formatting the workflow." - }, - { - "author": "adigayung", - "title": "ComfyUI-Translator", - "reference": "https://github.com/adigayung/ComfyUI-Translator", - "files": [ - "https://github.com/adigayung/ComfyUI-Translator" - ], - "install_type": "git-clone", - "description": "Auto translate all languages ​​to english" - }, - { - "author": "christian-byrne", - "title": "comfyui-default-values-manager", - "reference": "https://github.com/christian-byrne/comfyui-default-values-manager", - "files": [ - "https://github.com/christian-byrne/comfyui-default-values-manager" - ], - "install_type": "git-clone", - "description": "comfyui-default-values-manager" - }, - { - "author": "vivax3794", - "title": "ComfyUI-Sub-Nodes", - "reference": "https://github.com/vivax3794/ComfyUI-Sub-Nodes", - "files": [ - "https://github.com/vivax3794/ComfyUI-Sub-Nodes" - ], - "install_type": "git-clone", - "description": "Creating subgraph and Calling subgraphs." - }, - { - "author": "HECer", - "title": "ComfyUI-FilePathCreator", - "reference": "https://github.com/HECer/ComfyUI-FilePathCreator", - "files": [ - "https://github.com/HECer/ComfyUI-FilePathCreator" - ], - "install_type": "git-clone", - "description": "The ComfyUI-FilePathCreator is a custom node extension for ComfyUI designed to generate dynamic filenames based on user-defined parameters. This node helps streamline the process of creating organized and timestamped filenames, ideal for saving output files in a structured manner." - }, - { - "author": "mullakhmetov", - "title": "comfyui_dynamic_util_nodes", - "reference": "https://github.com/mullakhmetov/comfyui_dynamic_util_nodes", - "files": [ - "https://github.com/mullakhmetov/comfyui_dynamic_util_nodes" - ], - "install_type": "git-clone", - "description": "ComfyS3 helpful util nodes for dynamic workflows" - }, - { - "author": "wTechArtist", - "title": "ComfyUI-CustomNodes", - "reference": "https://github.com/wTechArtist/ComfyUI-CustomNodes", - "files": [ - "https://github.com/wTechArtist/ComfyUI-CustomNodes" - ], - "install_type": "git-clone", - "description": "Nodes:Image Blending Mode Mask" - }, - { - "author": "bradsec", - "title": "ComfyUI_StringTools", - "id": "stringtools", - "reference": "https://github.com/bradsec/ComfyUI_StringTools", - "files": [ - "https://github.com/bradsec/ComfyUI_StringTools" - ], - "install_type": "git-clone", - "description": "Some simple string tools to modify text and strings in ComfyUI." - }, - { - "author": "bluevisor", - "title": "ComfyUI_PS_Blend_Node", - "reference": "https://github.com/bluevisor/ComfyUI_PS_Blend_Node", - "files": [ - "https://github.com/bluevisor/ComfyUI_PS_Blend_Node" - ], - "install_type": "git-clone", - "description": "This repository contains a simple custom node for ComfyUI that implements familiar PS-style blend modes using PyTorch. The PSBlendNode allows you to blend two images together using a variety of blend modes and an opacity parameter." - }, - { - "author": "longgui0318", - "title": "comfyui-common-util", - "id": "common-util", - "reference": "https://github.com/longgui0318/comfyui-common-util", - "files": [ - "https://github.com/longgui0318/comfyui-common-util" - ], - "install_type": "git-clone", - "description": "Nodes:Init Layer Info Array, Added Layer Info To Array, Layer Info Array Fuse, Layer Image Seleted, Layer Images IPAdapter Advanced, Enhanced Random Light Source" + "description": "ComfyUI-Mosaic-Mask is an automatic tool designed to detect and mask mosaic areas in input images." }, { "author": "kijai", - "title": "ComfyUI-KwaiKolorsWrapper", - "id": "kwaikolors", - "reference": "https://github.com/kijai/ComfyUI-KwaiKolorsWrapper", + "title": "ComfyUI nodes for ControlNext-SVD v2", + "reference": "https://github.com/kijai/ComfyUI-ControlNeXt-SVD", "files": [ - "https://github.com/kijai/ComfyUI-KwaiKolorsWrapper" + "https://github.com/kijai/ComfyUI-ControlNeXt-SVD" ], "install_type": "git-clone", - "description": "Rudimentary wrapper that runs [a/Kwai-Kolors](https://huggingface.co/Kwai-Kolors/Kolors) text2image pipeline using diffusers." + "description": "These nodes include my wrapper for the original diffusers pipeline, as well as work in progress native ComfyUI implementation.\nFor the diffusers wrapper models should be downloaded automatically, for the native version you can get the unet [a/here](https://huggingface.co/Kijai/ControlNeXt-SVD-V2-Comfy/blob/main/controlnext-svd_v2-unet-fp16_converted.safetensors)." }, { - "author": "Smuzzies", - "title": "comfyui_meme_maker", - "reference": "https://github.com/Smuzzies/comfyui_meme_maker", + "author": "Isi-dev", + "title": "UniAnimate Nodes for ComfyUI", + "id": "comfyuiunianimatenodes", + "reference": "https://github.com/Isi-dev/ComfyUI-UniAnimate-W", "files": [ - "https://github.com/Smuzzies/comfyui_meme_maker" + "https://github.com/Isi-dev/ComfyUI-UniAnimate-W" ], "install_type": "git-clone", - "description": "Meme Maker Node for ComfyUI." + "description": "These are nodes to animate an image with a reference video using UniAnimate. [w/Name conflict with AIFSH/ComfyUI-UniAnimate. Cannot install simulatenously.]" + }, + { + "author": "dadoirie", + "title": "ComfyUI_Dados_Nodes", + "reference": "https://github.com/dadoirie/ComfyUI_Dados_Nodes", + "files": [ + "https://github.com/dadoirie/ComfyUI_Dados_Nodes" + ], + "install_type": "git-clone", + "description": "ComfyUI_Dados_Nodes is a collection of custom nodes for ComfyUI, designed to enhance functionality and provide integration with various services, including Pinterest. This privacy policy explains how these nodes handle user data.\nNOTE: [a/privacy_policy](https://github.com/dadoirie/ComfyUI_Dados_Nodes/blob/master/privacy_policy.md)" + }, + { + "author": "leeguandong", + "title": "ComfyUI nodes to use VideoEditing", + "reference": "https://github.com/leeguandong/ComfyUI_VideoEditing", + "files": [ + "https://github.com/leeguandong/ComfyUI_VideoEditing" + ], + "install_type": "git-clone", + "description": "Nodes:Load Video to Images, Image to Canny, ControlNet Model Loader, VEDit Model Loader, VEdit Sampler. [a/https://github.com/SingleZombie/DiffusersExample/tree/main/ReplaceAttn](https://github.com/SingleZombie/DiffusersExample/tree/main/ReplaceAttn)" + }, + { + "author": "shinich39", + "title": " connect-from-afar", + "reference": "https://github.com/shinich39/comfyui-connect-from-afar", + "files": [ + "https://github.com/shinich39/comfyui-connect-from-afar" + ], + "install_type": "git-clone", + "description": "Connect a new link from out of screen." + }, + { + "author": "StartHua", + "title": "Comfyui_CXH_joy_caption", + "reference": "https://github.com/StartHua/Comfyui_CXH_joy_caption", + "files": [ + "https://github.com/StartHua/Comfyui_CXH_joy_caption" + ], + "install_type": "git-clone", + "description": "Nodes:Joy_caption_load, Joy_caption" + }, + { + "author": "fanfanfan", + "title": "chinese_clip_encode", + "id": "chinese_clip_encode", + "reference": "https://github.com/yuan199696/chinese_clip_encode", + "files": [ + "https://github.com/yuan199696/chinese_clip_encode" + ], + "install_type": "git-clone", + "description": "Support input of Chinese prompts." + }, + { + "author": "ChrisColeTech", + "title": "ComfyUI-Line-counter", + "reference": "https://github.com/ChrisColeTech/ComfyUI-Line-counter", + "files": [ + "https://github.com/ChrisColeTech/ComfyUI-Line-counter" + ], + "install_type": "git-clone", + "description": "Custom node to count the number of lines in a text file" + }, + { + "author": "Fuou Marinas", + "title": "ComfyUI-StyleTransferPlus", + "id": "styletransferplus", + "reference": "https://github.com/FuouM/ComfyUI-StyleTransferPlus", + "files": [ + "https://github.com/FuouM/ComfyUI-StyleTransferPlus" + ], + "install_type": "git-clone", + "description": "Nodes:Neural Neighbor, CAST, EFDM, MicroAST, Coral Color Transfer." + }, + { + "author": "jstit", + "title": "ComfyUI-HeadshotPro", + "reference": "https://github.com/HeadshotPro/ComfyUI-HeadshotPro", + "files": [ + "https://github.com/HeadshotPro/ComfyUI-HeadshotPro" + ], + "install_type": "git-clone", + "description": "Nodes:Download Dreambooth Checkpoint, Get Random Value From List, Load Canny Pose Face, Transparent to White Background, Download Flux Lora." + }, + { + "author": "jstit", + "title": "comfyui_custom_node_image", + "reference": "https://github.com/jstit/comfyui_custom_node_image", + "files": [ + "https://github.com/jstit/comfyui_custom_node_image" + ], + "install_type": "git-clone", + "description": "Nodes:ImageCropCircle." + }, + { + "author": "justUmen", + "title": "Bjornulf_custom_nodes", + "reference": "https://github.com/justUmen/Bjornulf_custom_nodes", + "files": [ + "https://github.com/justUmen/Bjornulf_custom_nodes" + ], + "install_type": "git-clone", + "description": "Nodes: Ollama, Green Screen to Transparency, Save image for Bjornulf LobeChat, Text with random Seed, Random line from input, Combine images (Background+Overlay alpha), Image to grayscale (black & white), Remove image Transparency (alpha), Resize Image, ..." + }, + { + "author": "yuvraj108c", + "title": "ComfyUI Dwpose TensorRT", + "id": "dwpose-tensorrt", + "reference": "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt", + "files": [ + "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt" + ], + "install_type": "git-clone", + "description": "This project provides a Tensorrt implementation of Dwpose for ultra fast pose estimation inside ComfyUI" + }, + { + "author": "OuticNZ", + "title": "ComfyUI-Simple-Of-Complex", + "reference": "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex", + "files": [ + "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex" + ], + "install_type": "git-clone", + "description": "Nodes:Text Switch 2 Way, Prompt Tidy, Text With Context." + }, + { + "author": "Pheat-AI", + "title": "Remade_nodes", + "reference": "https://github.com/Pheat-AI/Remade_nodes", + "files": [ + "https://github.com/Pheat-AI/Remade_nodes" + ], + "install_type": "git-clone", + "description": "Nodes:Batch Image Blend by Mask" + }, + { + "author": "Raapys", + "title": "LatentGC Aggressive", + "id": "latentgcaggressive", + "reference": "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive", + "files": [ + "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive" + ], + "install_type": "git-clone", + "description": "Simple latent-passthrough node for running a full VRAM cleanup between workflow stages." + }, + { + "author": "shadowcz007", + "title": "comfyui-try-on", + "reference": "https://github.com/shadowcz007/comfyui-try-on", + "files": [ + "https://github.com/shadowcz007/comfyui-try-on" + ], + "install_type": "git-clone", + "description": "Virtual try-on for creating a personal brand wardrobe collection." + }, + { + "author": "caleboleary", + "title": "Comfyui-calbenodes", + "reference": "https://github.com/caleboleary/Comfyui-calbenodes", + "files": [ + "https://github.com/caleboleary/Comfyui-calbenodes" + ], + "install_type": "git-clone", + "description": "Nodes:CharacterManagerNode, FilmGrain, FlipFlopperSameArch" + }, + { + "author": "MinusZoneAI", + "title": "ComfyUI-Flux1Quantize-MZ", + "reference": "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ", + "files": [ + "https://github.com/MinusZoneAI/ComfyUI-Flux1Quantize-MZ" + ], + "pip": ["git+https://github.com/IST-DASLab/marlin"], + "install_type": "git-clone", + "description": "Quantization tools are from [a/https://github.com/casper-hansen/AutoAWQ](https://github.com/casper-hansen/AutoAWQ) and [a/https://github.com/IST-DASLab/marlin](https://github.com/IST-DASLab/marlin)\nOnly applicable to graphics cards with sm_80 and above (30 series and above)\nNeed to install marlin dependencies first" + }, + { + "author": "OgreLemonSoup", + "title": "Load Image Gallery", + "id": "LoadImageGallery", + "reference": "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery", + "files": [ + "https://github.com/OgreLemonSoup/ComfyUI-Load-Image-Gallery" + ], + "install_type": "git-clone", + "description": "Adds a gallery to the Load Image node" + }, + { + "author": "Hellrunner2k", + "title": "Hellrunner's Magical Nodes", + "reference": "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes", + "files": [ + "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes" + ], + "install_type": "git-clone", + "description": "Nodes:Magical Save Node, Thermal Latenator. This package contains a collection of neat nodes that are supposed to ease your comfy-flow." + }, + { + "author": "logtd", + "title": "ComfyUI-SEGAttention", + "id": "segattention", + "reference": "https://github.com/logtd/ComfyUI-SEGAttention", + "files": [ + "https://github.com/logtd/ComfyUI-SEGAttention" + ], + "install_type": "git-clone", + "description": "Nodes to use [a/Smoothed Energy Guidance](https://github.com/SusungHong/SEG-SDXL) for ComfyUI." + }, + { + "author": "MohammadAboulEla", + "title": "iTools ImageLoaderPlus", + "reference": "https://github.com/MohammadAboulEla/ComfyUI-iTools", + "files": [ + "https://github.com/MohammadAboulEla/ComfyUI-iTools" + ], + "install_type": "git-clone", + "description": "The iTools ImageLoaderPlus is an enhancement of the original ComfyUI ImageLoader node. It attempts to return the possible prompt used to create an image." + }, + { + "author": "logtd", + "title": "ComfyUI-RefUNet", + "id": "refunet", + "reference": "https://github.com/logtd/ComfyUI-RefUNet", + "files": [ + "https://github.com/logtd/ComfyUI-RefUNet" + ], + "install_type": "git-clone", + "description": "A set of nodes to use Reference UNets" + }, + { + "author": "blackcodetavern", + "title": "ComfyUI-Benripack", + "reference": "https://github.com/blackcodetavern/ComfyUI-Benripack", + "files": [ + "https://github.com/blackcodetavern/ComfyUI-Benripack" + ], + "install_type": "git-clone", + "description": "ComfyUI-Benripack is an extension for ComfyUI that provides a CharacterPipe node. This node allows for managing various elements such as images, prompts, and models in a single structure, simplifying the workflow for character-based image generation." + }, + { + "author": "Cyber-Blacat", + "title": "ComfyUI-Yuan", + "reference": "https://github.com/Cyber-Blacat/ComfyUI-Yuan", + "files": [ + "https://github.com/Cyber-Blacat/ComfyUI-Yuan" + ], + "install_type": "git-clone", + "description": "Some simple&practical ComfyUI image processing nodes." + }, + { + "author": "NeuralSamurAI", + "title": "FluxPseudoNegative", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt" + ], + "install_type": "git-clone", + "description": "FluxPseudoNegative is an advanced custom node for ComfyUI that converts negative prompts into positive ones. It's designed to enhance prompt engineering for image generation models that don't natively support negative prompts or where using negative prompts significantly increases generation time. So instead of hacking CFG we simply invert your negative words and find their antonyms!" + }, + { + "author": "LING-APE", + "title": "ComfyUI-PixelResolutionCalculator", + "id": "PixelCalulator", + "reference": "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator", + "files": [ + "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator" + ], + "install_type": "git-clone", + "description": "Simple resuluition calculator to convert pixel resolution and aspect ratio to laten friendlt pixel width and height size." + }, + { + "author": "Franck-Demongin", + "title": "NX_Translator", + "reference": "https://github.com/Franck-Demongin/NX_Translator", + "files": [ + "https://github.com/Franck-Demongin/NX_Translator" + ], + "install_type": "git-clone", + "description": "A custom node for translating prompts with Google Translate or DeeplL directly in ComfyUI." + }, + { + "author": "eastoc", + "title": "Semantic-SAM", + "reference": "https://github.com/eastoc/ComfyUI_SemanticSAM", + "files": [ + "https://github.com/eastoc/ComfyUI_SemanticSAM" + ], + "install_type": "git-clone", + "description": "Segment and Recognize Anything at Any Granularity." + }, + { + "author": "AIFSH", + "title": "GSTTS-ComfyUI", + "id": "gstts", + "reference": "https://github.com/AIFSH/GSTTS-ComfyUI", + "files": [ + "https://github.com/AIFSH/GSTTS-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS)" + }, + { + "author": "MiddleKD", + "title": "ComfyUI-productfix", + "reference": "https://github.com/MiddleKD/ComfyUI-productfix", + "files": [ + "https://github.com/MiddleKD/ComfyUI-productfix" + ], + "install_type": "git-clone", + "description": "This is a ComfyUI custom node that helps generate images while preserving the text, logos, and details of e-commerce products." + }, + { + "author": "chrisdreid", + "title": "NX_HuggingFace_Flux", + "reference": "https://github.com/Franck-Demongin/NX_HuggingFace_Flux", + "files": [ + "https://github.com/Franck-Demongin/NX_HuggingFace_Flux" + ], + "install_type": "git-clone", + "description": "Nodes:Hugging Face Flux" + }, + { + "author": "Jjulianadv", + "title": "Wild Divide", + "reference": "https://github.com/Julian-adv/WildDivide", + "files": [ + "https://github.com/Julian-adv/WildDivide" + ], + "install_type": "git-clone", + "description": "This extension provides the ability to build prompts using wildcards for each region of a split image." + }, + { + "author": "smthemex", + "title": "ComfyUI_FoleyCrafter", + "id": "comfyui_foleycrafter", + "reference": "https://github.com/smthemex/ComfyUI_FoleyCrafter", + "files": [ + "https://github.com/smthemex/ComfyUI_FoleyCrafter" + ], + "install_type": "git-clone", + "description": "FoleyCrafter is a video-to-audio generation framework which can produce realistic sound effects semantically relevant and synchronized with videos." + }, + { + "author": "goburiin", + "title": "nsfwrecog-comfyui", + "reference": "https://github.com/goburiin/nsfwrecog-comfyui", + "files": [ + "https://github.com/goburiin/nsfwrecog-comfyui" + ], + "install_type": "git-clone", + "description": "Nodes:NSFW Detector" + }, + + { + "author": "shiimizu", + "title": "Semantic-aware Guidance (S-CFG)", + "id": "s-cfg", + "reference": "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance", + "files": [ + "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance" + ], + "install_type": "git-clone", + "description": "ComfyUI node for Semantic-aware Guidance based on the [a/paper](https://arxiv.org/abs/2404.05384) 'Rethinking the Spatial Inconsistency in Classifier-Free Diffusion Guidance'" + }, + { + "author": "smlbiobot", + "title": "ComfyUI-Flux-Replicate-API", + "id": "replicate-api", + "reference": "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API", + "files": [ + "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API" + ], + "install_type": "git-clone", + "description": "Flux Pro via Replicate API\nCreate API key at [a/https://replicate.com/account/api-tokens](https://replicate.com/account/api-tokens)\nCopy config.ini.example to config.ini and put the replicate key there." + }, + { + "author": "IuvenisSapiens", + "title": "ComfyUI_MiniCPM-V-2_6-int4", + "id": "minicpm-v-2_6-int4", + "reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4", + "files": [ + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4" + ], + "install_type": "git-clone", + "description": "Implementation of [a/MiniCPM-V-2_6-int4](https://github.com/OpenBMB/MiniCPM-V) by [a/ComfyUI](https://github.com/comfyanonymous/ComfyUI)." + }, + { + "author": "kappa54", + "title": "ComfyUI Usability", + "id": "comfyui_usability", + "reference": "https://github.com/kappa54m/ComfyUI_Usability", + "files": [ + "https://github.com/kappa54m/ComfyUI_Usability" + ], + "install_type": "git-clone", + "description": "Custom nodes intended to improve usability." + }, + { + "author": "mltask", + "title": "MLTask_ComfyUI", + "id": "mltask_comfyui", + "reference": "https://github.com/misterjoessef/MLTask_ComfyUI", + "files": [ + "https://github.com/misterjoessef/MLTask_ComfyUI" + ], + "install_type": "git-clone", + "description": "a set of nodes to help u run ai code using MLTask" + }, + { + "author": "blepping", + "title": "comfyui_overly_complicated_sampling", + "reference": "https://github.com/blepping/comfyui_overly_complicated_sampling", + "files": [ + "https://github.com/blepping/comfyui_overly_complicated_sampling" + ], + "install_type": "git-clone", + "description": "Experimental and mathematically unsound (but fun!) sampling for ComfyUI.\nFeel free create a question in Discussions for usage help: OCS Q&A Discussion[w/Status: In flux, may be useful but likely to change/break workflows frequently. Mainly for advanced users.]" + }, + { + "author": "leeguandong", + "title": "ComfyUI_LLaSM", + "reference": "https://github.com/leeguandong/ComfyUI_LLaSM", + "files": [ + "https://github.com/leeguandong/ComfyUI_LLaSM" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/LLaSM](https://huggingface.co/spaces/LinkSoul/LLaSM)" + }, + { + "author": "leeguandong", + "title": "ComfyUI_InternVL2", + "reference": "https://github.com/leeguandong/ComfyUI_InternVL2", + "files": [ + "https://github.com/leeguandong/ComfyUI_InternVL2" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/InternVL](https://github.com/OpenGVLab/InternVL)" + }, + { + "author": "SEkINVR", + "title": "ComfyUI-Animator", + "reference": "https://github.com/SEkINVR/ComfyUI-Animator", + "files": [ + "https://github.com/SEkINVR/ComfyUI-Animator" + ], + "install_type": "git-clone", + "description": "This custom node for ComfyUI provides full-body animation capabilities, including facial rigging, various lighting styles, and green screen output." + }, + { + "author": "NeuralSamurAI", + "title": "PromptJSON Node for ComfyUI", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON" + ], + "install_type": "git-clone", + "description": "PromptJSON is a custom node for ComfyUI that structures natural language prompts and generates prompts for external LLM nodes in image generation workflows. It aids in creating consistent, schema-based image descriptions." + }, + { + "author": "leeguandong", + "title": "ComfyUI_M3Net", + "reference": "https://github.com/leeguandong/ComfyUI_M3Net", + "files": [ + "https://github.com/leeguandong/ComfyUI_M3Net" + ], + "install_type": "git-clone", + "description": "ComfyUI for [a/M3Net](https://github.com/I2-Multimedia-Lab/M3Net)" + }, + { + "author": "al-swaiti", + "title": "GeminiOllama ComfyUI Extension", + "reference": "https://github.com/al-swaiti/ComfyUI-OllamaGemini", + "files": [ + "https://github.com/al-swaiti/ComfyUI-OllamaGemini" + ], + "install_type": "git-clone", + "description": "This extension integrates Google's Gemini API and Ollama into ComfyUI, allowing users to leverage these powerful language models directly within their ComfyUI workflows." + }, + { + "author": "lenskikh", + "title": "Propmt Worker", + "reference": "https://github.com/lenskikh/ComfyUI-Prompt-Worker", + "files": [ + "https://github.com/lenskikh/ComfyUI-Prompt-Worker" + ], + "install_type": "git-clone", + "description": "Node:Prompt Worker. A text manipulation node for postprocessing of prompt." + }, + { + "author": "SeniorPioner", + "title": "SP-Nodes", + "id": "spnodes", + "reference": "https://github.com/bananasss00/ComfyUI-SP-Nodes", + "files": [ + "https://github.com/bananasss00/ComfyUI-SP-Nodes" + ], + "install_type": "git-clone", + "description": "Node Pack: PromptChecker for token toggling, KoboldCPP API, ModelMerging, Telegram-Bot-API, and more" + }, + { + "author": "AIFSH", + "title": "DHLive-ComfyUI", + "id": "dhlive", + "reference": "https://github.com/AIFSH/DHLive-ComfyUI", + "files": [ + "https://github.com/AIFSH/DHLive-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/DH_live](https://github.com/kleinlee/DH_live)" + }, + { + "author": "NeuralSamurAI", + "title": "Dimensional Latent Perlin for ComfyUI", + "reference": "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin", + "files": [ + "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin" + ], + "install_type": "git-clone", + "description": "Dimensional Latent Perlin is a custom node for ComfyUI that generates Perlin noise in the latent space. This node is designed to work seamlessly with various diffusion models and can be used as an alternative or complement to standard random noise generators in image generation pipelines." + }, + { + "author": "Dobidop", + "title": "Dobidop ComfyStereo", + "id": "simple-stereoscopic", + "reference": "https://github.com/Dobidop/ComfyStereo", + "files": [ + "https://github.com/Dobidop/ComfyStereo" + ], + "install_type": "git-clone", + "description": "Two simple nodes for stereoscopic image generation. Nodes: Stereo Image Node - a basic port from the Automatic1111 stereo script in thygate/stable-diffusion-webui-depthmap-script, LazyStereo - a naïve stereo image generator" + }, + { + "author": "caleboleary", + "title": "Arc2Face ComfyUI Node Library", + "reference": "https://github.com/caleboleary/ComfyUI-Arc2Face", + "files": [ + "https://github.com/caleboleary/ComfyUI-Arc2Face" + ], + "install_type": "git-clone", + "description": "This ComfyUI node library builds upon the work done to train the [a/Arc2Face](https://github.com/foivospar/Arc2Face) model by foivospar. It provides a set of nodes for ComfyUI that allow users to extract face embeddings, generate images based on these embeddings, and perform image-to-image transformations." + }, + { + "author": "NMWave", + "title": "Image Captioning and Tagging Assistor Nodes", + "id": "naderimagecaptionandtag", + "reference": "https://github.com/NMWave/ComfyUI-Nader-Tagging", + "files": [ + "https://github.com/NMWave/ComfyUI-Nader-Tagging" + ], + "install_type": "git-clone", + "description": "A small set of useful nodes which aid with the tagging process by splitting tags and strings, alternating tags from multiple sources and removing duplicates." + }, + { + "author": "alpertunga-bile", + "title": "image-caption-comfyui", + "reference": "https://github.com/alpertunga-bile/image-caption-comfyui", + "files": [ + "https://github.com/alpertunga-bile/image-caption-comfyui" + ], + "install_type": "git-clone", + "description": "Image caption node for ComfyUI. You can load your image caption model and generate prompts with the given picture. Insert prompt node is added here to help the users to add their prompts easily." + }, + { + "author": "GeekyGhost", + "title": "ComfyUI-GeekyRemB", + "reference": "https://github.com/GeekyGhost/ComfyUI-GeekyRemB", + "files": [ + "https://github.com/GeekyGhost/ComfyUI-GeekyRemB" + ], + "install_type": "git-clone", + "description": "GeekyRemB is a powerful and versatile image processing node for ComfyUI, designed to remove backgrounds from images with advanced customization options. This node leverages the rembg library and offers a wide range of features for fine-tuning the background removal process and enhancing the resulting images." + }, + { + "author": "AIFSH", + "title": "AniTalker-ComfyUI", + "id": "anitalker", + "reference": "https://github.com/AIFSH/AniTalker-ComfyUI", + "files": [ + "https://github.com/AIFSH/AniTalker-ComfyUI" + ], + "install_type": "git-clone", + "description": "a comfyui custom node for [a/AniTalker](https://github.com/X-LANCE/AniTalker)" } ] } diff --git a/node_db/new/extension-node-map.json b/node_db/new/extension-node-map.json index 9c21addc..d51a9b9d 100644 --- a/node_db/new/extension-node-map.json +++ b/node_db/new/extension-node-map.json @@ -9,15 +9,6 @@ "title_aux": "alkemann nodes" } ], - "https://git.mmaker.moe/mmaker/sd-webui-color-enhance": [ - [ - "MMakerColorBlend", - "MMakerColorEnhance" - ], - { - "title_aux": "Color Enhance" - } - ], "https://github.com/0xbitches/ComfyUI-LCM": [ [ "LCM_Sampler", @@ -37,14 +28,6 @@ "title_aux": "ComfyUI-GPT2P" } ], - "https://github.com/1038lab/ComfyUI_LatentSizeSelector": [ - [ - "LatentSizeSelector" - ], - { - "title_aux": "ComfyUI-latentSizeSelector" - } - ], "https://github.com/11dogzi/ComfUI-EGAdapterMadAssistant": [ [ "EGIPAdapter_Mad_Assistant", @@ -52,7 +35,8 @@ "EGIPAdapter_Mad_AssistantV2", "EGIPAdapter_Mad_AssistantV3", "EGIPAdapter_Mad_AssistantV4", - "EGIPAdapter_Mad_AssistantV5" + "EGIPAdapter_Mad_AssistantV5", + "EGIPAdapter_Mad_AssistantV6" ], { "title_aux": "ComfUI-EGAdapterMadAssistant" @@ -112,6 +96,21 @@ "title_aux": "Comfyui-ergouzi-Nodes" } ], + "https://github.com/11dogzi/Comfyui-ergouzi-kaiguan": [ + [ + "ALLty", + "EGRYDZQHNode", + "GroupSwitchNode", + "GroupSwitchNodee", + "GroupSwitchNodeee", + "GroupSwitchNodeeee", + "hulue", + "jinyong" + ], + { + "title_aux": "Comfyui-ergouzi-kaiguan" + } + ], "https://github.com/11dogzi/Comfyui-ergouzi-samplers": [ [ "EGBYZZCYQ", @@ -246,6 +245,8 @@ "cam-pos-bus", "mesh_data_bus", "mesh_remap_cubvh", + "ply_load", + "ply_normalize", "show_any", "string-to-array", "vc_to_texture" @@ -293,6 +294,15 @@ "title_aux": "Image-vector-for-ComfyUI" } ], + "https://github.com/AIFSH/AniTalker-ComfyUI": [ + [ + "AniTalkerNode", + "PreViewVideo" + ], + { + "title_aux": "AniTalker-ComfyUI" + } + ], "https://github.com/AIFSH/ComfyUI-3d-photo-inpainting": [ [ "LoadImagePath", @@ -513,6 +523,17 @@ "title_aux": "CosyVoice-ComfyUI" } ], + "https://github.com/AIFSH/DHLive-ComfyUI": [ + [ + "DHLiveNode", + "LoadVideo", + "PreViewVideo", + "StaticVideo" + ], + { + "title_aux": "DHLive-ComfyUI" + } + ], "https://github.com/AIFSH/DiffMorpher-ComfyUI": [ [ "DiffMorpherNode", @@ -523,6 +544,22 @@ "title_aux": "DiffMorpher-ComfyUI" } ], + "https://github.com/AIFSH/GSTTS-ComfyUI": [ + [ + "ASRNode", + "AudioSlicerNode", + "ConfigGPTNode", + "ConfigSoVITSNode", + "DatasetNode", + "ExperienceNode", + "GSFinetuneNone", + "GSVTTSNode", + "TextDictNode" + ], + { + "title_aux": "GSTTS-ComfyUI" + } + ], "https://github.com/AIFSH/SenseVoice-ComfyUI": [ [ "SenseVoiceNode", @@ -532,6 +569,15 @@ "title_aux": "SenseVoice-ComfyUI" } ], + "https://github.com/AIFSH/StyleShot-ComfyUI": [ + [ + "StyleShotNode", + "TextNode" + ], + { + "title_aux": "StyleShot-ComfyUI" + } + ], "https://github.com/AIFSH/VocalSeparation-ComfyUI": [ [ "VocalSeparationNode" @@ -650,7 +696,7 @@ "CleanFileNameNode" ], { - "title_aux": "APZmedia Clean File Name Node" + "title_aux": "APZmedia Clean Name" } ], "https://github.com/Aaron-CHM/ComfyUI-z-a1111-sd-webui-DanTagGen": [ @@ -753,7 +799,8 @@ "ETN_MergeImageTile", "ETN_NSFWFilter", "ETN_SendImageWebSocket", - "ETN_TileLayout" + "ETN_TileLayout", + "ETN_Translate" ], { "title_aux": "ComfyUI Nodes for External Tooling" @@ -809,8 +856,18 @@ "FILTER MASK (JOV) \ud83e\udd3f", "FLATTEN (JOV) \u2b07\ufe0f", "GLSL (JOV) \ud83c\udf69", + "GLSL BLEND LINEAR (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL GRAYSCALE (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL HSV-2-LAB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL HSV-2-RGB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL LAB-2-HSV (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL LAB-2-RGB (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL NORMAL (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL RGB-2-HSV (JOV) \ud83e\uddd9\ud83c\udffd", + "GLSL RGB-2-LAB (JOV) \ud83e\uddd9\ud83c\udffd", "GRADIENT MAP (JOV) \ud83c\uddf2\ud83c\uddfa", "GRAPH (JOV) \ud83d\udcc8", + "IMAGE INFO (JOV) \ud83d\udcda", "LERP (JOV) \ud83d\udd30", "MIDI FILTER (JOV) \u2733\ufe0f", "MIDI FILTER EZ (JOV) \u2747\ufe0f", @@ -848,6 +905,16 @@ "title_aux": "Jovimetrix Composition Nodes" } ], + "https://github.com/Anibaaal/ComfyUI-UX-Nodes": [ + [ + "DenoiseCalculator", + "EasyResolutionPicker", + "StepCalculator" + ], + { + "title_aux": "ComfyUI UX Nodes" + } + ], "https://github.com/AonekoSS/ComfyUI-LoRA-Tuner": [ [ "LoraTuner" @@ -1151,6 +1218,7 @@ "ComfyUIDeployExternalNumberInt", "ComfyUIDeployExternalNumberSlider", "ComfyUIDeployExternalText", + "ComfyUIDeployExternalTextList", "ComfyUIDeployExternalVid", "ComfyUIDeployExternalVideo" ], @@ -1164,12 +1232,24 @@ ], "https://github.com/BetaDoggo/ComfyUI-VideoPlayer": [ [ - "LoadFrame" + "AllInOnePlayer", + "ImageToEmoji", + "LoadFrame", + "LoadJPGFrame", + "LoadVideoFrame" ], { "title_aux": "ComfyUI Video Player" } ], + "https://github.com/BetaDoggo/ComfyUI-WDV-Nodes": [ + [ + "ModelSamplingWaifuDiffusionV" + ], + { + "title_aux": "neggles/ComfyUI-WDV-Nodes [gist-wrapper]" + } + ], "https://github.com/BetaDoggo/ComfyUI-YetAnotherSafetyChecker": [ [ "YetAnotherSafetyChecker" @@ -1384,6 +1464,15 @@ "title_aux": "ComfyUI_Ib_CustomNodes" } ], + "https://github.com/ChrisColeTech/ComfyUI-Line-counter": [ + [ + "DirectoryFileCounter", + "TextFileLineCounter" + ], + { + "title_aux": "ComfyUI-Line-counter" + } + ], "https://github.com/Clybius/ComfyUI-Extra-Samplers": [ [ "GeometricCFGGuider", @@ -1483,6 +1572,18 @@ "title_aux": "Primere nodes for ComfyUI" } ], + "https://github.com/Cyber-Blacat/ComfyUI-Yuan": [ + [ + "Image Judgment", + "ImageMinusMask", + "Yuan", + "Yuan Transfer", + "YuanBW" + ], + { + "title_aux": "ComfyUI-Yuan" + } + ], "https://github.com/Cyberschorsch/ComfyUI-checkpoint-config-loader": [ [ "Checkpoint Loader Config" @@ -1551,6 +1652,15 @@ "title_aux": "Derfuu_ComfyUI_ModdedNodes" } ], + "https://github.com/Dobidop/ComfyStereo": [ + [ + "LazyStereo", + "StereoImageNode" + ], + { + "title_aux": "Dobidop ComfyStereo" + } + ], "https://github.com/DonBaronFactory/ComfyUI-Cre8it-Nodes": [ [ "ApplySerialPrompter", @@ -1614,6 +1724,14 @@ "title_aux": "ComfyUI-post-processing-nodes" } ], + "https://github.com/EnragedAntelope/ComfyUI-Doubutsu-Describer": [ + [ + "DoubutsuDescriber" + ], + { + "title_aux": "ComfyUI-Doubutsu-Describer" + } + ], "https://github.com/Excidos/ComfyUI-Documents": [ [ "ChunkRouter", @@ -1627,6 +1745,14 @@ "title_aux": "ComfyUI-Documents" } ], + "https://github.com/Excidos/ComfyUI-Lumina-Next-SFT-DiffusersWrapper": [ + [ + "LuminaDiffusersNode" + ], + { + "title_aux": "ComfyUI-Lumina-Next-SFT-DiffusersWrapper" + } + ], "https://github.com/ExponentialML/ComfyUI_ModelScopeT2V": [ [ "ModelScopeT2VLoader" @@ -1684,6 +1810,17 @@ "title_aux": "LoadLoraWithTags" } ], + "https://github.com/Extraltodeus/Skimmed_CFG": [ + [ + "Skimmed CFG", + "Skimmed CFG - linear interpolation", + "Skimmed CFG - linear interpolation dual scales", + "Skimmed CFG - replace" + ], + { + "title_aux": "Skimmed_CFG" + } + ], "https://github.com/Extraltodeus/Stable-Diffusion-temperature-settings": [ [ "CLIP Temperature", @@ -1718,37 +1855,13 @@ ], "https://github.com/Extraltodeus/noise_latent_perlinpinpin": [ [ - "NoisyLatentPerlin" + "NoisyLatentPerlin", + "NoisyLatentPerlin16ch" ], { "title_aux": "noise latent perlinpinpin" } ], - "https://github.com/Extraltodeus/pre_cfg_comfy_nodes_for_ComfyUI": [ - [ - "Conditioning set timestep from sigma", - "Individual channel selector", - "Post CFG make a dot", - "Post CFG subtract mean", - "Pre CFG PAG", - "Pre CFG automatic scale", - "Pre CFG channel multiplier", - "Pre CFG color control", - "Pre CFG consensus sharpening", - "Pre CFG exponentiation", - "Pre CFG perp-neg", - "Pre CFG sharpening", - "Pre CFG subtract mean", - "Pre CFG uncond zero", - "Pre CFG variable scaling", - "Pre CFG zero attention", - "Shape attention", - "Support empty uncond" - ], - { - "title_aux": "pre_cfg_comfy_nodes_for_ComfyUI" - } - ], "https://github.com/Extraltodeus/sigmas_tools_and_the_golden_scheduler": [ [ "Aligned Scheduler", @@ -2180,6 +2293,14 @@ "title_aux": "ComfyUI-Mana-Nodes" } ], + "https://github.com/Franck-Demongin/NX_HuggingFace_Flux": [ + [ + "HFFlux" + ], + { + "title_aux": "NX_HuggingFace_Flux" + } + ], "https://github.com/Franck-Demongin/NX_PromptStyler": [ [ "NX_PromptStyler" @@ -2188,22 +2309,94 @@ "title_aux": "NX_PromptStyler" } ], + "https://github.com/Franck-Demongin/NX_Translator": [ + [ + "Nx_Translator" + ], + { + "title_aux": "NX_Translator" + } + ], + "https://github.com/FuouM/ComfyUI-EbSynth": [ + [ + "ES_Guides7", + "ES_Translate", + "ES_VideoTransfer", + "ES_VideoTransferExtra" + ], + { + "author": "Fuou Marinas", + "description": "Run EbSynth in ComfyUI.", + "nickname": "EbSynth", + "title": "ComfyUI-EbSynth", + "title_aux": "ComfyUI-EbSynth" + } + ], "https://github.com/FuouM/ComfyUI-FirstOrderMM": [ [ + "Articulate_Runner", "FOMM_Partswap", "FOMM_Runner", "FOMM_Seg10Chooser", "FOMM_Seg15Chooser", - "FOMM_Seg5Chooser" + "FOMM_Seg5Chooser", + "FSRT_Runner", + "MRFA_Runner", + "Spline_Runner" ], { "author": "Fuou Marinas", - "description": "Run First Order Motion Model for Image Animation in ComfyUI.", + "description": "ComfyUI-native nodes to run First Order Motion Model for Image Animation and its non-diffusion-based successors.", "nickname": "FOMM", "title": "ComfyUI-FirstOrderMM", "title_aux": "ComfyUI-FirstOrderMM" } ], + "https://github.com/FuouM/ComfyUI-StyleTransferPlus": [ + [ + "AESFA", + "AesFAStyleBlend", + "AesPA", + "CAST", + "CoralColorTransfer", + "EFDM", + "MicroAST", + "NeuralNeighbor", + "TSSAT", + "UniST", + "UniST_Video" + ], + { + "author": "ZJU", + "description": "A collection of style transfer nodes.", + "nickname": "StyleTransferPlus", + "title": "ComfyUI-StyleTransferPlus", + "title_aux": "ComfyUI-StyleTransferPlus" + } + ], + "https://github.com/FuouM/FM_nodes": [ + [ + "CoLIE_LowLight_Enhance", + "ConvIR_DeHaze", + "ConvIR_DeRain", + "ConvIR_DeSnow", + "ConvIR_DefocusDeblur", + "ConvIR_MotionDeBlur", + "ProPIH_Harmonizer", + "RealViFormerSR", + "StabStitch", + "StabStitch_Crop_Resize", + "StabStitch_Stabilize", + "WFEN" + ], + { + "author": "Fuou Marinas", + "description": "A collection of nodes.", + "nickname": "FM_nodes", + "title": "FM Nodes", + "title_aux": "FM_nodes" + } + ], "https://github.com/G-370/ComfyUI-SD3-Powerlab": [ [ "G370SD3PowerLab_AttentionToImage", @@ -2259,6 +2452,14 @@ "title_aux": "ComfyUI-SD3LatentSelectRes" } ], + "https://github.com/GeekyGhost/ComfyUI-GeekyRemB": [ + [ + "GeekyRemB" + ], + { + "title_aux": "ComfyUI-GeekyRemB" + } + ], "https://github.com/GentlemanHu/ComfyUI-SunoAI": [ [ "GentlemanHu_SunoAI", @@ -2408,7 +2609,7 @@ "Recenter XL" ], { - "title_aux": "ComfyUI Diffusion Color Grading" + "title_aux": "Diffusion CG" } ], "https://github.com/Haoming02/comfyui-floodgate": [ @@ -2416,7 +2617,7 @@ "FloodGate" ], { - "title_aux": "ComfyUI Floodgate" + "title_aux": "Floodgate" } ], "https://github.com/Haoming02/comfyui-resharpen": [ @@ -2435,6 +2636,18 @@ "title_aux": "ComfyUI Better Strings" } ], + "https://github.com/HeadshotPro/ComfyUI-HeadshotPro": [ + [ + "[HSP] Download Dreambooth Checkpoint", + "[HSP] Download Flux Lora", + "[HSP] Get Random Value From List", + "[HSP] Load Canny Pose Face", + "[HSP] Transparent to White Background" + ], + { + "title_aux": "ComfyUI-HeadshotPro" + } + ], "https://github.com/HebelHuber/comfyui-enhanced-save-node": [ [ "EnhancedSaveNode" @@ -2443,6 +2656,15 @@ "title_aux": "comfyui-enhanced-save-node" } ], + "https://github.com/Hellrunner2k/ComfyUI-HellrunnersMagicalNodes": [ + [ + "MagicalSaveNode", + "ThermalLatenator" + ], + { + "title_aux": "Hellrunner's Magical Nodes" + } + ], "https://github.com/Hiero207/ComfyUI-Hiero-Nodes": [ [ "Load Prompt Travel file", @@ -2554,6 +2776,26 @@ "title_aux": "ComfyUI-Stereopsis" } ], + "https://github.com/Isi-dev/ComfyUI-UniAnimate-W": [ + [ + "Gen_align_pose", + "UniAnimateImage" + ], + { + "title_aux": "UniAnimate Nodes for ComfyUI" + } + ], + "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4": [ + [ + "DisplayText", + "LoadVideo", + "MiniCPM_VQA", + "PreViewVideo" + ], + { + "title_aux": "ComfyUI_MiniCPM-V-2_6-int4" + } + ], "https://github.com/JPS-GER/ComfyUI_JPS-Nodes": [ [ "CLIPTextEncode SDXL Plus (JPS)", @@ -2677,6 +2919,7 @@ "JNodes_BooleanSelectorWithString", "JNodes_BreakMediaInfo", "JNodes_CheckpointSelectorWithString", + "JNodes_ConditioningInOut", "JNodes_CreateStereoscopicImageFromDepth", "JNodes_FloatLiteral", "JNodes_GetComfyDirectory", @@ -2692,6 +2935,7 @@ "JNodes_LoadVisualMediaFromPath_Batch", "JNodes_LoraExtractor", "JNodes_MediaInfoToString", + "JNodes_ModelInOut", "JNodes_OutVideoInfo", "JNodes_ParseDynamicPrompts", "JNodes_ParseParametersToGlobalList", @@ -2708,11 +2952,11 @@ "JNodes_SearchAndReplaceFromFile", "JNodes_SearchAndReplaceFromList", "JNodes_SelectRandomFileFromDirectory", - "JNodes_SetMetadataA1111", "JNodes_SetNegativePromptInMetaData", "JNodes_SetPositivePromptInMetaData", "JNodes_SplitAndJoin", "JNodes_StringLiteral", + "JNodes_SubdirectorySelector", "JNodes_SyncedStringLiteral", "JNodes_TokenCounter", "JNodes_TrimAndStrip", @@ -2726,9 +2970,11 @@ ], "https://github.com/JayLyu/ComfyUI_BaiKong_Node": [ [ + "BK_ColorContrast", "BK_ColorLimit", "BK_ColorSelector", "BK_GradientImage", + "BK_ImageFilterByAspectRatio", "BK_Img2Color" ], { @@ -2806,6 +3052,30 @@ "title_aux": "comfy-plasma" } ], + "https://github.com/JosefKuchar/ComfyUI-AdvancedTiling": [ + [ + "AdvancedTiling", + "AdvancedTilingSettings", + "AdvancedTilingVAEDecode" + ], + { + "title_aux": "ComfyUI-AdvancedTiling" + } + ], + "https://github.com/Julian-adv/WildDivide": [ + [ + "Attention couple", + "Comfy Divide", + "WildcardEncode" + ], + { + "author": "Julian Adventurer.", + "description": "This node is used to encode a wildcard string.", + "nickname": "WildDivide", + "title": "Wild Divide", + "title_aux": "Wild Divide" + } + ], "https://github.com/Kangkang625/ComfyUI-paint-by-example": [ [ "PaintbyExamplePipeLoader", @@ -2929,6 +3199,20 @@ "ADE_ConditioningSetMask", "ADE_ConditioningSetMaskAndCombine", "ADE_ConditioningSetUnmaskedAndCombine", + "ADE_ContextExtras_ContextRef", + "ADE_ContextExtras_ContextRef_Keyframe", + "ADE_ContextExtras_ContextRef_KeyframeFromList", + "ADE_ContextExtras_ContextRef_KeyframeInterpolation", + "ADE_ContextExtras_ContextRef_ModeFirst", + "ADE_ContextExtras_ContextRef_ModeIndexes", + "ADE_ContextExtras_ContextRef_ModeSliding", + "ADE_ContextExtras_ContextRef_TuneAttn", + "ADE_ContextExtras_ContextRef_TuneAttnAdain", + "ADE_ContextExtras_NaiveReuse", + "ADE_ContextExtras_NaiveReuse_Keyframe", + "ADE_ContextExtras_NaiveReuse_KeyframeFromList", + "ADE_ContextExtras_NaiveReuse_KeyframeInterpolation", + "ADE_ContextExtras_Set", "ADE_CustomCFG", "ADE_CustomCFGKeyframe", "ADE_CustomCFGKeyframeFromList", @@ -2955,6 +3239,7 @@ "ADE_MultivalConvertToMask", "ADE_MultivalDynamic", "ADE_MultivalDynamicFloatInput", + "ADE_MultivalDynamicFloats", "ADE_MultivalScaledMask", "ADE_NoiseLayerAdd", "ADE_NoiseLayerAddWeighted", @@ -3146,6 +3431,15 @@ "title_aux": "ComfyUI-Diffusers" } ], + "https://github.com/Ling-APE/ComfyUI-PixelResolutionCalculator": [ + [ + "LatentSizeToPixelSize", + "PixelResolutionCalculator" + ], + { + "title_aux": "ComfyUI-PixelResolutionCalculator" + } + ], "https://github.com/Loewen-Hob/rembg-comfyui-node-better": [ [ "Image Remove Background (rembg)" @@ -3297,6 +3591,15 @@ "title_aux": "ComfyUI-promptLAB" } ], + "https://github.com/MakkiShizu/comfyui_reimgsize": [ + [ + "Cropimg", + "Resize" + ], + { + "title_aux": "comfyui_reimgsize" + } + ], "https://github.com/Mamaaaamooooo/batchImg-rembg-ComfyUI-nodes": [ [ "Image Remove Background (rembg)" @@ -3407,6 +3710,33 @@ "title_aux": "Mosaica" } ], + "https://github.com/MiddleKD/ComfyUI-mem-safe-wrapper": [ + [ + "MakeModelMemorySafe-safewrapper", + "ResetModelPatcher-safewrapper", + "SimpleDummyModel-safewrapper", + "SimpleDummyRun-safewrapper" + ], + { + "title_aux": "ComfyUI-mem-safe-wrapper" + } + ], + "https://github.com/MiddleKD/ComfyUI-productfix": [ + [ + "ApplyLatentInjection", + "DetailTransferAdd", + "DetailTransferLatentAdd", + "DynamicImageResize", + "GetTextMask", + "ResetModelPatcherCalculateWeight", + "VQDecoder", + "VQEncoder", + "VQLoader" + ], + { + "title_aux": "ComfyUI-productfix" + } + ], "https://github.com/MilitantHitchhiker/MilitantHitchhiker-SwitchbladePack": [ [ "IntegratedRandomPromptGenerator", @@ -3420,45 +3750,12 @@ "title_aux": "Militant Hitchhiker's Switchblade Pack" } ], - "https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ": [ + "https://github.com/Mintbeer96/ComfyUI-KerasOCR": [ [ - "IPAAdapterFaceIDBatch", - "IPAdapter", - "IPAdapterAdvanced", - "IPAdapterBatch", - "IPAdapterCombineEmbeds", - "IPAdapterCombineParams", - "IPAdapterCombineWeights", - "IPAdapterEmbeds", - "IPAdapterEmbedsBatch", - "IPAdapterEncoder", - "IPAdapterFaceID", - "IPAdapterFromParams", - "IPAdapterInsightFaceLoader", - "IPAdapterLoadEmbeds", - "IPAdapterMS", - "IPAdapterModelLoader", - "IPAdapterNoise", - "IPAdapterPreciseComposition", - "IPAdapterPreciseCompositionBatch", - "IPAdapterPreciseStyleTransfer", - "IPAdapterPreciseStyleTransferBatch", - "IPAdapterPromptScheduleFromWeightsStrategy", - "IPAdapterRegionalConditioning", - "IPAdapterSaveEmbeds", - "IPAdapterStyleComposition", - "IPAdapterStyleCompositionBatch", - "IPAdapterTiled", - "IPAdapterTiledBatch", - "IPAdapterUnifiedLoader", - "IPAdapterUnifiedLoaderCommunity", - "IPAdapterUnifiedLoaderFaceID", - "IPAdapterWeights", - "IPAdapterWeightsFromStrategy", - "PrepImageForClipVision" + "KerasOCR" ], { - "title_aux": "ComfyUI-Kolors-MZ" + "title_aux": "ComfyUI-KerasOCR" } ], "https://github.com/Miosp/ComfyUI-FBCNN": [ @@ -3480,6 +3777,16 @@ "title_aux": "ComfyUI Slothful Attention" } ], + "https://github.com/MohammadAboulEla/ComfyUI-iTools": [ + [ + "iToolsLoadImagePlus", + "iToolsPromptLoader", + "iToolsPromptSaver" + ], + { + "title_aux": "ComfyUI-iTools" + } + ], "https://github.com/MokkaBoss1/ComfyUI_Mokkaboss1": [ [ "AnimeCosplayDir", @@ -3582,6 +3889,25 @@ "title_aux": "ComfyUI-TextOverlay" } ], + "https://github.com/MushroomFleet/DJZ-Nodes": [ + [ + "AspectSize", + "AspectSizeV2" + ], + { + "title_aux": "DJZ-Nodes" + } + ], + "https://github.com/MuziekMagie/ComfyUI-Matchering": [ + [ + "Matchering", + "MatcheringAdvanced", + "MatcheringLimiterConfig" + ], + { + "title_aux": "ComfyUI-Matchering" + } + ], "https://github.com/N3rd00d/ComfyUI-Paint3D-Nodes": [ [ "3D_GenerateDepthImage", @@ -3598,6 +3924,43 @@ "title_aux": "ComfyUI-Paint3D-Nodes" } ], + "https://github.com/NMWave/ComfyUI-Nader-Tagging": [ + [ + "Load Text List", + "Split Sentences", + "Split Tags", + "Tag Alternating Combiner", + "Tag Duplicate Remover", + "Token Counter" + ], + { + "title_aux": "Image Captioning and Tagging Assistor Nodes" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-Dimensional-Latent-Perlin": [ + [ + "NoisyLatentPerlinD" + ], + { + "title_aux": "Dimensional Latent Perlin for ComfyUI" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-FluxPseudoNegativePrompt": [ + [ + "FluxPseudoNegativeNode" + ], + { + "title_aux": "FluxPseudoNegative" + } + ], + "https://github.com/NeuralSamurAI/ComfyUI-PromptJSON": [ + [ + "PromptJSON" + ], + { + "title_aux": "PromptJSON Node for ComfyUI" + } + ], "https://github.com/NeuralSamurAI/Comfyui-Superprompt-Unofficial": [ [ "SuperPrompterNode" @@ -3833,6 +4196,18 @@ "title_aux": "QRNG_Node_ComfyUI" } ], + "https://github.com/OuticNZ/ComfyUI-Simple-Of-Complex": [ + [ + "Pipe From Parameters", + "Pipe To Parameters", + "Prompt Tidy", + "Text Switch 2 Way", + "Text With Context" + ], + { + "title_aux": "ComfyUI-Simple-Of-Complex" + } + ], "https://github.com/PCMonsterx/ComfyUI-CSV-Loader": [ [ "Load Artists CSV", @@ -3850,6 +4225,14 @@ "title_aux": "ComfyUI-CSV-Loader" } ], + "https://github.com/Parameshvadivel/ComfyUI-SVGview": [ + [ + "SVGPreview" + ], + { + "title_aux": "ComfyUI-SVGview" + } + ], "https://github.com/ParisNeo/lollms_nodes_suite": [ [ "Artbot", @@ -3884,6 +4267,14 @@ "title_aux": "pfaeff-comfyui" } ], + "https://github.com/Pheat-AI/Remade_nodes": [ + [ + "Batch Image Blend by Mask" + ], + { + "title_aux": "Remade_nodes" + } + ], "https://github.com/PnthrLeo/comfyUI-image-search": [ [ "CloseImagesSearcher" @@ -3925,6 +4316,19 @@ "title_aux": "Cyclist" } ], + "https://github.com/PowerHouseMan/ComfyUI-AdvancedLivePortrait": [ + [ + "AdvancedLivePortrait", + "ExpData", + "ExpressionEditor", + "LoadExpData", + "PrintExpData:", + "SaveExpData" + ], + { + "title_aux": "ComfyUI-AdvancedLivePortrait" + } + ], "https://github.com/QaisMalkawi/ComfyUI-QaisHelper": [ [ "Bool Binary Operation", @@ -3939,6 +4343,14 @@ "title_aux": "ComfyUI-Qais-Helper" } ], + "https://github.com/Raapys/ComfyUI-LatentGC_Aggressive": [ + [ + "LatentGC" + ], + { + "title_aux": "LatentGC Aggressive" + } + ], "https://github.com/RedRayz/ComfyUI-Danbooru-To-WD": [ [ "DanbooruToWD" @@ -4049,6 +4461,14 @@ "title_aux": "comfyui_io_helpers" } ], + "https://github.com/SEkINVR/ComfyUI-Animator": [ + [ + "Animator" + ], + { + "title_aux": "ComfyUI-Animator" + } + ], "https://github.com/SEkINVR/ComfyUI-SaveAs": [ [ "ComfyUISaveAs" @@ -4131,12 +4551,14 @@ ], "https://github.com/SayanoAI/Comfy-RVC": [ [ + "Any2ListNode", "AudioBatchValueNode", "AudioTranscriptionNode", + "BatchedTranscriptionEncoderNode", "DownloadAudio", "ImageRepeatInterleavedNode", "LatentRepeatInterleavedNode", - "LoadAudio", + "List2AnyNode", "LoadHubertModel", "LoadPitchExtractionParams", "LoadRVCModelNode", @@ -4144,9 +4566,17 @@ "MergeAudioNode", "MergeImageBatches", "MergeLatentBatches", - "PreviewAudio", + "MuseAudioFeatureExtractionNode", + "MuseImageFeatureExtractionNode", + "MuseTalkNode", + "RVC-Studio.LoadAudio", + "RVC-Studio.PreviewAudio", "RVCNode", - "UVR5Node" + "SimpleMathNode", + "SliceNode", + "SortImagesNode", + "UVR5Node", + "ZipNode" ], { "title_aux": "Comfy-RVC" @@ -4521,6 +4951,7 @@ ], "https://github.com/ShmuelRonen/ComfyUI_wav2lip": [ [ + "AudioPath", "Wav2Lip" ], { @@ -4575,6 +5006,14 @@ "title_aux": "comfyui_meme_maker" } ], + "https://github.com/SoftMeng/ComfyUI-DeepCache-Fix": [ + [ + "DeepCache_Fix" + ], + { + "title_aux": "ComfyUI-DeepCache-Fix" + } + ], "https://github.com/SoftMeng/ComfyUI_ImageToText": [ [ "ComfyUI_ImageToText" @@ -4691,6 +5130,15 @@ "title_aux": "ComfyUI_Seg_VITON" } ], + "https://github.com/StartHua/Comfyui_CXH_joy_caption": [ + [ + "Joy_caption", + "Joy_caption_load" + ], + { + "title_aux": "Comfyui_CXH_joy_caption" + } + ], "https://github.com/StartHua/Comfyui_joytag": [ [ "CXH_JoyTag" @@ -4701,7 +5149,8 @@ ], "https://github.com/StartHua/Comfyui_segformer_b2_clothes": [ [ - "segformer_b2_clothes" + "segformer_b2_clothes", + "segformer_b3_fashion" ], { "title_aux": "comfyui_segformer_b2_clothes" @@ -4709,12 +5158,12 @@ ], "https://github.com/SuperBeastsAI/ComfyUI-SuperBeasts": [ [ - "Deflicker (SuperBeasts.AI)", + "Deflicker - Experimental (SuperBeasts.AI)", "HDR Effects (SuperBeasts.AI)", "Image Batch Manager (SuperBeasts.AI)", "Make Resized Mask Batch (SuperBeasts.AI)", "Mask Batch Manager (SuperBeasts.AI)", - "Pixel Deflicker (SuperBeasts.AI)", + "Pixel Deflicker - Experimental (SuperBeasts.AI)", "String List Manager (SuperBeasts.AI)" ], { @@ -5062,6 +5511,7 @@ "tri3d-atr-parse", "tri3d-atr-parse-batch", "tri3d-bgremove-mega", + "tri3d-clean_mask", "tri3d-clear-memory", "tri3d-clipdrop-bgremove-api", "tri3d-clipdrop-bgreplace-api", @@ -5073,6 +5523,7 @@ "tri3d-extract-parts-batch2", "tri3d-extract-parts-mask-batch", "tri3d-extract-pascal-parts-batch", + "tri3d-extract_pose_part", "tri3d-face-recognise", "tri3d-flexible_color_extract", "tri3d-float-to-image", @@ -5101,10 +5552,13 @@ "tri3d-renormalize_array", "tri3d-run_AEMatter_inference", "tri3d-scaled-paste", + "tri3d-scaled-paste_unsafe", "tri3d-simple_bg_swap", "tri3d-simple_rescale_histogram", "tri3d-skin-feathered-padded-mask", - "tri3d-swap-pixels" + "tri3d-swap-pixels", + "tri3d_fill_mask", + "tri3d_position_pose_part" ], { "title_aux": "tri3d-comfyui-nodes" @@ -5323,6 +5777,7 @@ "ttN text7BOX_concat", "ttN textCycleLine", "ttN textDebug", + "ttN textOutput", "ttN tinyLoader", "ttN xyPlot" ], @@ -5427,12 +5882,29 @@ "TripoAPIDraft", "TripoAnimateRetargetNode", "TripoAnimateRigNode", - "TripoGLBViewer" + "TripoGLBViewer", + "TripoRefineModel" ], { "title_aux": "Tripo for ComfyUI" } ], + "https://github.com/Visionatrix/ComfyUI-Visionatrix": [ + [ + "VixUiCheckbox", + "VixUiCheckboxLogic", + "VixUiList", + "VixUiListLogic", + "VixUiPrompt", + "VixUiRangeFloat", + "VixUiRangeInt", + "VixUiRangeScaleFloat", + "VixUiWorkflowMetadata" + ], + { + "title_aux": "ComfyUI-Visionatrix" + } + ], "https://github.com/WASasquatch/ASTERR": [ [ "ASTERR", @@ -5517,6 +5989,7 @@ "Bus Node", "CLIP Input Switch", "CLIP Vision Input Switch", + "CLIPSEG2", "CLIPSeg Batch Masking", "CLIPSeg Masking", "CLIPSeg Model Loader", @@ -5758,6 +6231,18 @@ "title_aux": "ComfyUI Simply Nodes" } ], + "https://github.com/XLabs-AI/x-flux-comfyui": [ + [ + "ApplyFluxControlNet", + "FluxLoraLoader", + "LoadFluxControlNet", + "LoadFluxModel", + "XlabsSampler" + ], + { + "title_aux": "x-flux-comfyui" + } + ], "https://github.com/XmYx/deforum-comfy-nodes": [ [ "DeforumAddNoiseNode", @@ -6126,13 +6611,12 @@ "AmplitudeToGraph", "AmplitudeToNumber", "AudioToAmplitudeGraph", + "AudioToAudioData", "AudioToFFTs", "BatchAmplitudeSchedule", "ClipAmplitude", "FloatArrayToGraph", "GateNormalizedAmplitude", - "LoadAudio", - "LoadVHSAudio", "NormalizeAmplitude", "NormalizedAmplitudeDrivenString", "NormalizedAmplitudeToGraph", @@ -6229,7 +6713,8 @@ ], "https://github.com/adigayung/ComfyUI-Translator": [ [ - "CLIP Text Encode (Auto Translate)" + "CLIP Text Encode (Auto Translate)", + "Prompt Text (Auto Translate)" ], { "title_aux": "ComfyUI-Translator" @@ -6314,6 +6799,25 @@ "title_aux": "LiamUtil (single node)" } ], + "https://github.com/ai-shizuka/ComfyUI-tbox": [ + [ + "AnimalPosePreprocessor", + "ConstrainImageNode", + "DWPosePreprocessor", + "DWPreprocessor", + "DensePosePreprocessor", + "ImageLoader", + "ImageResize", + "ImageSaver", + "ImageSize", + "ImagesSaver", + "MiDaSDepthPreprocessor" + ], + { + "author": "tstandley", + "title_aux": "ComfyUI-tbox" + } + ], "https://github.com/aianimation55/ComfyUI-FatLabels": [ [ "FatLabels" @@ -6322,6 +6826,59 @@ "title_aux": "Comfy UI FatLabels" } ], + "https://github.com/aisabervisionlab/ComfyUI_merge_ASVL": [ + [ + "ASVL" + ], + { + "title_aux": "ComfyUI_merge_ASVL" + } + ], + "https://github.com/akatz-ai/ComfyUI-AKatz-Nodes": [ + [ + "AK_AnimatedDilationMaskLinear", + "AK_AudioreactiveDilationMask", + "AK_IPAdapterCustomWeights", + "AK_NormalizeMaskImage" + ], + { + "author": "akatz", + "description": "Custom node pack for nodes I use in my workflows. Includes Dilation mask nodes for animating subject masks.", + "nickname": "Akatz Custom Nodes", + "title": "Akatz Custom Nodes", + "title_aux": "Akatz Custom Nodes" + } + ], + "https://github.com/akierson/ComfyUI-textnodes": [ + [ + "Prompt Truncate", + "Tidy Tags" + ], + { + "title_aux": "ComfyUI-textnodes" + } + ], + "https://github.com/akierson/comfyui-colornodes": [ + [ + "Color Picker", + "Color to Hex", + "Color to RGB", + "Image Replace Color", + "Invert Color" + ], + { + "title_aux": "comfyui-colornodes" + } + ], + "https://github.com/al-swaiti/All-IN-ONE-style": [ + [ + "ComfyUIStyler", + "menus" + ], + { + "title_aux": "All-IN-ONE-style" + } + ], "https://github.com/al-swaiti/ComfyUI-CascadeResolutions": [ [ "CascadeResolutions" @@ -6330,6 +6887,32 @@ "title_aux": "ComfyUI-CascadeResolutions" } ], + "https://github.com/al-swaiti/ComfyUI-OllamaGemini": [ + [ + "BRIA_RMBG", + "BRIA_RMBG_ModelLoader", + "ComfyUIStyler", + "ConvertRasterToVector", + "FLUXResolutions", + "GeminiOllamaAPI", + "SaveSVG", + "TextSplitByDelimiter", + "menus" + ], + { + "title_aux": "GeminiOllama ComfyUI Extension" + } + ], + "https://github.com/alanhuang67/ComfyUI-FAI-Node": [ + [ + "FAIDynamicMask", + "FAIScaleScheduler", + "FAI_Voronoi_Generator" + ], + { + "title_aux": "FAI-Node" + } + ], "https://github.com/alessandrozonta/ComfyUI-CenterNode": [ [ "BBoxCrop" @@ -6389,6 +6972,15 @@ "title_aux": "ComfyUI-Ollama-Describer" } ], + "https://github.com/alpertunga-bile/image-caption-comfyui": [ + [ + "Image Caption Node", + "Insert Prompt Node" + ], + { + "title_aux": "image-caption-comfyui" + } + ], "https://github.com/alpertunga-bile/prompt-generator-comfyui": [ [ "Prompt Generator" @@ -6565,7 +7157,8 @@ ], "https://github.com/asagi4/ComfyUI-Adaptive-Guidance": [ [ - "AdaptiveGuidance" + "AdaptiveGuidance", + "PerpNegAdaptiveGuidanceGuider" ], { "title_aux": "Adaptive Guidance for ComfyUI" @@ -6736,6 +7329,52 @@ "title_aux": "ComfyUI-FrameSkipping" } ], + "https://github.com/bananasss00/ComfyUI-SP-Nodes": [ + [ + "BoolSwitchOutStr", + "CivitaiPrompts", + "FaceScatter", + "FaceScatter2", + "GodnessMerger_Apply", + "GodnessMerger_InputBlocks", + "GodnessMerger_InputBlocksExperimental", + "GodnessMerger_LabelEmb", + "GodnessMerger_MiddleBlock", + "GodnessMerger_MiddleBlockExperimental", + "GodnessMerger_NoiseInjection", + "GodnessMerger_Out", + "GodnessMerger_OutputBlocks", + "GodnessMerger_OutputBlocksExperimental", + "GodnessMerger_RAW_Apply", + "GodnessMerger_TimeEmbed", + "ImageMonitor", + "ImgMetaValueExtractor", + "LoraLoaderByPath", + "LoraLoaderOnlyModelByPath", + "PreviewImageWEBP", + "PromptChecker", + "RandomPromptFromBook", + "Random_Model_Merge", + "SD3BlocksMultiply", + "SD3Multiply", + "SP-CheckpointSave", + "SP_KoboldCpp", + "SP_WebsocketSendImage", + "ScatterParams", + "ScatterParamsBatch", + "SendTelegramChatBot", + "StrToCombo", + "TESTER", + "TextSplitJoinByDelimiter" + ], + { + "author": "SeniorPioner", + "description": "Node Pack: PromptChecker for token toggling, KoboldCPP API, ModelMerging, Telegram-Bot-API, and more", + "nickname": "SP-Nodes", + "title": "SP-Nodes", + "title_aux": "SP-Nodes" + } + ], "https://github.com/banodoco/steerable-motion": [ [ "BatchCreativeInterpolation", @@ -6763,6 +7402,7 @@ "Batch Resize Image for SDXL", "Checkpoint Loader Simple Mikey", "CheckpointHash", + "CheckpointSaveModelOnly", "CinematicLook", "Empty Latent Ratio Custom SDXL", "Empty Latent Ratio Select SDXL", @@ -6790,6 +7430,9 @@ "MikeyLatentTileSamplerCustom", "MikeySamplerTiledAdvanced", "MikeySamplerTiledAdvancedBaseOnly", + "ModelMergePixArtSigmaXL2_1024MS", + "ModelMergeTrainDiff", + "ModelMergeTrainDiffPixartSigmaXL2_1024MS", "MosaicExpandImage", "OobaPrompt", "PresetRatioSelector", @@ -6831,13 +7474,19 @@ ], "https://github.com/bedovyy/ComfyUI_NAIDGenerator": [ [ + "ColorizeNAID", + "DeclutterNAID", + "EmotionNAID", "GenerateNAID", "Img2ImgOptionNAID", "InpaintingOptionNAID", + "LineArtNAID", "MaskImageToNAID", "ModelOptionNAID", "NetworkOptionNAID", "PromptToNAID", + "RemoveBGNAID", + "SketchNAID", "VibeTransferOptionNAID" ], { @@ -6875,6 +7524,14 @@ "title_aux": "BrevImage" } ], + "https://github.com/blackcodetavern/ComfyUI-Benripack": [ + [ + "CharacterPipe" + ], + { + "title_aux": "ComfyUI-Benripack" + } + ], "https://github.com/blepping/ComfyUI-bleh": [ [ "BlehBlockOps", @@ -6922,7 +7579,21 @@ "ApplyRAUNetSimple" ], { - "title_aux": "ComfyUI jank HiDiffusion" + "title_aux": "comfyui_jankhidiffusion" + } + ], + "https://github.com/blepping/comfyui_overly_complicated_sampling": [ + [ + "OCS Group", + "OCS ModelSetMaxSigma", + "OCS MultiParam", + "OCS Param", + "OCS Sampler", + "OCS SimpleRestartSchedule", + "OCS Substeps" + ], + { + "title_aux": "comfyui_overly_complicated_sampling" } ], "https://github.com/blueraincoatli/comfyUI_SillyNodes": [ @@ -7224,13 +7895,6 @@ "https://github.com/bvhari/ComfyUI_SUNoise": [ [ "SUNoiseLatent", - "SamplerDPM2Ancestral_SUN", - "SamplerDPMPP2SAncestral_SUN", - "SamplerDPMPP_2M_SDE_SUN", - "SamplerDPMPP_3M_SDE_SUN", - "SamplerDPMPP_SDE_SUN", - "SamplerEulerAncestralCFGpp_SUN", - "SamplerEulerAncestral_SUN", "SamplersSUNoise", "SamplersSUNoiseAdvanced" ], @@ -7238,6 +7902,19 @@ "title_aux": "ComfyUI_SUNoise" } ], + "https://github.com/caleboleary/ComfyUI-Arc2Face": [ + [ + "Arc2FaceEncoderLoader", + "Arc2FaceFaceExtractor", + "Arc2FaceGenerator", + "Arc2FaceImageGridGenerator", + "Arc2FaceImg2ImgGenerator", + "Arc2FaceUNetLoader" + ], + { + "title_aux": "Arc2Face ComfyUI Node Library" + } + ], "https://github.com/catscandrive/comfyui-imagesubfolders/raw/main/loadImageWithSubfolders.py": [ [ "LoadImagewithSubfolders" @@ -7274,6 +7951,14 @@ "title_aux": "comfyui-image-round" } ], + "https://github.com/cdxOo/comfyui-text-node-with-comments": [ + [ + "text-node-with-comments" + ], + { + "title_aux": "Text Node With Comments (@cdxoo)" + } + ], "https://github.com/celsojr2013/comfyui_jamworks_client": [ [ "Jamworks_Download", @@ -7296,10 +7981,13 @@ ], "https://github.com/cerspense/ComfyUI_cspnodes": [ [ + "DepthToNormalMap", "ImageDirIterator", + "IncrementEveryN", "Modelscopet2v", "Modelscopev2v", "RemapRange", + "ResizeByImage", "SplitImageChannels", "TextFileLineIterator", "VidDirIterator" @@ -7797,6 +8485,18 @@ "title_aux": "ComfyUI-Novakid" } ], + "https://github.com/chflame163/ComfyUI_CatVTON_Wrapper": [ + [ + "CatVTONWrapper" + ], + { + "author": "chflame", + "description": "CatVTON warpper for ComfyUI", + "nickname": "CatVTON_Wrapper", + "title": "CatVTON_Wrapper", + "title_aux": "ComfyUI_CatVTON_Wrapper" + } + ], "https://github.com/chflame163/ComfyUI_FaceSimilarity": [ [ "Face Similarity" @@ -7839,7 +8539,9 @@ "LayerMask: BiRefNetUltra", "LayerMask: BlendIf Mask", "LayerMask: CreateGradientMask", + "LayerMask: Florence2Ultra", "LayerMask: ImageToMask", + "LayerMask: LoadFlorence2Model", "LayerMask: MaskBoxDetect", "LayerMask: MaskByColor", "LayerMask: MaskByDifferent", @@ -7860,6 +8562,9 @@ "LayerMask: RemBgUltra", "LayerMask: RmBgUltra V2", "LayerMask: SegformerB2ClothesUltra", + "LayerMask: SegformerClothesPipelineLoader", + "LayerMask: SegformerFashionPipelineLoader", + "LayerMask: SegformerUltraV2", "LayerMask: SegmentAnythingUltra", "LayerMask: SegmentAnythingUltra V2", "LayerMask: Shadow & Highlight Mask", @@ -7896,6 +8601,7 @@ "LayerUtility: ExtendCanvas", "LayerUtility: ExtendCanvasV2", "LayerUtility: Float", + "LayerUtility: Florence2Image2Prompt", "LayerUtility: GetColorTone", "LayerUtility: GetColorToneV2", "LayerUtility: GetImageSize", @@ -8068,15 +8774,15 @@ "title_aux": "Image chooser" } ], - "https://github.com/chrisgoringe/cg-noise": [ + "https://github.com/chrisgoringe/cg-noisetools": [ [ - "Hijack", - "KSampler Advanced with Variations", - "KSampler with Variations", - "UnHijack" + "Batch Noise Simulate", + "Mix Noise", + "Seperable Batch Noise", + "Shape Noise" ], { - "title_aux": "Variation seeds" + "title_aux": "Noise variation and batch noise tools" } ], "https://github.com/chrisgoringe/cg-use-everywhere": [ @@ -8114,6 +8820,16 @@ "title_aux": "img2colors-comfyui-node" } ], + "https://github.com/christian-byrne/img2txt-comfyui-nodes": [ + [ + "img2txt BLIP/Llava Multimodel Tagger" + ], + { + "author": "christian-byrne", + "title": "Img2Txt auto captioning", + "title_aux": "img2txt-comfyui-nodes" + } + ], "https://github.com/christian-byrne/size-match-compositing-nodes": [ [ "Composite Alpha Layer", @@ -8123,6 +8839,22 @@ "title_aux": "Node - Size Matcher" } ], + "https://github.com/christian-byrne/youtube-dl-comfyui": [ + [ + "YoutubeDL" + ], + { + "title_aux": "youtube-dl-comfyui" + } + ], + "https://github.com/city96/ComfyUI-GGUF": [ + [ + "UnetLoaderGGUF" + ], + { + "title_aux": "ComfyUI-GGUF" + } + ], "https://github.com/city96/ComfyUI_ColorMod": [ [ "CV2Tonemap", @@ -8134,6 +8866,7 @@ "ColorModEdges", "ColorModMove", "ColorModPivot", + "ColorspaceConvert", "HDRCreate", "HDRExposureFusion", "LoadImageHDR", @@ -8171,6 +8904,8 @@ "HYDiTTextEncoderLoader", "MiaoBiCLIPLoader", "MiaoBiDiffusersLoader", + "OverrideCLIPDevice", + "OverrideVAEDevice", "PixArtCheckpointLoader", "PixArtCheckpointLoaderSimple", "PixArtControlNetCond", @@ -8266,6 +9001,8 @@ "CLIPSetLastLayer", "CLIPTextEncode", "CLIPTextEncodeControlnet", + "CLIPTextEncodeFlux", + "CLIPTextEncodeHunyuanDiT", "CLIPTextEncodeSD3", "CLIPTextEncodeSDXL", "CLIPTextEncodeSDXLRefiner", @@ -8302,6 +9039,7 @@ "ExponentialScheduler", "FeatherMask", "FlipSigmas", + "FluxGuidance", "FreeU", "FreeU_V2", "GITSScheduler", @@ -8361,6 +9099,7 @@ "MaskToImage", "ModelMergeAdd", "ModelMergeBlocks", + "ModelMergeFlux1", "ModelMergeSD1", "ModelMergeSD2", "ModelMergeSD3_2B", @@ -8371,6 +9110,7 @@ "ModelSamplingContinuousEDM", "ModelSamplingContinuousV", "ModelSamplingDiscrete", + "ModelSamplingFlux", "ModelSamplingSD3", "ModelSamplingStableCascade", "Morphology", @@ -8398,6 +9138,7 @@ "SamplerCustomAdvanced", "SamplerDPMAdaptative", "SamplerDPMPP_2M_SDE", + "SamplerDPMPP_2S_Ancestral", "SamplerDPMPP_3M_SDE", "SamplerDPMPP_SDE", "SamplerEulerAncestral", @@ -8588,6 +9329,7 @@ "IPAdapterAdvanced", "IPAdapterBatch", "IPAdapterClipVisionEnhancer", + "IPAdapterClipVisionEnhancerBatch", "IPAdapterCombineEmbeds", "IPAdapterCombineParams", "IPAdapterCombineWeights", @@ -8595,6 +9337,7 @@ "IPAdapterEmbedsBatch", "IPAdapterEncoder", "IPAdapterFaceID", + "IPAdapterFaceIDKolors", "IPAdapterFromParams", "IPAdapterInsightFaceLoader", "IPAdapterLoadEmbeds", @@ -8620,6 +9363,44 @@ "PrepImageForClipVision" ], { + "preemptions": [ + "IPAAdapterFaceIDBatch", + "IPAdapter", + "IPAdapterAdvanced", + "IPAdapterBatch", + "IPAdapterClipVisionEnhancer", + "IPAdapterClipVisionEnhancerBatch", + "IPAdapterCombineEmbeds", + "IPAdapterCombineParams", + "IPAdapterCombineWeights", + "IPAdapterEmbeds", + "IPAdapterEmbedsBatch", + "IPAdapterEncoder", + "IPAdapterFaceID", + "IPAdapterFromParams", + "IPAdapterInsightFaceLoader", + "IPAdapterLoadEmbeds", + "IPAdapterMS", + "IPAdapterModelLoader", + "IPAdapterNoise", + "IPAdapterPreciseComposition", + "IPAdapterPreciseCompositionBatch", + "IPAdapterPreciseStyleTransfer", + "IPAdapterPreciseStyleTransferBatch", + "IPAdapterPromptScheduleFromWeightsStrategy", + "IPAdapterRegionalConditioning", + "IPAdapterSaveEmbeds", + "IPAdapterStyleComposition", + "IPAdapterStyleCompositionBatch", + "IPAdapterTiled", + "IPAdapterTiledBatch", + "IPAdapterUnifiedLoader", + "IPAdapterUnifiedLoaderCommunity", + "IPAdapterUnifiedLoaderFaceID", + "IPAdapterWeights", + "IPAdapterWeightsFromStrategy", + "PrepImageForClipVision" + ], "title_aux": "ComfyUI_IPAdapter_plus" } ], @@ -8656,11 +9437,13 @@ "DebugTensorShape+", "DrawText+", "ExtractKeyframes+", + "FluxSamplerParams+", "GetImageSize+", "ImageApplyLUT+", "ImageBatchMultiple+", "ImageCASharpening+", "ImageColorMatch+", + "ImageColorMatchAdobe+", "ImageComposite+", "ImageCompositeFromMaskBatch+", "ImageCrop+", @@ -8678,6 +9461,7 @@ "ImageRemoveBackground+", "ImageResize+", "ImageSeamCarving+", + "ImageSmartSharpen+", "ImageTile+", "ImageToDevice+", "ImageUntile+", @@ -8701,11 +9485,15 @@ "ModelCompile+", "NoiseFromImage+", "PixelOEPixelize+", + "PlotParameters+", "RemBGSession+", "RemoveLatentMask+", "SD3NegativeConditioning+", "SDXLEmptyLatentSizePicker+", + "SamplerSelectHelper+", + "SchedulerSelectHelper+", "SimpleMath+", + "TextEncodeForSamplerParams+", "TransitionMask+", "TransparentBGSession+" ], @@ -8756,6 +9544,17 @@ "title_aux": "Face Compare" } ], + "https://github.com/da2el-ai/ComfyUI-d2-send-eagle": [ + [ + "D2 Send Eagle" + ], + { + "author": "da2el", + "description": "Send images to Eagle, an image management application", + "title": "D2 Send Eagle", + "title_aux": "D2 Send Eagle" + } + ], "https://github.com/da2el-ai/ComfyUI-d2-size-selector": [ [ "D2_SizeSelector" @@ -8780,10 +9579,33 @@ "title_aux": "D2 Steps" } ], + "https://github.com/dadoirie/ComfyUI_Dados_Nodes": [ + [ + "PinterestImageNode" + ], + { + "title_aux": "ComfyUI_Dados_Nodes" + } + ], "https://github.com/dagthomas/comfyui_dagthomas": [ [ + "APNLatent", + "ApplyBloom", + "CFGSkimming", + "CustomPromptLoader", + "DynamicStringCombinerNode", + "FlexibleStringMergerNode", + "GPT4MiniNode", + "GPT4VisionNode", + "Gpt4CustomVision", + "Gpt4VisionCloner", + "MergedOllamaNode", + "OllamaNode", "PGSD3LatentGenerator", - "PromptGenerator" + "PromptGenerator", + "RandomIntegerNode", + "SentenceMixerNode", + "StringMergerNode" ], { "title_aux": "SDXL Auto Prompter" @@ -9272,6 +10094,16 @@ "title_aux": "ComfyUI Easy Padding" } ], + "https://github.com/eastoc/ComfyUI_SemanticSAM": [ + [ + "PointPrompt", + "SemanticSAMLoader", + "SemanticSAMSegment" + ], + { + "title_aux": "Semantic-SAM" + } + ], "https://github.com/edenartlab/eden_comfy_pipelines": [ [ "Animation_RGB_Mask", @@ -9317,6 +10149,15 @@ "title_aux": "Various custom nodes by Eden.art" } ], + "https://github.com/emojiiii/ComfyUI_Emojiiii_Custom_Nodes": [ + [ + "KolorsMultiTextEncode", + "MultiTextEncode" + ], + { + "title_aux": "ComfyUI_Emojiiii_Custom_Nodes" + } + ], "https://github.com/evanspearman/ComfyMath": [ [ "CM_BoolBinaryOperation", @@ -9402,6 +10243,16 @@ "title_aux": "ComfyUI-Showrunner-Utils" } ], + "https://github.com/fairy-root/comfyui-ollama-llms": [ + [ + "ConcatenateText", + "llava", + "ollama" + ], + { + "title_aux": "Ollama and Llava Vision integration for ComfyUI" + } + ], "https://github.com/fearnworks/ComfyUI_FearnworksNodes": [ [ "Count Files in Directory (FW)", @@ -9485,31 +10336,55 @@ "title_aux": "Pixelization" } ], + "https://github.com/filliptm/ComfyUI_FL-Trainer": [ + [ + "FL_ImageCaptionSaver", + "FL_KohyaSSAdvConfig", + "FL_KohyaSSDatasetConfig", + "FL_KohyaSSInitWorkspace", + "FL_KohyaSSTrain", + "FL_Kohya_EasyTrain", + "FL_LoadImagesFromDirectoryPath", + "FL_SliderLoraAdvConfig", + "FL_SliderLoraDatasetConfig", + "FL_SliderLoraInitWorkspace", + "FL_SliderLoraTrain" + ], + { + "title_aux": "ComfyUI_FL-Trainer" + } + ], "https://github.com/filliptm/ComfyUI_Fill-Nodes": [ [ "FL_Ascii", - "FL_AudioConverter", - "FL_AudioFrameCalculator", - "FL_AudioPreview", "FL_BatchAlign", "FL_BulletHellGame", + "FL_CaptionToCSV", "FL_CodeNode", + "FL_ColorPicker", "FL_DirectoryCrawl", "FL_Dither", + "FL_FractalKSampler", + "FL_GPT_Vision", "FL_Glitch", + "FL_HFHubModelUploader", + "FL_HF_Character", "FL_HalftonePattern", "FL_HexagonalPattern", + "FL_ImageCaptionLayout", "FL_ImageCaptionSaver", "FL_ImageCollage", "FL_ImageDimensionDisplay", - "FL_ImageDurationSync", "FL_ImageNotes", "FL_ImagePixelator", "FL_ImageRandomizer", "FL_InfiniteZoom", "FL_InpaintCrop", "FL_Inpaint_Stitch", + "FL_KsamplerBasic", + "FL_KsamplerPlus", "FL_KsamplerSettings", + "FL_MirrorAndAppendCaptions", "FL_NFTGenerator", "FL_PaperDrawn", "FL_PasteOnCanvas", @@ -9520,12 +10395,20 @@ "FL_RetroEffect", "FL_Ripple", "FL_SDUltimate_Slices", + "FL_SendToDiscordWebhook", "FL_SeparateMaskComponents", "FL_Shadertoy", + "FL_SimpleGPTVision", + "FL_SystemCheck", "FL_TD_Sampler", "FL_TetrisGame", + "FL_TimeLine", + "FL_UpscaleModel", "FL_VideoCropMask", - "FL_VideoRecompose" + "FL_VideoRecompose", + "FL_ZipDirectory", + "FL_ZipSave", + "GradientImageGenerator" ], { "title_aux": "ComfyUI_Fill-Nodes" @@ -9686,6 +10569,16 @@ "title_aux": "ComfyUI-Prompter-fofrAI" } ], + "https://github.com/fofr/comfyui-fofr-toolkit": [ + [ + "Incrementer \ud83e\udeb4", + "Width and height for scaling image to ideal resolution \ud83e\udeb4", + "Width and height from aspect ratio \ud83e\udeb4" + ], + { + "title_aux": "comfyui-fofr-toolkit" + } + ], "https://github.com/forever22777/comfyui-self-guidance": [ [ "CLIPConditioning", @@ -9908,100 +10801,7 @@ "SimpleChat" ], { - "title_aux": "SaltAI Language Toolkit" - } - ], - "https://github.com/get-salt-AI/SaltAI_LlamaIndex": [ - [ - "AddTool", - "ChangeSystemMessage", - "ClearMemory", - "ConversableAgentCreator", - "ConversableAgentCreatorAdvanced", - "ConvertAgentAsTool", - "ConvertAgentToLlamaindex", - "CreateTavilySearchTool", - "Example", - "GenerateReply", - "GroupChat", - "GroupChatAdvanced", - "GroupChatManagerCreator", - "LLMCSVReader", - "LLMChat", - "LLMChatBot", - "LLMChatEngine", - "LLMChatMessageConcat", - "LLMChatMessages", - "LLMChatMessagesAdv", - "LLMComplete", - "LLMCustomNodeComposer", - "LLMDirectoryReader", - "LLMDocumentListAppend", - "LLMDocxReader", - "LLMEpubReader", - "LLMFlatReader", - "LLMHTMLTagReader", - "LLMHWPReader", - "LLMHtmlComposer", - "LLMHtmlRepair", - "LLMIPYNBReader", - "LLMImageCaptionReader", - "LLMImageTabularChartReader", - "LLMImageTextReader", - "LLMImageVisionLLMReader", - "LLMInputToDocuments", - "LLMJsonComposer", - "LLMJsonRepair", - "LLMLLaVANextImageEvaluator", - "LLMLLaVANextModelLoader", - "LLMMarkdownComposer", - "LLMMarkdownReader", - "LLMMarkdownRepair", - "LLMMboxReader", - "LLMMultiModalImageEvaluation", - "LLMNotionReader", - "LLMOpenAIModel", - "LLMOpenAIModelOpts", - "LLMPDFReader", - "LLMPagedCSVReader", - "LLMPandasCSVReader", - "LLMParquetDatasetSearcher", - "LLMPostProcessDocuments", - "LLMPptxReader", - "LLMPyMuPDFReader", - "LLMQueryEngine", - "LLMQueryEngineAdv", - "LLMQueryEngineAsTool", - "LLMRTFReader", - "LLMRegexCreator", - "LLMRegexRepair", - "LLMRssReaderNode", - "LLMSaltWebCrawler", - "LLMScaleSERPSearch", - "LLMSemanticSplitterNodeParser", - "LLMSentenceSplitterNodeCreator", - "LLMServiceContextAdv", - "LLMServiceContextDefault", - "LLMSimpleWebPageReader", - "LLMSimpleWebPageReaderAdv", - "LLMSummaryIndex", - "LLMTavilyResearch", - "LLMTrafilaturaWebReader", - "LLMTrafilaturaWebReaderAdv", - "LLMTreeIndex", - "LLMUnstructuredReader", - "LLMVectorStoreIndex", - "LLMVectorStoreIndexAdv", - "LLMVideoAudioReader", - "LLMXMLReader", - "LLMYamlComposer", - "LLMYamlRepair", - "SaltJSONQueryEngine", - "SendMessage", - "SimpleChat" - ], - { - "title_aux": "SaltAI_LlamaIndex" + "title_aux": "SaltAI_Language_Toolkit" } ], "https://github.com/giriss/comfy-image-saver": [ @@ -10020,6 +10820,44 @@ "title_aux": "Save Image with Generation Metadata" } ], + "https://github.com/gisu/comfyui-foxpack": [ + [ + "Add_To_List", + "BaseSamplerSetup", + "Big_Prompter", + "Change_Entries_In_A_List", + "Change_Entry_From_List", + "CheckpointMetaExtractor", + "CheckpointSelector", + "Complete_Setup", + "Convert_Into", + "Negate_Boolean", + "Optional_Value_Override", + "OverrideSamplerSetup", + "Override_Value_If_Unset", + "Pick_Value_From_Dict", + "Pick_Values_From_List", + "Refine_Prompt", + "Refine_Setup", + "Remap_Values", + "Remove_Values_From_List", + "Select_By_Index", + "Select_Line_By_Index", + "Select_String_By_Index", + "SetupSelector", + "Show_Type", + "Split_Entry_In_2Chunks", + "Split_Entry_In_4Chunks", + "Split_Entry_In_6Chunks", + "Split_Entry_In_8Chunks", + "Step_Denoise", + "UniversalLatentHelper", + "Universal_VAE_Loader" + ], + { + "title_aux": "foxpack" + } + ], "https://github.com/githubYiheng/ComfyUI_Change_IMAGE_BOREDER": [ [ "ChangeImageBorder" @@ -10099,6 +10937,23 @@ "title_aux": "Load Image From Base64 URI" } ], + "https://github.com/glowcone/comfyui-string-converter": [ + [ + "StringToFloat", + "StringToInt" + ], + { + "title_aux": "String Converter" + } + ], + "https://github.com/goburiin/nsfwrecog-comfyui": [ + [ + "NSFWDetectorNode" + ], + { + "title_aux": "nsfwrecog-comfyui" + } + ], "https://github.com/godspede/ComfyUI_Substring": [ [ "SubstringTheory" @@ -10201,14 +11056,15 @@ "Griptape Agent Config: Amazon Bedrock", "Griptape Agent Config: Anthropic", "Griptape Agent Config: Azure OpenAI", + "Griptape Agent Config: Custom Structure", + "Griptape Agent Config: Environment Variables", "Griptape Agent Config: Google", "Griptape Agent Config: HuggingFace", "Griptape Agent Config: LM Studio", "Griptape Agent Config: Ollama", "Griptape Agent Config: OpenAI", - "Griptape Agent Config: OpenAI Compatable", - "Griptape Audio Driver: ElevenLabs", - "Griptape Audio Driver: OpenAI", + "Griptape Agent Config: OpenAI Compatible", + "Griptape Audio Transcription Driver: OpenAI", "Griptape Combine: Merge Inputs", "Griptape Combine: Merge Texts", "Griptape Combine: Rules List", @@ -10218,6 +11074,7 @@ "Griptape Convert: Text to CLIP Encode", "Griptape Convert: Text to Combo", "Griptape Create: Agent", + "Griptape Create: Agent from Config", "Griptape Create: CLIP Text Encode", "Griptape Create: Image Variation", "Griptape Create: Image from Text", @@ -10230,15 +11087,38 @@ "Griptape Display: Text", "Griptape Driver: Amazon Bedrock Stable Diffusion", "Griptape Driver: Amazon Bedrock Titan", - "Griptape Driver: DuckDuckGo WebSearch", - "Griptape Driver: Google WebSearch", + "Griptape Driver: Azure OpenAI Image Generation", "Griptape Driver: Leonardo.AI", "Griptape Driver: OpenAI Image Generation", + "Griptape Embedding Driver: Amazon Bedrock Titan", + "Griptape Embedding Driver: Amazon SageMaker Jumpstart", + "Griptape Embedding Driver: Azure OpenAI", + "Griptape Embedding Driver: Cohere", + "Griptape Embedding Driver: Google", + "Griptape Embedding Driver: HuggingFace", + "Griptape Embedding Driver: Ollama", + "Griptape Embedding Driver: OpenAI", + "Griptape Embedding Driver: OpenAI Compatible", + "Griptape Embedding Driver: Voyage AI", "Griptape Expand: Agent Nodes", "Griptape Load: Audio", "Griptape Load: Image From URL", + "Griptape Load: Text", "Griptape Pipeline: Add Task", "Griptape Pipeline: Insert Task", + "Griptape Prompt Driver: Amazon Bedrock", + "Griptape Prompt Driver: Amazon SageMaker Jumpstart", + "Griptape Prompt Driver: Anthropic", + "Griptape Prompt Driver: Azure OpenAI", + "Griptape Prompt Driver: Cohere", + "Griptape Prompt Driver: Google", + "Griptape Prompt Driver: HuggingFace", + "Griptape Prompt Driver: LM Studio", + "Griptape Prompt Driver: Ollama", + "Griptape Prompt Driver: OpenAI", + "Griptape Prompt Driver: OpenAI Compatible", + "Griptape Replace: Rulesets on Agent", + "Griptape Replace: Tools on Agent", "Griptape Run: Agent", "Griptape Run: Audio Transcription", "Griptape Run: Image Description", @@ -10249,15 +11129,34 @@ "Griptape Run: Text to Speech", "Griptape Run: Tool Task", "Griptape Run: Toolkit Task", + "Griptape Save: Text", "Griptape Set: Default Agent", + "Griptape Text To Speech Driver: ElevenLabs", + "Griptape Text To Speech Driver: OpenAI", "Griptape Tool: Audio Transcription", "Griptape Tool: Calculator", "Griptape Tool: DateTime", "Griptape Tool: FileManager", "Griptape Tool: Griptape Cloud KnowledgeBase", "Griptape Tool: Text to Speech", + "Griptape Tool: VectorStore", "Griptape Tool: WebScraper", - "Griptape Tool: WebSearch" + "Griptape Tool: WebSearch", + "Griptape Vector Store Driver: Amazon OpenSearch", + "Griptape Vector Store Driver: Azure MongoDB", + "Griptape Vector Store Driver: Griptape Cloud KnowledgeBase", + "Griptape Vector Store Driver: Local", + "Griptape Vector Store Driver: Marqo", + "Griptape Vector Store Driver: MongoDB Atlas", + "Griptape Vector Store Driver: PGVector", + "Griptape Vector Store Driver: Pinecone", + "Griptape Vector Store Driver: Qdrant", + "Griptape Vector Store Driver: Redis", + "Griptape Vector Store: Add Text", + "Griptape Vector Store: Query", + "Griptape WebSearch Driver: DuckDuckGo", + "Griptape WebSearch Driver: Google", + "Gt Run Agent" ], { "author": "Jason Schleifer", @@ -10394,11 +11293,22 @@ "https://github.com/heshengtao/comfyui_LLM_party": [ [ "About_us", + "AmapRegeoTool", + "AmapWeatherTool", "CLIPTextEncode_party", "ChatTTS_Node", "CosyVoice", "Dingding", "Dingding_tool", + "FeishuDownloadAudio", + "FeishuDownloadImage", + "FeishuGetHistory", + "FeishuSendMsg", + "FileOnlineDelete_gitee", + "FileOnlineStorage_gitee", + "FilePathExists", + "GeocodeTool", + "Images2Image", "KG_csv_toolkit_developer", "KG_csv_toolkit_user", "KG_json_toolkit_developer", @@ -10411,13 +11321,16 @@ "LLM_local", "LLM_local_loader", "LLavaLoader", + "URL2IMG", "VAEDecode_party", "accuweather_tool", + "advance_ebd_tool", "api_function", "api_tool", "arxiv_tool", "bing_loader", "bing_tool", + "bool_logic", "check_web_tool", "classify_function", "classify_function_plus", @@ -10425,19 +11338,30 @@ "classify_persona_plus", "clear_model", "custom_persona", + "discord_bot", + "discord_file_monitor", + "discord_send", + "duckduckgo_loader", + "duckduckgo_tool", "ebd_tool", + "embeddings_function", "end_dialog", "end_workflow", + "extra_parameters", "feishu", "feishu_tool", "file_combine", "file_combine_plus", + "flux_persona", "get_string", "github_tool", "google_loader", "google_tool", "image_iterator", + "img2path", + "interpreter_function", "interpreter_tool", + "json2text", "json_get_value", "json_parser", "keyword_tool", @@ -10446,26 +11370,32 @@ "list_extend", "list_extend_plus", "listen_audio", - "llama_guff_loader", - "load_embeddings", + "load_ebd", "load_excel", "load_file", "load_file_folder", + "load_img_path", + "load_int", "load_keyword", "load_name", + "load_openai_ebd", "load_persona", "load_url", "load_wikipedia", "new_interpreter_tool", + "none2false", "omost_decode", + "omost_json2py", "omost_setting", + "openai_ebd_tool", "openai_tts", "openai_whisper", "parameter_combine", "parameter_combine_plus", "parameter_function", - "play_audio", "replace_string", + "save_ebd_database", + "save_openai_ebd", "show_text_party", "start_dialog", "start_workflow", @@ -10473,6 +11403,7 @@ "string_logic", "substring", "text2json", + "text2parameters", "text_iterator", "time_tool", "tool_combine", @@ -10731,6 +11662,7 @@ ], "https://github.com/iemesowum/ComfyUI_IsaacNodes": [ [ + "I_AmplitudeToWeights", "I_BinaryAmplitudeGate", "I_UnmixAudio", "I_WeightsListToWeights" @@ -10973,6 +11905,8 @@ "CM_NumberToInt JK", "CM_NumberUnaryCondition JK", "CM_NumberUnaryOperation JK", + "CM_PromptCombine_JK", + "CM_StringBinaryCondition_JK", "CM_Vec2BinaryCondition JK", "CM_Vec2BinaryOperation JK", "CM_Vec2FloatOperation_JK", @@ -11014,6 +11948,7 @@ "CR Obit Pose Input Switch JK", "CR Orbit Pose Input Switch JK", "CR Pipe Input Switch JK", + "CR Ply Input Switch JK", "CR SD1.5 Aspect Ratio JK", "CR SDXL Aspect Ratio JK", "CR Switch Model and CLIP JK", @@ -11137,6 +12072,8 @@ "JWImageLevels", "JWImageLoadRGB", "JWImageLoadRGBA", + "JWImageLoadRGBA From Clipboard", + "JWImageLoadRGBFromClipboard", "JWImageLoadRGBIfExists", "JWImageMix", "JWImageResize", @@ -11211,9 +12148,9 @@ [ "FacelessFaceRestore", "FacelessFaceSwap", - "FacelessLoadFrames", "FacelessLoadImageUrl", "FacelessLoadVideo", + "FacelessLoadVideoImages", "FacelessLoadVideoUrl", "FacelessMergeVideos", "FacelessRemoveBackground", @@ -11275,9 +12212,152 @@ "title_aux": "ULTools for ComfyUI" } ], + "https://github.com/jn-jairo/jn_comfyui": [ + [ + "JN_AreaAround", + "JN_AreaInfo", + "JN_AreaNormalize", + "JN_AreaToMask", + "JN_AreaWidthHeight", + "JN_AreaXY", + "JN_AudioArrayToBatch", + "JN_AudioAutoTune", + "JN_AudioBatchToArray", + "JN_AudioCompare", + "JN_AudioConcatenation", + "JN_AudioGetChannels", + "JN_AudioInfo", + "JN_AudioNoiseReduction", + "JN_AudioNormalize", + "JN_AudioPitch", + "JN_AudioPlot", + "JN_AudioReverberation", + "JN_AudioSampleRate", + "JN_AudioSetChannels", + "JN_AudioSlice", + "JN_AudioSpeed", + "JN_AudioStackChannels", + "JN_AudioTempo", + "JN_AudioTrimSilence", + "JN_AudioVolume", + "JN_Blip", + "JN_BlipLoader", + "JN_BooleanOperation", + "JN_Condition", + "JN_CoolDown", + "JN_CoolDownOutput", + "JN_DatetimeFormat", + "JN_DatetimeInfo", + "JN_DatetimeNow", + "JN_Dump", + "JN_DumpOutput", + "JN_Exec", + "JN_ExecOutput", + "JN_FaceCrop", + "JN_FaceRestoreModelLoader", + "JN_FaceRestoreWithModel", + "JN_FirstActive", + "JN_Flow", + "JN_FlowOutput", + "JN_ImageAddBackground", + "JN_ImageAddMask", + "JN_ImageBatch", + "JN_ImageCenterArea", + "JN_ImageCrop", + "JN_ImageGrid", + "JN_ImageInfo", + "JN_ImageRemoveBackground", + "JN_ImageSharpness", + "JN_ImageSquare", + "JN_ImageToMask", + "JN_ImageUncrop", + "JN_KSampler", + "JN_KSamplerAdvancedParams", + "JN_KSamplerFaceRestoreParams", + "JN_KSamplerResizeInputParams", + "JN_KSamplerResizeMaskAreaParams", + "JN_KSamplerResizeOutputParams", + "JN_KSamplerSeamlessParams", + "JN_KSamplerTileParams", + "JN_KeyValue", + "JN_LoadAudioDirectory", + "JN_LoadImageDirectory", + "JN_LogicOperation", + "JN_MaskBatch", + "JN_MaskInfo", + "JN_MaskToArea", + "JN_MaskToImage", + "JN_MathOperation", + "JN_MathOperationArray", + "JN_MeowLoadVoice", + "JN_MeowSaveVoice", + "JN_MeowSentenceSplit", + "JN_MeowTts", + "JN_MeowTtsAudioToContext", + "JN_MeowTtsCoarse", + "JN_MeowTtsDecode", + "JN_MeowTtsFine", + "JN_MeowTtsLoadContext", + "JN_MeowTtsModel", + "JN_MeowTtsModelCoarse", + "JN_MeowTtsModelEncodec", + "JN_MeowTtsModelFine", + "JN_MeowTtsModelHubert", + "JN_MeowTtsModelSemantic", + "JN_MeowTtsSaveContext", + "JN_MeowTtsSemantic", + "JN_MeowTtsTokenizerHubert", + "JN_MeowVc", + "JN_MeowVcConvertVoice", + "JN_MeowVcEncodeSource", + "JN_MeowVcEncodeTarget", + "JN_MeowVcLoadSpeaker", + "JN_MeowVcModelFreeVC", + "JN_MeowVcModelWavLM", + "JN_MeowVcSaveSpeaker", + "JN_PreviewAudio", + "JN_PreviewImage", + "JN_PreviewMask", + "JN_PrimitiveArrayInfo", + "JN_PrimitiveBatchToArray", + "JN_PrimitiveBoolean", + "JN_PrimitiveFloat", + "JN_PrimitiveInt", + "JN_PrimitivePrompt", + "JN_PrimitiveString", + "JN_PrimitiveStringMultiline", + "JN_PrimitiveStringToArray", + "JN_PrimitiveToArray", + "JN_PrimitiveToBoolean", + "JN_PrimitiveToFloat", + "JN_PrimitiveToInt", + "JN_PrimitiveToString", + "JN_RemBGSession", + "JN_SaveAudio", + "JN_SaveImage", + "JN_Seamless", + "JN_SeamlessBorder", + "JN_SeamlessBorderCrop", + "JN_SelectItem", + "JN_Sleep", + "JN_SleepOutput", + "JN_SliceOperation", + "JN_StopIf", + "JN_StopIfOutput", + "JN_TensorInfo", + "JN_TextConcatenation", + "JN_TextReplace", + "JN_TimedeltaFormat", + "JN_TimedeltaInfo" + ], + { + "title_aux": "JNComfy" + } + ], "https://github.com/john-mnz/ComfyUI-Inspyrenet-Rembg": [ [ - "InspyrenetRembg" + "InspyrenetRembg", + "InspyrenetRembgAdvanced" ], { "title_aux": "ComfyUI-Inspyrenet-Rembg" @@ -11288,7 +12368,9 @@ "LCMScheduler", "SamplerLCMAlternative", "SamplerLCMCycle", - "SamplerLCMDualNoise" + "SamplerLCMDualNoise", + "SamplerLCMDuoFusion", + "SamplerLCMParallel" ], { "title_aux": "ComfyUI-sampler-lcm-alternative" @@ -11311,6 +12393,14 @@ "title_aux": "ComfyUI-CSV-prompt-builder" } ], + "https://github.com/jstit/comfyui_custom_node_image": [ + [ + "ImageCropCircle" + ], + { + "title_aux": "comfyui_custom_node_image" + } + ], "https://github.com/jtrue/ComfyUI-JaRue": [ [ "Text2Image_jru", @@ -11342,6 +12432,51 @@ "title_aux": "ComfyUI Unique3D" } ], + "https://github.com/justUmen/Bjornulf_custom_nodes": [ + [ + "Bjornulf_CheckBlackImage", + "Bjornulf_ClearVRAM", + "Bjornulf_CombineBackgroundOverlay", + "Bjornulf_CombineTexts", + "Bjornulf_CustomStringType", + "Bjornulf_GrayscaleTransform", + "Bjornulf_GreenScreenToTransparency", + "Bjornulf_LoopAllLines", + "Bjornulf_LoopBasicBatch", + "Bjornulf_LoopCombosSamplersSchedulers", + "Bjornulf_LoopFloat", + "Bjornulf_LoopInteger", + "Bjornulf_LoopSamplers", + "Bjornulf_LoopSchedulers", + "Bjornulf_LoopTexts", + "Bjornulf_RandomLineFromInput", + "Bjornulf_RandomModelClipVae", + "Bjornulf_RandomTexts", + "Bjornulf_RemoveTransparency", + "Bjornulf_ResizeImage", + "Bjornulf_SaveApiImage", + "Bjornulf_SaveBjornulfLobeChat", + "Bjornulf_SaveImagePath", + "Bjornulf_SaveImageToFolder", + "Bjornulf_SaveText", + "Bjornulf_SaveTmpImage", + "Bjornulf_ShowFloat", + "Bjornulf_ShowInt", + "Bjornulf_ShowText", + "Bjornulf_TextToStringAndSeed", + "Bjornulf_VideoPingPong", + "Bjornulf_WriteImageAllInOne", + "Bjornulf_WriteImageCharacter", + "Bjornulf_WriteImageCharacters", + "Bjornulf_WriteImageEnvironment", + "Bjornulf_WriteText", + "Bjornulf_imagesToVideo", + "Bjornulf_ollamaLoader" + ], + { + "title_aux": "Bjornulf_custom_nodes" + } + ], "https://github.com/ka-puna/comfyui-yanc": [ [ "YANC.ConcatStrings", @@ -11509,6 +12644,16 @@ "title_aux": "ComfyUI-text-file-util" } ], + "https://github.com/kappa54m/ComfyUI_Usability": [ + [ + "KLoadImageByPath", + "KLoadImageByPathAdvanced", + "KLoadImageDedup" + ], + { + "title_aux": "ComfyUI Usability" + } + ], "https://github.com/katalist-ai/comfyUI-nsfw-detection": [ [ "NudenetDetector" @@ -11622,6 +12767,19 @@ "title_aux": "ComfyUI-CCSR" } ], + "https://github.com/kijai/ComfyUI-ControlNeXt-SVD": [ + [ + "ControlNextDecode", + "ControlNextDiffusersScheduler", + "ControlNextGetPoses", + "ControlNextSVDApply", + "ControlNextSampler", + "DownloadAndLoadControlNeXt" + ], + { + "title_aux": "ComfyUI nodes for ControlNext-SVD v2" + } + ], "https://github.com/kijai/ComfyUI-DDColor": [ [ "DDColor_Colorize" @@ -11681,7 +12839,9 @@ ], "https://github.com/kijai/ComfyUI-Florence2": [ [ + "DownloadAndLoadFlorence2Lora", "DownloadAndLoadFlorence2Model", + "Florence2ModelLoader", "Florence2Run" ], { @@ -11750,7 +12910,7 @@ "CustomSigmas", "DownloadAndLoadCLIPSeg", "DrawInstanceDiffusionTracking", - "DummyLatentOut", + "DummyOut", "EmptyLatentImagePresets", "FilterZeroMasksAndCorrespondingImages", "FlipSigmasAdjusted", @@ -11802,6 +12962,7 @@ "OffsetMask", "OffsetMaskByNormalizedAmplitude", "PlotCoordinates", + "PointsEditor", "PreviewAnimation", "RemapImageRange", "RemapMaskRange", @@ -11812,6 +12973,7 @@ "SV3D_BatchSchedule", "SaveImageWithAlpha", "ScaleBatchPromptSchedule", + "Screencap_mss", "Sleep", "SomethingToString", "SoundReactive", @@ -11824,6 +12986,7 @@ "StringConstantMultiline", "Superprompt", "VRAM_Debug", + "WebcamCaptureCV2", "WeightScheduleConvert", "WeightScheduleExtend", "WidgetToString" @@ -11858,7 +13021,15 @@ "https://github.com/kijai/ComfyUI-LivePortraitKJ": [ [ "DownloadAndLoadLivePortraitModels", - "LivePortraitProcess" + "KeypointScaler", + "KeypointsToImage", + "LivePortraitComposite", + "LivePortraitCropper", + "LivePortraitLoadCropper", + "LivePortraitLoadFaceAlignmentCropper", + "LivePortraitLoadMediaPipeCropper", + "LivePortraitProcess", + "LivePortraitRetargeting" ], { "title_aux": "ComfyUI-LivePortraitKJ" @@ -11953,6 +13124,19 @@ "title_aux": "ComfyUI-moondream" } ], + "https://github.com/kijai/ComfyUI-segment-anything-2": [ + [ + "DownloadAndLoadSAM2Model", + "Florence2toCoordinates", + "Sam2AutoSegmentation", + "Sam2Segmentation", + "Sam2VideoSegmentation", + "Sam2VideoSegmentationAddPoints" + ], + { + "title_aux": "ComfyUI-segment-anything-2" + } + ], "https://github.com/kinfolk0117/ComfyUI_GradientDeepShrink": [ [ "GradientPatchModelAddDownscale", @@ -11990,6 +13174,7 @@ "SingleString", "SizeSelector", "YellowBus", + "YellowBusV2", "concat" ], { @@ -12184,13 +13369,59 @@ "title_aux": "LNL Frame Selector" } ], + "https://github.com/leeguandong/ComfyUI_InternVL2": [ + [ + "DynamicPreprocess", + "InternVLHFInference", + "InternVLLMDEPLOYInference", + "InternVLModelLoader" + ], + { + "title_aux": "ComfyUI_InternVL2" + } + ], + "https://github.com/leeguandong/ComfyUI_LLaSM": [ + [ + "LLaSM2Interface", + "LLaSM2ModelLoader", + "LLaSMLoadAudio" + ], + { + "title_aux": "ComfyUI_LLaSM" + } + ], + "https://github.com/leeguandong/ComfyUI_M3Net": [ + [ + "M3Net_Interface", + "M3Net_ModelLoader" + ], + { + "title_aux": "ComfyUI_M3Net" + } + ], + "https://github.com/leeguandong/ComfyUI_VideoEditing": [ + [ + "LoadVideo2Images", + "VEdit_ControlNet_ModelLoader", + "VEdit_ModelLoader", + "VEdit_Sampler", + "VEdit_image2canny" + ], + { + "title_aux": "ComfyUI nodes to use VideoEditing" + } + ], "https://github.com/leestuartx/ComfyUI-GG": [ [ "AddPaddingToImage", + "ForLoopNode", "ImageMetadataExtractor", + "InputNode", "MetadataExtractBySeed", "MetadataExtractorBySeed", - "ResizeImageProportionally" + "OutputNode", + "ResizeImageProportionally", + "WorkspaceNode" ], { "title_aux": "ComfyUI-GG" @@ -12211,6 +13442,14 @@ "title_aux": "ComfyUI-TRA" } ], + "https://github.com/lenskikh/ComfyUI-Prompt-Worker": [ + [ + "Prompt Worker" + ], + { + "title_aux": "Propmt Worker" + } + ], "https://github.com/leoleelxh/ComfyUI-LLMs": [ [ "\ud83d\uddbc\ufe0f LLMs_Vison_Ali", @@ -12223,6 +13462,14 @@ "title_aux": "ComfyUI-LLMs" } ], + "https://github.com/liangt/comfyui-loadimagewithsubfolder": [ + [ + "LoadImageWithSubfolder" + ], + { + "title_aux": "comfyui-loadimagewithsubfolder" + } + ], "https://github.com/linshier/comfyui-remote-tools": [ [ "LoadBase64(js)", @@ -12413,6 +13660,29 @@ "title_aux": "ComfyUI-RefSampling" } ], + "https://github.com/logtd/ComfyUI-RefUNet": [ + [ + "ConfigRefMapAdv", + "ConfigureRefNet", + "CreateRefBank", + "CustomRefMapSD1", + "PrepareRefLatents", + "ReadSampler", + "RefModelSamplingPred", + "WriteSampler" + ], + { + "title_aux": "ComfyUI-RefUNet" + } + ], + "https://github.com/logtd/ComfyUI-SEGAttention": [ + [ + "SEGAttention" + ], + { + "title_aux": "ComfyUI-SEGAttention" + } + ], "https://github.com/logtd/ComfyUI-TrackingNodes": [ [ "OpenPoseTrackerNode", @@ -12488,23 +13758,6 @@ "title_aux": "comfyui-mask-util" } ], - "https://github.com/longgui0318/comfyui-oms-diffusion": [ - [ - "Add Magic Clothing Attention", - "Change Pipeline Dtype And Device", - "Change Pixel Value Normalization", - "Diffusers Model Makeup &MC", - "Diffusers Scheduler Loader &MC", - "Load Magic Clothing Adapter", - "Load Magic Clothing Model", - "Load Magic Clothing Pipeline", - "Load Magic Clothing Pipeline With Path", - "RUN Magic Clothing Diffusers Model" - ], - { - "title_aux": "comfyui-oms-diffusion" - } - ], "https://github.com/lordgasmic/ComfyUI-Wildcards/raw/master/wildcards.py": [ [ "CLIPTextEncodeWithWildcards" @@ -12561,7 +13814,8 @@ ], "https://github.com/lrzjason/Comfyui-Kolors-Utils": [ [ - "Save Weight As Kolors Unet" + "SaveKolors", + "SaveWeightAsKolorsUnet" ], { "title_aux": "Comfyui Kolors Utils" @@ -12627,6 +13881,7 @@ "ImpactDilate_Mask_SEG_ELT", "ImpactDummyInput", "ImpactEdit_SEG_ELT", + "ImpactExecutionOrderController", "ImpactFloat", "ImpactFrom_SEG_ELT", "ImpactFrom_SEG_ELT_bbox", @@ -12651,6 +13906,7 @@ "ImpactMakeTileSEGS", "ImpactMinMax", "ImpactNeg", + "ImpactNegativeConditioningPlaceholder", "ImpactNodeSetMuteState", "ImpactQueueTrigger", "ImpactQueueTriggerCountdown", @@ -12971,9 +14227,13 @@ "https://github.com/matan1905/ComfyUI-Serving-Toolkit": [ [ "DiscordServing", + "ServingInputImage", + "ServingInputImageAsLatent", "ServingInputNumber", "ServingInputText", + "ServingMultiImageOutput", "ServingOutput", + "ServingTextOutput", "WebSocketServing" ], { @@ -13026,7 +14286,7 @@ "DynamicThresholdingSimple" ], { - "title_aux": "Stable Diffusion Dynamic Thresholding (CFG Scale Fix)" + "title_aux": "Dynamic Thresholding" } ], "https://github.com/meap158/ComfyUI-Background-Replacement": [ @@ -13272,16 +14532,6 @@ "title_aux": "ComfyUI - Mask Bounding Box" } ], - "https://github.com/mingqizhang/ComfyUI_InSPyResNet_zmq": [ - [ - "INSPY removebg Apply", - "INSPY removebg ModelLoader", - "INSPY removebg ModelLoaderFromPath" - ], - { - "title_aux": "ComfyUI_InSPyResNet_zmq" - } - ], "https://github.com/mirabarukaso/ComfyUI_Mira": [ [ "BooleanListInterpreter1", @@ -13295,6 +14545,7 @@ "CreateCircleMask", "CreateMaskWithCanvas", "CreateNestedPNGMask", + "CreatePolygonPNGMask", "CreateSimpleMask", "CreateTillingPNGMask", "CreateWatermarkRemovalMask", @@ -13334,6 +14585,8 @@ "TextBox", "TextCombinerSix", "TextCombinerTwo", + "TextSwitcherThreeWays", + "TextSwitcherTwoWays", "TextWithBooleanSwitchAndCommonTextInput", "TwoBooleanTrigger", "TwoFloats" @@ -13342,6 +14595,24 @@ "title_aux": "ComfyUI_Mira" } ], + "https://github.com/misterjoessef/MLTask_ComfyUI": [ + [ + "FacebookPosterData", + "InstagramPosterData", + "LinkedinPosterData", + "MLTaskUtilsTextImageGenerator", + "PinterestPosterData", + "SocialManMediaToPoster", + "SocialManPostData", + "SocialManPoster", + "TiktokPosterData", + "TwitterPosterData", + "YoutubePosterData" + ], + { + "title_aux": "MLTask_ComfyUI" + } + ], "https://github.com/modusCell/ComfyUI-dimension-node-modusCell": [ [ "DimensionProviderFree modusCell", @@ -13453,6 +14724,26 @@ "title_aux": "ComfyUI-NegiTools" } ], + "https://github.com/neverbiasu/ComfyUI-Image-Captioner": [ + [ + "ImageCaptioner" + ], + { + "title_aux": "ComfyUI-Image-Captioner" + } + ], + "https://github.com/neverbiasu/ComfyUI-SAM2": [ + [ + "GroundingDinoModelLoader (segment anything)", + "GroundingDinoSAMSegment (segment anything)", + "InvertMask (segment anything)", + "IsMaskEmpty", + "SAM2ModelLoader (segment anything)" + ], + { + "title_aux": "ComfyUI SAM2(Segment Anything 2)" + } + ], "https://github.com/nickve28/ComfyUI-Nich-Utils": [ [ "Image from Dir Selector (Nich)", @@ -13525,8 +14816,11 @@ "PromptUtilitiesJoinStringList", "PromptUtilitiesLoadPreset", "PromptUtilitiesLoadPresetAdvanced", + "PromptUtilitiesPromptWeight", "PromptUtilitiesRandomPreset", - "PromptUtilitiesRandomPresetAdvanced" + "PromptUtilitiesRandomPresetAdvanced", + "PromptUtilitiesReplaceOrInsertTag", + "PromptUtilitiesRoundPromptWeight" ], { "title_aux": "ComfyUI-PromptUtilities" @@ -13569,6 +14863,15 @@ "title_aux": "ComfyUI-TextOnSegs" } ], + "https://github.com/noarche/sd-webui-color-enhance": [ + [ + "MMakerColorBlend", + "MMakerColorEnhance" + ], + { + "title_aux": "noarche/Color Enhance" + } + ], "https://github.com/noembryo/ComfyUI-noEmbryo": [ [ "PromptTermList1", @@ -13669,6 +14972,14 @@ "title_aux": "BrushNet" } ], + "https://github.com/okgo4/ComfyUI-Mosaic-Mask": [ + [ + "MosaicMask" + ], + { + "title_aux": "ComfyUI-Mosaic-Mask" + } + ], "https://github.com/olduvai-jp/ComfyUI-HfLoader": [ [ "Lora Loader From HF" @@ -13677,6 +14988,14 @@ "title_aux": "ComfyUI-HfLoader" } ], + "https://github.com/oleksandr612/ComfyUI-Counter": [ + [ + "Simple Counter" + ], + { + "title_aux": "ComfyUI-Counter" + } + ], "https://github.com/omar92/ComfyUI-QualityOfLifeSuit_Omar92": [ [ "CLIPStringEncode _O", @@ -13822,6 +15141,7 @@ "https://github.com/pamparamm/ComfyUI-ppm": [ [ "AttentionCouplePPM", + "CFGLimiterGuider", "CFGPPSamplerSelect", "CLIPMicroConditioning", "CLIPNegPip", @@ -13851,6 +15171,7 @@ "https://github.com/pamparamm/sd-perturbed-attention": [ [ "PerturbedAttention", + "SmoothedEnergyGuidanceAdvanced", "TRTAttachPag", "TRTPerturbedAttention" ], @@ -13870,13 +15191,18 @@ "https://github.com/patriciogonzalezvivo/comfyui_glslnodes": [ [ "float", + "glslBuffers", "glslEditor", - "glslEditor (ShaderToy)", + "glslEditorPro", + "glslUniforms", "glslViewer", "int", "vec2", + "vec2 (pos)", "vec3", - "vec4" + "vec3 (pos)", + "vec4", + "vec4 (color)" ], { "author": "Patricio Gonzalez Vivo", @@ -13922,6 +15248,21 @@ "title_aux": "comfy_PoP" } ], + "https://github.com/pikenrover/ComfyUI_PRNodes": [ + [ + "CheckpointLoaderSimpleExtended", + "EmptyLatentImageScaleBy", + "ImageScaleTo", + "LoadRandomImage", + "LoraLoaderExtended", + "RandomPrompt", + "RandomPromptMixed", + "Save Image w/Metadata" + ], + { + "title_aux": "ComfyUI_PRNodes" + } + ], "https://github.com/pkpkTech/ComfyUI-SaveAVIF": [ [ "SaveAvif" @@ -13944,6 +15285,7 @@ [ "BMAB Alpha Composit", "BMAB Basic", + "BMAB Black And White", "BMAB Blend", "BMAB Clip Text Encoder SDXL", "BMAB Conditioning To Bind", @@ -13959,6 +15301,7 @@ "BMAB Edge", "BMAB Extractor", "BMAB Face Detailer", + "BMAB Flux Integrator", "BMAB Google Gemini Prompt", "BMAB Import Integrator", "BMAB Integrator", @@ -13977,6 +15320,7 @@ "BMAB Person Detailer", "BMAB Preview Text", "BMAB Prompt", + "BMAB Remote Access And Save", "BMAB Remove Background", "BMAB Resize By Person", "BMAB Resize By Ratio", @@ -13991,11 +15335,13 @@ "BMAB SeedGenerator", "BMAB Segment Anything", "BMAB Simple Hand Detailer", + "BMAB Square", "BMAB Subframe Hand Detailer", "BMAB Text", "BMAB Upscale With Model", "BMAB Upscaler", - "BMAB Watermark" + "BMAB Watermark", + "BMAB Zoom Out" ], { "title_aux": "comfyui_bmab" @@ -14376,6 +15722,31 @@ "title_aux": "Runtime44 ComfyUI Nodes" } ], + "https://github.com/ryanontheinside/ComfyUI_RyanOnTheInside": [ + [ + "AudioControlledMaskMorph", + "EmitterMovement", + "GravityWell", + "MaskMath", + "MaskMorph", + "MaskRings", + "MaskTransform", + "MaskWarp", + "MovingShape", + "OpticalFlowDirectionMask", + "OpticalFlowMaskModulation", + "OpticalFlowParticleSystem", + "ParticleEmissionMask", + "ParticleEmitter", + "PulsatingParticleSystemMask", + "TextMaskNode", + "Vortex", + "_mfc" + ], + { + "title_aux": "ComfyUI_RyanOnTheInside" + } + ], "https://github.com/s1dlx/comfy_meh/raw/main/meh.py": [ [ "MergingExecutionHelper" @@ -14389,6 +15760,7 @@ "ControlNet Selector", "ControlNetOptionalLoader", "DiffusersSelector", + "MultiInputVariableRewrite", "SaveImageJPGNoMeta" ], { @@ -14472,6 +15844,9 @@ ], "https://github.com/shadowcz007/comfyui-liveportrait": [ [ + "ExpressionEditor_", + "ExpressionVideo2VideoNode", + "ExpressionVideoNode", "FaceCropInfo", "LivePortraitNode", "LivePortraitVideoNode", @@ -14493,6 +15868,7 @@ "Color", "ComparingTwoFrames_", "CompositeImages_", + "DepthViewer", "DynamicDelayProcessor", "EmbeddingPrompt", "EnhanceImage", @@ -14507,6 +15883,7 @@ "GridDisplayAndSave", "GridInput", "GridOutput", + "ImageBatchToList_", "ImageColorTransfer", "ImageCropByAlpha", "ImageListToBatch_", @@ -14514,6 +15891,7 @@ "IncrementingListNode_", "IntNumber", "JoinWithDelimiter", + "KeyInput", "LimitNumber", "ListSplit_", "LoadImagesFromPath", @@ -14529,6 +15907,7 @@ "NewLayer", "NoiseImage", "OutlineMask", + "P5Input", "PreviewMask_", "PromptImage", "PromptSimplification", @@ -14574,6 +15953,20 @@ "title_aux": "comfyui-sound-lab" } ], + "https://github.com/shadowcz007/comfyui-try-on": [ + [ + "CatVTONNode", + "FashionClothMask", + "FashionClothMask2" + ], + { + "author": "chflame", + "description": "CatVTON warpper for ComfyUI", + "nickname": "CatVTON_Wrapper", + "title": "CatVTON_Wrapper", + "title_aux": "comfyui-try-on" + } + ], "https://github.com/shadowcz007/comfyui-ultralytics-yolo": [ [ "DetectByLabel" @@ -14598,6 +15991,8 @@ "https://github.com/shiimizu/ComfyUI-PhotoMaker-Plus": [ [ "PhotoMakerEncodePlus", + "PhotoMakerInsightFaceLoader", + "PhotoMakerLoaderPlus", "PhotoMakerStyles", "PrepImagesForClipVisionFromPath" ], @@ -14616,6 +16011,14 @@ "title_aux": "Tiled Diffusion & VAE for ComfyUI" } ], + "https://github.com/shiimizu/ComfyUI-semantic-aware-guidance": [ + [ + "SemanticAwareGuidance" + ], + { + "title_aux": "Semantic-aware Guidance (S-CFG)" + } + ], "https://github.com/shiimizu/ComfyUI_smZNodes": [ [ "smZ CLIPTextEncode", @@ -14642,6 +16045,18 @@ "title_aux": "ComfyUI-send-Eagle(slim)" } ], + "https://github.com/shinich39/comfyui-load-image-with-cmd": [ + [ + "LoadImageWithCMD" + ], + { + "author": "shinich39", + "description": "Load image and partially workflow with javascript.", + "nickname": "load-image-with-cmd", + "title": "load-image-with-cmd", + "title_aux": "comfyui-load-image-with-cmd" + } + ], "https://github.com/shobhitic/ComfyUI-PlusMinusTextClip": [ [ "PlusMinusTextClip" @@ -14679,6 +16094,7 @@ ], "https://github.com/siliconflow/BizyAir": [ [ + "BizyAirAuraSR", "BizyAirBAE_NormalMapPreprocessor", "BizyAirBinaryPreprocessor", "BizyAirCannyEdgePreprocessor", @@ -14689,10 +16105,7 @@ "BizyAirGenerateLightningImage", "BizyAirHEDPreprocessor", "BizyAirImageCaption", - "BizyAirKolorsSampler", - "BizyAirKolorsTextEncode", - "BizyAirKolorsVAEDecode", - "BizyAirKolorsVAEEncode", + "BizyAirJoyCaption", "BizyAirLeReS_DepthMapPreprocessor", "BizyAirLineArtPreprocessor", "BizyAirM_LSDPreprocessor", @@ -14707,12 +16120,12 @@ "BizyAirRemoveBackground", "BizyAirSAMPreprocessor", "BizyAirScribblePreprocessor", - "BizyAirSetAPIKey", "BizyAirSiliconCloudLLMAPI", "BizyAirSuperResolution", "BizyAirTilePreprocessor", "BizyAirUniFormer_SemSegPreprocessor", "BizyAirZoe_DepthMapPreprocessor", + "BizyAir_MinusZoneChatGLM3TextEncode", "StableDiffusionXLControlNetUnionPipeline" ], { @@ -14830,6 +16243,14 @@ "title_aux": "kb-comfyui-nodes" } ], + "https://github.com/smlbiobot/ComfyUI-Flux-Replicate-API": [ + [ + "SML_FluxPro_Replicate_Standalone" + ], + { + "title_aux": "ComfyUI-Flux-Replicate-API" + } + ], "https://github.com/smthemex/ComfyUI_AnyDoor": [ [ "AnyDoor_LoadModel", @@ -14854,12 +16275,22 @@ ], "https://github.com/smthemex/ComfyUI_CustomNet": [ [ - "CustomNet_Plus" + "CustomNet_LoadModel", + "CustomNet_Sampler" ], { "title_aux": "ComfyUI_CustomNet" } ], + "https://github.com/smthemex/ComfyUI_Diffree": [ + [ + "Diffree_Model_Loader", + "Diffree_Sampler" + ], + { + "title_aux": "ComfyUI_Diffree" + } + ], "https://github.com/smthemex/ComfyUI_EchoMimic": [ [ "Echo_LoadModel", @@ -14869,6 +16300,15 @@ "title_aux": "ComfyUI_EchoMimic" } ], + "https://github.com/smthemex/ComfyUI_FoleyCrafter": [ + [ + "FoleyCrafter_LoadModel", + "FoleyCrafter_Sampler" + ], + { + "title_aux": "ComfyUI_FoleyCrafter" + } + ], "https://github.com/smthemex/ComfyUI_FollowYourEmoji": [ [ "Emoji_Make_Temple", @@ -14910,7 +16350,7 @@ ], "https://github.com/smthemex/ComfyUI_MS_Diffusion": [ [ - "MS_Comic_Type", + "MS_Object_img_Batch", "MSdiffusion_Model_Loader", "MSdiffusion_Sampler" ], @@ -14918,9 +16358,19 @@ "title_aux": "ComfyUI_MS_Diffusion" } ], + "https://github.com/smthemex/ComfyUI_MooER": [ + [ + "MooER_LoadModel", + "MooER_Sampler" + ], + { + "title_aux": "ComfyUI_MooER" + } + ], "https://github.com/smthemex/ComfyUI_ParlerTTS": [ [ - "PromptToAudio" + "ParlerTTS_LoadModel", + "ParlerTTS_Sampler" ], { "title_aux": "ComfyUI_ParlerTTS" @@ -14928,7 +16378,8 @@ ], "https://github.com/smthemex/ComfyUI_Pic2Story": [ [ - "Pic2Story" + "Pic2Story_Loader", + "Pic2Story_Sampler" ], { "title_aux": "ComfyUI_Pic2Story" @@ -14944,9 +16395,8 @@ ], "https://github.com/smthemex/ComfyUI_Pops": [ [ - "Imgae_To_Path", - "Pops_Prior_Embedding", - "Pops_Repo_Choice", + "Pops_Decoder", + "Pops_Repo_Loader", "Pops_Sampler" ], { @@ -14955,8 +16405,8 @@ ], "https://github.com/smthemex/ComfyUI_StableAudio_Open": [ [ - "StableAudio_Open", - "Use_LocalModel_Or_Repo" + "StableAudio_ModelLoader", + "StableAudio_Sampler" ], { "title_aux": "ComfyUI_StableAudio_Open" @@ -14985,6 +16435,7 @@ ], "https://github.com/smthemex/ComfyUI_Streamv2v_Plus": [ [ + "Stream_Lora_Loader", "Stream_Model_Loader", "Stream_Sampler" ], @@ -15084,7 +16535,9 @@ "BlurMaskFast", "ClampOutliers", "ColorMatchImage", + "ConditioningSubtract", "ConvertNormals", + "CustomNoise", "DepthToNormals", "DifferenceChecker", "DilateErodeMask", @@ -15103,6 +16556,7 @@ "LatentNormalizeShuffle", "LatentStats", "MedianFilterImage", + "ModelTest", "NormalMapSimple", "OffsetLatentImage", "PrintSigmas", @@ -15222,6 +16676,8 @@ [ "OllamaGenerate", "OllamaGenerateAdvance", + "OllamaLoadContext", + "OllamaSaveContext", "OllamaVision" ], { @@ -15308,6 +16764,51 @@ "title_aux": "comfyui_lumaAPI" } ], + "https://github.com/syaofox/ComfyUI_FoxTools": [ + [ + "FoxBatchImageFromList", + "FoxColorMatch", + "FoxCreateBlurBord", + "FoxCreateFaceMask", + "FoxFaceAlign", + "FoxFaceAlignCacul", + "FoxFaceAlignSimple", + "FoxFaceAnalysisModels", + "FoxFaceBoundingBox", + "FoxFaceEmbedDistance", + "FoxFaceOcclusionModelLoader", + "FoxFaceSegmentation", + "FoxFaceShaper", + "FoxFaceShaperModels", + "FoxFaceWarp", + "FoxGenSwapPathText", + "FoxGrowMaskWithBlur", + "FoxImageAdd", + "FoxImageConcanate", + "FoxImageExtractFromBatch", + "FoxImageResizeBySpecialSide", + "FoxImageRotate", + "FoxImageTileBatch", + "FoxLoadImageBatch", + "FoxLoadImageList", + "FoxMaskAddMask", + "FoxMaskAndMask", + "FoxMaskSubMask", + "FoxPreviewMask", + "FoxPrimitiveText", + "FoxRegTextFind", + "FoxSDXLPromptStyler", + "FoxSDXLPromptStylerAdvanced", + "FoxSaveImagePlus", + "FoxShowText", + "FoxTextConcatenate", + "FoxTrimBlackBoard", + "FoxcleanGPUUsed" + ], + { + "title_aux": "ComfyUI_FoxTools" + } + ], "https://github.com/syllebra/bilbox-comfyui": [ [ "BilboXLut", @@ -15563,6 +17064,7 @@ "https://github.com/toyxyz/ComfyUI_toyxyz_test_nodes": [ [ "CaptureWebcam", + "Direct Screen Capture", "ImageResize_Padding", "LatentDelay", "LoadWebcamImage", @@ -15766,17 +17268,32 @@ [ "ChannelSelector", "DownloadAndLoadFlorence2Model", + "FetchFromRedis", "FetchJsonFromSurreal", "Florence2Run", "ForegroundMask", "MaskImage", + "SaveImageToS3", "SaveJsonToSurreal", - "SaveTextToSurreal" + "SaveTextToSurreal", + "SaveToRedis" ], { "title_aux": "comfyui-tensorop" } ], + "https://github.com/un-seen/comfyui_segment_anything_plus": [ + [ + "GroundingDinoModelLoader (segment anything plus)", + "GroundingDinoSAMSegment (segment anything plus)", + "InvertMask (segment anything plus)", + "IsMaskEmpty (segment anything plus)", + "SAMModelLoader (segment anything plus)" + ], + { + "title_aux": "ComfyUI Segment Anything" + } + ], "https://github.com/unwdef/unwdef-nodes-comfyui": [ [ "RandomTextFromMultiline", @@ -15817,6 +17334,22 @@ "title_aux": "Simple Wildcard" } ], + "https://github.com/var1ableX/ComfyUI_Accessories": [ + [ + "GetMaskDimensions" + ], + { + "title_aux": "ComfyUI_Accessories" + } + ], + "https://github.com/vault-developer/comfyui-image-blender": [ + [ + "ImageBlender" + ], + { + "title_aux": "ImageBlender" + } + ], "https://github.com/veighnsche/comfyui_gr85": [ [ "GR85_ContainsWord", @@ -15932,6 +17465,8 @@ ], "https://github.com/wTechArtist/ComfyUI-CustomNodes": [ [ + "GPT4 WWL", + "IPAdapter FaceID With Bool", "IPAdapter Mad Scientist Weight_Type", "Image Blending Mode Mask", "Load Image With Bool" @@ -15995,6 +17530,14 @@ "title_aux": "ComfyUI Invisible Watermark" } ], + "https://github.com/webfiltered/DebugNode-ComfyUI": [ + [ + "WTFDebugNode" + ], + { + "title_aux": "WTF? - a debug node for ComfyUI" + } + ], "https://github.com/whatbirdisthat/cyberdolphin": [ [ "\ud83d\udc2c Gradio ChatInterface", @@ -16219,7 +17762,8 @@ "https://github.com/ycchanau/ComfyUI_Preview_Magnifier": [ [ "YC.ImageComparerMagnifier", - "YC.PreviewImageMagnifier" + "YC.PreviewImageMagnifier", + "YC.XYPreviewImageMagnifier" ], { "title_aux": "ComfyUI Preview Magnifier" @@ -16234,16 +17778,29 @@ "title_aux": "comfyui_auto_danbooru" } ], - "https://github.com/yiwangsimple/ComfyUI_GroqChat": [ + "https://github.com/yiwangsimple/ComfyUI_DW_Chat": [ [ + "DeepSeekChatNode", + "DeepSeekTranslator", + "ErrorLogNode", + "ExecutionTime", "FileBasedChatNode", + "Gemma2PromptNode", + "GemmaDialogueNode", + "GithubLinkNode", "GroqChatNode", "MoonshotMultiChatNode", "MoonshotSingleChatNode", - "SD3LongCaptionerV2" + "OllamaImageToText", + "OllamaPromptExtractor", + "OllamaTextToText", + "PromptExtractorNode", + "SD3LongCaptionerV2", + "SDPromptAgent", + "dwimage2" ], { - "title_aux": "comfy-groqchat" + "title_aux": "ComfyUI_DW_Chat" } ], "https://github.com/yolain/ComfyUI-Easy-Use": [ @@ -16289,6 +17846,7 @@ "easy detailerFix", "easy dynamiCrafterLoader", "easy float", + "easy fluxLoader", "easy fullCascadeKSampler", "easy fullLoader", "easy fullkSampler", @@ -16333,6 +17891,7 @@ "easy ipadapterApplyADV", "easy ipadapterApplyEmbeds", "easy ipadapterApplyEncoder", + "easy ipadapterApplyFaceIDKolors", "easy ipadapterApplyFromParams", "easy ipadapterApplyRegional", "easy ipadapterStyleComposition", @@ -16352,6 +17911,7 @@ "easy negative", "easy pipeBatchIndex", "easy pipeEdit", + "easy pipeEditPrompt", "easy pipeIn", "easy pipeOut", "easy pipeToBasicPipe", @@ -16499,6 +18059,22 @@ "title_aux": "tdxh_node_comfyui" } ], + "https://github.com/yuan199696/add_text_2_img": [ + [ + "AddText" + ], + { + "title_aux": "add_text_2_img" + } + ], + "https://github.com/yuan199696/chinese_clip_encode": [ + [ + "ChineseCLIPEncode" + ], + { + "title_aux": "chinese_clip_encode" + } + ], "https://github.com/yuvraj108c/ComfyUI-Depth-Anything-Tensorrt": [ [ "DepthAnythingTensorrt" @@ -16507,6 +18083,14 @@ "title_aux": "ComfyUI Depth Anything TensorRT" } ], + "https://github.com/yuvraj108c/ComfyUI-Dwpose-Tensorrt": [ + [ + "DwposeTensorrt" + ], + { + "title_aux": "ComfyUI Dwpose TensorRT" + } + ], "https://github.com/yuvraj108c/ComfyUI-PiperTTS": [ [ "PiperTTS" @@ -16615,6 +18199,7 @@ "https://github.com/zeroxoxo/ComfyUI-Fast-Style-Transfer": [ [ "FastStyleTransfer", + "NeuralStyleTransfer", "TrainFastStyleTransfer" ], { @@ -16650,11 +18235,14 @@ "LoadImageWithoutListDir", "MaskAutoSelector", "MaskFastGrow", + "MatchImageRatioToPreset", "ModifyTextGender", - "SplitMask" + "SplitMask", + "TextPreview", + "UpscaleImageWithModelIfNeed" ], { - "title_aux": "zhangp365/Some Utils for ComfyUI" + "title_aux": "zhangp365/ComfyUI-utils-nodes" } ], "https://github.com/zhongpei/ComfyUI-InstructIR": [ @@ -16703,6 +18291,7 @@ "https://github.com/zhulu111/ComfyUI_Bxb": [ [ "sdBxb", + "sdBxb_saveImage", "sdBxb_textInput" ], { diff --git a/node_db/new/model-list.json b/node_db/new/model-list.json index dee66b3c..008a3e95 100644 --- a/node_db/new/model-list.json +++ b/node_db/new/model-list.json @@ -1,5 +1,167 @@ { "models": [ + { + "name": "comfyanonymous/clip_l", + "type": "clip", + "base": "clip", + "save_path": "default", + "description": "clip_l model", + "reference": "https://huggingface.co/comfyanonymous/flux_text_encoders/tree/main", + "filename": "clip_l.safetensors", + "url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/clip_l.safetensors", + "size": "246MB" + }, + + { + "name": "Comfy Org/FLUX.1 [dev] Checkpoint model (fp8)", + "type": "checkpoint", + "base": "FLUX.1", + "save_path": "checkpoints/FLUX1", + "description": "FLUX.1 [dev] Checkpoint model (fp8)", + "reference": "https://huggingface.co/Comfy-Org/flux1-dev/tree/main", + "filename": "flux1-dev-fp8.safetensors", + "url": "https://huggingface.co/Comfy-Org/flux1-dev/resolve/main/flux1-dev-fp8.safetensors", + "size": "17.2GB" + }, + { + "name": "Comfy Org/FLUX.1 [schnell] Checkpoint model (fp8)", + "type": "checkpoint", + "base": "FLUX.1", + "save_path": "checkpoints/FLUX1", + "description": "FLUX.1 [schnell] Checkpoint model (fp8)", + "reference": "https://huggingface.co/Comfy-Org/flux1-dev/tree/main", + "filename": "flux1-schnell-fp8.safetensors", + "url": "https://huggingface.co/Comfy-Org/flux1-schnell/resolve/main/flux1-schnell-fp8.safetensors", + "size": "17.2GB" + }, + + { + "name": "google-t5/t5-v1_1-xxl_encoderonly-fp16", + "type": "clip", + "base": "t5", + "save_path": "clip/t5", + "description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1", + "reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly", + "filename": "google_t5-v1_1-xxl_encoderonly-fp16.safetensors", + "url": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly/resolve/main/pytorch_model.safetensors", + "size": "10.1GB" + }, + { + "name": "google-t5/t5-v1_1-xxl_encoderonly-fp8_e4m3fn", + "type": "clip", + "base": "t5", + "save_path": "clip/t5", + "description": "The encoder part of https://huggingface.co/google/t5-v1_1-xxl, used with SD3 and Flux1", + "reference": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly", + "filename": "google_t5-v1_1-xxl_encoderonly-fp8_e4m3fn.safetensors", + "url": "https://huggingface.co/mcmonkey/google_t5-v1_1-xxl_encoderonly/resolve/main/t5xxl_fp8_e4m3fn.safetensors", + "size": "4.89GB" + }, + + { + "name": "FLUX.1 [schnell] Diffusion model", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [Schnell] Diffusion model (a.k.a. FLUX.1 turbo model)[w/Due to the large size of the model, it is recommended to download it through a browser if possible.]", + "reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell", + "filename": "flux1-schnell.sft", + "url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/flux1-schnell.sft", + "size": "23.8GB" + }, + + { + "name": "FLUX.1 VAE model", + "type": "vae", + "base": "FLUX.1", + "save_path": "vae/FLUX1", + "description": "FLUX.1 [Schnell] VAE model", + "reference": "https://huggingface.co/black-forest-labs/FLUX.1-schnell", + "filename": "ae.sft", + "url": "https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors", + "size": "335MB" + }, + + { + "name": "kijai/FLUX.1 [schnell] Diffusion model (float8_e4m3fn)", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [Schnell] Diffusion model (float8_e4m3fn)", + "reference": "https://huggingface.co/Kijai/flux-fp8", + "filename": "flux1-schnell-fp8.safetensors", + "url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-schnell-fp8.safetensors", + "size": "11.9GB" + }, + { + "name": "kijai/FLUX.1 [dev] Diffusion model (float8_e4m3fn)", + "type": "unet", + "base": "FLUX.1", + "save_path": "unet/FLUX1", + "description": "FLUX.1 [dev] Diffusion model (float8_e4m3fn)", + "reference": "https://huggingface.co/Kijai/flux-fp8", + "filename": "flux1-dev-fp8.safetensors", + "url": "https://huggingface.co/Kijai/flux-fp8/resolve/main/flux1-dev-fp8.safetensors", + "size": "11.9GB" + }, + + { + "name": "photomaker-v2.bin", + "type": "photomaker", + "base": "SDXL", + "save_path": "photomaker", + "description": "PhotoMaker model. This model is compatible with SDXL.", + "reference": "https://huggingface.co/TencentARC/PhotoMaker-V2", + "filename": "photomaker-v2.bin", + "url": "https://huggingface.co/TencentARC/PhotoMaker-V2/resolve/main/photomaker-v2.bin", + "size": "1.8GB" + }, + + { + "name": "hunyuan_dit_1.2.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.2.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.2.safetensors", + "size": "8.24GB" + }, + { + "name": "hunyuan_dit_1.1.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.1.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.1.safetensors", + "size": "8.24GB" + }, + { + "name": "hunyuan_dit_1.0.safetensors", + "type": "checkpoint", + "base": "Hunyuan-DiT", + "save_path": "checkpoints/hunyuan_dit_comfyui", + "description": "Different versions of HunyuanDIT packaged for ComfyUI use.", + "reference": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui", + "filename": "hunyuan_dit_1.0.safetensors", + "url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.0.safetensors", + "size": "8.24GB" + }, + + { + "name": "xinsir/ControlNet++: All-in-one ControlNet (ProMax model)", + "type": "controlnet", + "base": "SDXL", + "save_path": "controlnet/SDXL/controlnet-union-sdxl-1.0", + "description": "All-in-one ControlNet for image generations and editing! (ProMax model)", + "reference": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0", + "filename": "iffusion_pytorch_model_promax.safetensors", + "url": "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model_promax.safetensors", + "size": "2.50GB" + }, { "name": "xinsir/ControlNet++: All-in-one ControlNet", "type": "controlnet", @@ -554,157 +716,6 @@ "filename": "antelopev2.zip", "url": "https://huggingface.co/MonsterMMORPG/tools/resolve/main/antelopev2.zip", "size": "360.7MB" - }, - { - "name": "InstantID/ip-adapter", - "type": "instantid", - "base": "SDXL", - "save_path": "instantid/SDXL", - "description": "ip-adapter model for cubiq/InstantID", - "reference": "https://huggingface.co/InstantX/InstantID", - "filename": "ip-adapter.bin", - "url": "https://huggingface.co/InstantX/InstantID/resolve/main/ip-adapter.bin" - }, - { - "name": "InstantID/ControlNet", - "type": "controlnet", - "base": "SDXL", - "save_path": "controlnet/SDXL/instantid", - "description": "instantid controlnet model for cubiq/InstantID", - "reference": "https://huggingface.co/InstantX/InstantID", - "filename": "diffusion_pytorch_model.safetensors", - "url": "https://huggingface.co/InstantX/InstantID/resolve/main/ControlNetModel/diffusion_pytorch_model.safetensors" - }, - { - "name": "ip_plus_composition_sd15.safetensors", - "type": "IP-Adapter", - "base": "SD1.5", - "save_path": "ipadapter", - "description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.", - "reference": "https://huggingface.co/ostris/ip-composition-adapter", - "filename": "ip_plus_composition_sd15.safetensors", - "url": "https://huggingface.co/ostris/ip-composition-adapter/resolve/main/ip_plus_composition_sd15.safetensors" - }, - { - "name": "ip_plus_composition_sdxl.safetensors", - "type": "IP-Adapter", - "base": "SDXL", - "save_path": "ipadapter", - "description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.", - "reference": "https://huggingface.co/ostris/ip-composition-adapter", - "filename": "ip_plus_composition_sdxl.safetensors", - "url": "https://huggingface.co/ostris/ip-composition-adapter/resolve/main/ip_plus_composition_sdxl.safetensors" - }, - { - "name": "ip-adapter-faceid-portrait-v11_sd15.bin", - "type": "IP-Adapter", - "base": "SD1.5", - "save_path": "ipadapter", - "description": "IP-Adapter-FaceID Portrait V11 Model (SD1.5) [ipadapter]", - "reference": "https://huggingface.co/h94/IP-Adapter-FaceID", - "filename": "ip-adapter-faceid-portrait-v11_sd15.bin", - "url": "https://huggingface.co/h94/IP-Adapter-FaceID/resolve/main/ip-adapter-faceid-portrait-v11_sd15.bin" - }, - { - "name": "ip-adapter-faceid-portrait_sdxl.bin", - "type": "IP-Adapter", - "base": "SDXL", - "save_path": "ipadapter", - "description": "IP-Adapter-FaceID Portrait Model (SDXL) [ipadapter]", - "reference": "https://huggingface.co/h94/IP-Adapter-FaceID", - "filename": "ip-adapter-faceid-portrait_sdxl.bin", - "url": "https://huggingface.co/h94/IP-Adapter-FaceID/resolve/main/ip-adapter-faceid-portrait_sdxl.bin" - }, - { - "name": "ip-adapter-faceid-portrait_sdxl_unnorm.bin", - "type": "IP-Adapter", - "base": "SDXL", - "save_path": "ipadapter", - "description": "IP-Adapter-FaceID Portrait Model (SDXL/unnorm) [ipadapter]", - "reference": "https://huggingface.co/h94/IP-Adapter-FaceID", - "filename": "ip-adapter-faceid-portrait_sdxl_unnorm.bin", - "url": "https://huggingface.co/h94/IP-Adapter-FaceID/resolve/main/ip-adapter-faceid-portrait_sdxl_unnorm.bin" - }, - { - "name": "ip-adapter_sd15_light_v11.bin", - "type": "IP-Adapter", - "base": "SD1.5", - "save_path": "ipadapter", - "description": "You can use this model in the [a/ComfyUI IPAdapter plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus) extension.", - "reference": "https://huggingface.co/h94/IP-Adapter", - "filename": "ip-adapter_sd15_light_v11.bin", - "url": "https://huggingface.co/h94/IP-Adapter/resolve/main/models/ip-adapter_sd15_light_v11.bin" - }, - - - { - "name": "Kijai/SUPIR-v0F_fp16.safetensors (pruned)", - "type": "checkpoints", - "base": "SUPIR", - "save_path": "checkpoints/SUPIR", - "description": "SUPIR checkpoint model", - "reference": "https://huggingface.co/Kijai/SUPIR_pruned/tree/main", - "filename": "SUPIR-v0F_fp16.safetensors", - "url": "https://huggingface.co/Kijai/SUPIR_pruned/resolve/main/SUPIR-v0F_fp16.safetensors" - }, - { - "name": "Kijai/SUPIR-v0Q_fp16.safetensors (pruned)", - "type": "checkpoints", - "base": "SUPIR", - "save_path": "checkpoints/SUPIR", - "description": "SUPIR checkpoint model", - "reference": "https://huggingface.co/Kijai/SUPIR_pruned/tree/main", - "filename": "SUPIR-v0Q_fp16.safetensors", - "url": "https://huggingface.co/Kijai/SUPIR_pruned/resolve/main/SUPIR-v0Q_fp16.safetensors" - }, - { - "name": "SUPIR-v0F.ckpt", - "type": "checkpoints", - "base": "SUPIR", - "save_path": "checkpoints/SUPIR", - "description": "SUPIR checkpoint model", - "reference": "https://huggingface.co/camenduru/SUPIR/tree/main", - "filename": "SUPIR-v0F.ckpt", - "url": "https://huggingface.co/camenduru/SUPIR/resolve/main/SUPIR-v0F.ckpt" - }, - { - "name": "SUPIR-v0Q.ckpt", - "type": "checkpoints", - "base": "SUPIR", - "save_path": "checkpoints/SUPIR", - "description": "SUPIR checkpoint model", - "reference": "https://huggingface.co/camenduru/SUPIR/tree/main", - "filename": "SUPIR-v0Q.ckpt", - "url": "https://huggingface.co/camenduru/SUPIR/resolve/main/SUPIR-v0Q.ckpt" - },{ - "name": "Depth-FM-v1 fp16 safetensors", - "type": "checkpoints", - "base": "Depth-FM", - "save_path": "checkpoints/depthfm", - "description": "Depth-FM monocular depth estimation model", - "reference": "https://huggingface.co/Kijai/depth-fm-pruned", - "filename": "depthfm-v1_fp16.safetensors", - "url": "https://huggingface.co/Kijai/depth-fm-pruned/resolve/main/depthfm-v1_fp16.safetensors" - }, - { - "name": "Depth-FM-v1 fp32 safetensors", - "type": "checkpoints", - "base": "Depth-FM", - "save_path": "checkpoints/depthfm", - "description": "Depth-FM monocular depth estimation model", - "reference": "https://huggingface.co/Kijai/depth-fm-pruned", - "filename": "depthfm-v1_fp32.safetensors", - "url": "https://huggingface.co/Kijai/depth-fm-pruned/resolve/main/depthfm-v1_fp32.safetensors" - }, - { - "name": "monster-labs - Controlnet QR Code Monster v1 For SDXL", - "type": "controlnet", - "base": "SDXL", - "save_path": "default", - "description": "monster-labs - Controlnet QR Code Monster v1 For SDXL", - "reference": "https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster", - "filename": "control_v1p_sdxl_qrcode_monster.safetensors", - "url": "https://huggingface.co/monster-labs/control_v1p_sdxl_qrcode_monster/resolve/main/diffusion_pytorch_model.safetensors" } ] } diff --git a/node_db/tutorial/custom-node-list.json b/node_db/tutorial/custom-node-list.json index 307c93e3..41f98c67 100644 --- a/node_db/tutorial/custom-node-list.json +++ b/node_db/tutorial/custom-node-list.json @@ -249,6 +249,17 @@ ], "install_type": "git-clone", "description": "Mira's Simple Wildcard Node" + }, + { + "author": "BetaDoggo", + "title": "ComfyUI Tetris", + "id": "tetris", + "reference": "https://github.com/BetaDoggo/ComfyUI-Tetris", + "files": [ + "https://github.com/BetaDoggo/ComfyUI-Tetris" + ], + "install_type": "git-clone", + "description": "The primitive node and dummy input are required because comfy doesn't accept requests with identical graphs. You'll also need a show text node. I like the one from ComfyUI-Custom-Scripts. I got the generic tetris remake from claude so it may or may not be ripped from somewhere else." } ] } \ No newline at end of file diff --git a/notebooks/comfyui_colab_with_manager.ipynb b/notebooks/comfyui_colab_with_manager.ipynb index d8b86388..c51c134c 100644 --- a/notebooks/comfyui_colab_with_manager.ipynb +++ b/notebooks/comfyui_colab_with_manager.ipynb @@ -66,10 +66,10 @@ "\n", "!echo -= Install dependencies =-\n", "!pip3 install accelerate\n", - "!pip3 install einops transformers>=4.25.1 safetensors>=0.3.0 aiohttp pyyaml Pillow scipy tqdm psutil\n", + "!pip3 install einops transformers>=4.28.1 safetensors>=0.4.2 aiohttp pyyaml Pillow scipy tqdm psutil tokenizers>=0.13.3\n", "!pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121\n", "!pip3 install torchsde\n", - "!pip3 install kornia>=0.7.1 spandrel\n", + "!pip3 install kornia>=0.7.1 spandrel soundfile sentencepiece\n", "\n", "if OPTIONS['USE_COMFYUI_MANAGER']:\n", " %cd custom_nodes\n", @@ -228,8 +228,8 @@ }, "outputs": [], "source": [ - "!wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n", - "!dpkg -i cloudflared-linux-amd64.deb\n", + "!wget -P ~ https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb\n", + "!dpkg -i ~/cloudflared-linux-amd64.deb\n", "\n", "import subprocess\n", "import threading\n", @@ -369,4 +369,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +} diff --git a/prestartup_script.py b/prestartup_script.py index 163a9880..2acec608 100644 --- a/prestartup_script.py +++ b/prestartup_script.py @@ -20,6 +20,7 @@ import cm_global security_check.security_check() +cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision'] cm_global.pip_downgrade_blacklist = ['torch', 'torchsde', 'torchvision', 'transformers', 'safetensors', 'kornia'] @@ -82,6 +83,7 @@ cm_global.pip_overrides = {} if os.path.exists(pip_overrides_path): with open(pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file: cm_global.pip_overrides = json.load(json_file) + cm_global.pip_overrides['numpy'] = 'numpy<2' def remap_pip_package(pkg): @@ -447,12 +449,15 @@ def is_installed(name): if name.startswith('#'): return True - pattern = r'([^<>!=]+)([<>!=]=?)(.*)' + pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)' match = re.search(pattern, name) if match: name = match.group(1) + if name in cm_global.pip_blacklist: + return True + if name in cm_global.pip_downgrade_blacklist: pips = get_installed_packages() @@ -531,7 +536,12 @@ if os.path.exists(restore_snapshot_path): package_name = remap_pip_package(line.strip()) if package_name and not is_installed(package_name): if not package_name.startswith('#'): - install_cmd = [sys.executable, "-m", "pip", "install", package_name] + if '--index-url' in package_name: + s = package_name.split('--index-url') + install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()] + else: + install_cmd = [sys.executable, "-m", "pip", "install", package_name] + this_exit_code += process_wrap(install_cmd, repo_path) if os.path.exists(install_script_path) and f'{repo_path}/install.py' not in processed_install: @@ -574,7 +584,12 @@ def execute_lazy_install_script(repo_path, executable): for line in requirements_file: package_name = remap_pip_package(line.strip()) if package_name and not is_installed(package_name): - install_cmd = [executable, "-m", "pip", "install", package_name] + if '--index-url' in package_name: + s = package_name.split('--index-url') + install_cmd = [sys.executable, "-m", "pip", "install", s[0].strip(), '--index-url', s[1].strip()] + else: + install_cmd = [sys.executable, "-m", "pip", "install", package_name] + process_wrap(install_cmd, repo_path) if os.path.exists(install_script_path) and f'{repo_path}/install.py' not in processed_install: diff --git a/pyproject.toml b/pyproject.toml index ed5153b2..4bf1d01b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "2.47" -license = "LICENSE" +version = "2.49" +license = { file = "LICENSE.txt" } dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"] [project.urls] diff --git a/scanner.py b/scanner.py index 0118768f..a58caa85 100644 --- a/scanner.py +++ b/scanner.py @@ -488,6 +488,7 @@ def gen_json(node_info): print("------------------------------------------------------") print(e) print("------------------------------------------------------") + node_list_json = {} metadata_in_url = {} if git_url not in data: