Compare commits
72 Commits
feat/add-t
...
3.33.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
815784e809 | ||
|
|
2795d00d1e | ||
|
|
86dd0b4963 | ||
|
|
77a4f4819f | ||
|
|
b63d603482 | ||
|
|
e569b4e613 | ||
|
|
8a70997546 | ||
|
|
80d0a0f882 | ||
|
|
70b3997874 | ||
|
|
e8e4311068 | ||
|
|
c58b93ff51 | ||
|
|
7d8ebfe91b | ||
|
|
810381eab2 | ||
|
|
61dc6cf2de | ||
|
|
0205ebad2a | ||
|
|
09a94133ac | ||
|
|
1eb3c3b219 | ||
|
|
457845bb51 | ||
|
|
0c11b46585 | ||
|
|
c35100d9e9 | ||
|
|
847031cb04 | ||
|
|
f8d87bb452 | ||
|
|
f60b3505e0 | ||
|
|
addefbc511 | ||
|
|
c4314b25a3 | ||
|
|
921bb86127 | ||
|
|
b3a7fb9c3e | ||
|
|
c143c81a7e | ||
|
|
dd389ba0f8 | ||
|
|
46b1649ab8 | ||
|
|
89710412e4 | ||
|
|
931973b632 | ||
|
|
60aaa838e3 | ||
|
|
1246538bbb | ||
|
|
80518abf9d | ||
|
|
fc1ae2a18e | ||
|
|
3fd8d2049c | ||
|
|
35a6bcf20c | ||
|
|
0d75fc331e | ||
|
|
0a23e793e3 | ||
|
|
2c1c03e063 | ||
|
|
64059d2949 | ||
|
|
648aa7c4d3 | ||
|
|
274bb81a08 | ||
|
|
e2c90b4681 | ||
|
|
fa0a98ac6e | ||
|
|
e6e7b42415 | ||
|
|
0b7ef2e1d4 | ||
|
|
2fac67a9f9 | ||
|
|
8b9892de2e | ||
|
|
b3290dc909 | ||
|
|
3e3176eddb | ||
|
|
b1ef84894a | ||
|
|
c6cffc92c4 | ||
|
|
efb9fd2712 | ||
|
|
94b294ff93 | ||
|
|
99a9e33648 | ||
|
|
055d94a919 | ||
|
|
0978005240 | ||
|
|
1f796581ec | ||
|
|
f3a1716dad | ||
|
|
a1c3a0db1f | ||
|
|
9f80cc8a6b | ||
|
|
133786846e | ||
|
|
bdf297a5c6 | ||
|
|
6767254eb0 | ||
|
|
691cebd479 | ||
|
|
f3932cbf29 | ||
|
|
3f73a97037 | ||
|
|
226f1f5be4 | ||
|
|
7e45c07660 | ||
|
|
0c815036b9 |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
7840
github-stats.json
7840
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -43,7 +43,7 @@ import manager_downloader
|
||||
from node_package import InstalledNodePackage
|
||||
|
||||
|
||||
version_code = [3, 32, 8]
|
||||
version_code = [3, 33, 2]
|
||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||
|
||||
|
||||
@@ -400,18 +400,86 @@ class ManagedResult:
|
||||
return self
|
||||
|
||||
|
||||
class NormalizedKeyDict:
|
||||
def __init__(self):
|
||||
self._store = {}
|
||||
self._key_map = {}
|
||||
|
||||
def _normalize_key(self, key):
|
||||
if isinstance(key, str):
|
||||
return key.strip().lower()
|
||||
return key
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
norm_key = self._normalize_key(key)
|
||||
self._key_map[norm_key] = key
|
||||
self._store[key] = value
|
||||
|
||||
def __getitem__(self, key):
|
||||
norm_key = self._normalize_key(key)
|
||||
original_key = self._key_map[norm_key]
|
||||
return self._store[original_key]
|
||||
|
||||
def __delitem__(self, key):
|
||||
norm_key = self._normalize_key(key)
|
||||
original_key = self._key_map.pop(norm_key)
|
||||
del self._store[original_key]
|
||||
|
||||
def __contains__(self, key):
|
||||
return self._normalize_key(key) in self._key_map
|
||||
|
||||
def get(self, key, default=None):
|
||||
return self[key] if key in self else default
|
||||
|
||||
def setdefault(self, key, default=None):
|
||||
if key in self:
|
||||
return self[key]
|
||||
self[key] = default
|
||||
return default
|
||||
|
||||
def pop(self, key, default=None):
|
||||
if key in self:
|
||||
val = self[key]
|
||||
del self[key]
|
||||
return val
|
||||
if default is not None:
|
||||
return default
|
||||
raise KeyError(key)
|
||||
|
||||
def keys(self):
|
||||
return self._store.keys()
|
||||
|
||||
def values(self):
|
||||
return self._store.values()
|
||||
|
||||
def items(self):
|
||||
return self._store.items()
|
||||
|
||||
def __iter__(self):
|
||||
return iter(self._store)
|
||||
|
||||
def __len__(self):
|
||||
return len(self._store)
|
||||
|
||||
def __repr__(self):
|
||||
return repr(self._store)
|
||||
|
||||
def to_dict(self):
|
||||
return dict(self._store)
|
||||
|
||||
|
||||
class UnifiedManager:
|
||||
def __init__(self):
|
||||
self.installed_node_packages: dict[str, InstalledNodePackage] = {}
|
||||
|
||||
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
||||
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
||||
self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath
|
||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
||||
self.cnr_map = {} # node_id -> cnr info
|
||||
self.repo_cnr_map = {} # repo_url -> cnr info
|
||||
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
||||
self.cnr_inactive_nodes = NormalizedKeyDict() # node_id -> node_version -> fullpath
|
||||
self.nightly_inactive_nodes = NormalizedKeyDict() # node_id -> fullpath
|
||||
self.unknown_inactive_nodes = {} # node_id -> repo url * fullpath
|
||||
self.active_nodes = NormalizedKeyDict() # node_id -> node_version * fullpath
|
||||
self.unknown_active_nodes = {} # node_id -> repo url * fullpath
|
||||
self.cnr_map = NormalizedKeyDict() # node_id -> cnr info
|
||||
self.repo_cnr_map = {} # repo_url -> cnr info
|
||||
self.custom_node_map_cache = {} # (channel, mode) -> augmented custom node list json
|
||||
self.processed_install = set()
|
||||
|
||||
def get_module_name(self, x):
|
||||
@@ -814,7 +882,7 @@ class UnifiedManager:
|
||||
channel = normalize_channel(channel)
|
||||
nodes = await self.load_nightly(channel, mode)
|
||||
|
||||
res = {}
|
||||
res = NormalizedKeyDict()
|
||||
added_cnr = set()
|
||||
for v in nodes.values():
|
||||
v = v[0]
|
||||
@@ -2876,7 +2944,7 @@ async def get_unified_total_nodes(channel, mode, regsitry_cache_mode='cache'):
|
||||
|
||||
if cnr_id is not None:
|
||||
# cnr or nightly version
|
||||
cnr_ids.remove(cnr_id)
|
||||
cnr_ids.discard(cnr_id)
|
||||
updatable = False
|
||||
cnr = unified_manager.cnr_map[cnr_id]
|
||||
|
||||
|
||||
@@ -865,7 +865,7 @@ async def fetch_customnode_list(request):
|
||||
|
||||
channel = found
|
||||
|
||||
result = dict(channel=channel, node_packs=node_packs)
|
||||
result = dict(channel=channel, node_packs=node_packs.to_dict())
|
||||
|
||||
return web.json_response(result, content_type='application/json')
|
||||
|
||||
|
||||
@@ -714,6 +714,7 @@ export class CustomNodesManager {
|
||||
link.href = rowItem.reference;
|
||||
link.target = '_blank';
|
||||
link.innerHTML = `<b>${title}</b>`;
|
||||
link.title = rowItem.originalData.id;
|
||||
container.appendChild(link);
|
||||
|
||||
return container;
|
||||
|
||||
@@ -1,5 +1,445 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "diogod",
|
||||
"title": "Comfy Inpainting Works [WIP]",
|
||||
"reference": "https://github.com/diodiogod/Comfy-Inpainting-Works",
|
||||
"files": [
|
||||
"https://github.com/diodiogod/Comfy-Inpainting-Works"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Go to the top menu>Workflow>Browse Templates. This is a collection of my Inpainting workflows for Flux (expanded and COMPACT) + others. Previously called: 'Proper Flux Control-Net inpainting and/or outpainting with batch size - Alimama or Flux Fill'. By installing this 'node' you can always keep them up to date by updating on the manager. This is not a new custom node. You will still need to install all other custom nodes used on the workflows. You will also find my 'Flux LoRA Block Weights Preset Tester' here as well.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "Malloc-pix",
|
||||
"title": "comfyui-QwenVL",
|
||||
"reference": "https://github.com/Malloc-pix/comfyui-QwenVL",
|
||||
"files": [
|
||||
"https://github.com/Malloc-pix/comfyui-QwenVL"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Qwen2.5VL, Qwen2.5"
|
||||
},
|
||||
{
|
||||
"author": "artifyfun",
|
||||
"title": "ComfyUI-JS [UNSAFE]",
|
||||
"reference": "https://github.com/artifyfun/ComfyUI-JS",
|
||||
"files": [
|
||||
"https://github.com/artifyfun/ComfyUI-JS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node capable of executing JavaScript code: it takes JavaScript code as input and outputs the execution result.[w/This extension has an XSS vulnerability that can be triggered through workflow execution.]"
|
||||
},
|
||||
{
|
||||
"author": "OgreLemonSoup",
|
||||
"title": "ComfyUI-Notes-manager",
|
||||
"reference": "https://github.com/OgreLemonSoup/ComfyUI-Notes-manager",
|
||||
"files": [
|
||||
"https://github.com/OgreLemonSoup/ComfyUI-Notes-manager"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension provides the note feature."
|
||||
},
|
||||
{
|
||||
"author": "WozStudios",
|
||||
"title": "ComfyUI-WozNodes",
|
||||
"reference": "https://github.com/WozStudios/ComfyUI-WozNodes",
|
||||
"files": [
|
||||
"https://github.com/WozStudios/ComfyUI-WozNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Trim Image Batch, Create Image Batch, Select Image Batch by Mask"
|
||||
},
|
||||
{
|
||||
"author": "DDDDEEP",
|
||||
"title": "ComfyUI-DDDDEEP",
|
||||
"reference": "https://github.com/DDDDEEP/ComfyUI-DDDDEEP",
|
||||
"files": [
|
||||
"https://github.com/DDDDEEP/ComfyUI-DDDDEEP"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: AutoWidthHeight, ReturnIntSeed, OppositeBool, PromptItemCollection"
|
||||
},
|
||||
{
|
||||
"author": "stalkervr",
|
||||
"title": "comfyui-custom-path-nodes [UNSAFE]",
|
||||
"reference": "https://github.com/stalkervr/comfyui-custom-path-nodes",
|
||||
"files": [
|
||||
"https://github.com/stalkervr/comfyui-custom-path-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes for path handling and image cropping.[w/This nodepack has a vulnerability that allows remote access to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "vovler",
|
||||
"title": "comfyui-vovlertools",
|
||||
"reference": "https://github.com/vovler/ComfyUI-vovlerTools",
|
||||
"files": [
|
||||
"https://github.com/vovler/ComfyUI-vovlerTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Advanced ComfyUI nodes for WD14 tagging, image filtering, and CLIP to TensorRT conversion"
|
||||
},
|
||||
{
|
||||
"author": "ELiZswe",
|
||||
"title": "ComfyUI-ELiZTools",
|
||||
"reference": "https://github.com/ELiZswe/ComfyUI-ELiZTools",
|
||||
"files": [
|
||||
"https://github.com/ELiZswe/ComfyUI-ELiZTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ELIZ Tools"
|
||||
},
|
||||
{
|
||||
"author": "yamanacn",
|
||||
"title": "comfyui_qwenbbox",
|
||||
"reference": "https://github.com/yamanacn/comfyui_qwenbbox",
|
||||
"files": [
|
||||
"https://github.com/yamanacn/comfyui_qwenbbox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Load Qwen Model (v2), Qwen Bbox Detection, Prepare BBox for SAM (v2)"
|
||||
},
|
||||
{
|
||||
"author": "mikheys",
|
||||
"title": "ComfyUI-mikheys",
|
||||
"reference": "https://github.com/mikheys/ComfyUI-mikheys",
|
||||
"files": [
|
||||
"https://github.com/mikheys/ComfyUI-mikheys"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: WAN Optimal Resolution Selector, WAN Show Image Dimensions"
|
||||
},
|
||||
{
|
||||
"author": "iacoposk8",
|
||||
"title": "ComfyUI XOR Pickle Nodes",
|
||||
"reference": "https://github.com/iacoposk8/xor_pickle_nodes",
|
||||
"files": [
|
||||
"https://github.com/iacoposk8/xor_pickle_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Two custom nodes for ComfyUI that allow you to encrypt and decrypt Python objects using simple XOR encryption with pickle."
|
||||
},
|
||||
{
|
||||
"author": "Aryan185",
|
||||
"title": "ComfyUI-ReplicateFluxKontext",
|
||||
"reference": "https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext",
|
||||
"files": [
|
||||
"https://github.com/Aryan185/ComfyUI-ReplicateFluxKontext"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI node for Flux Kontext Pro and Max models from Replicate"
|
||||
},
|
||||
{
|
||||
"author": "yamanacn",
|
||||
"title": "comfyui_qwen_object [WIP]",
|
||||
"reference": "https://github.com/yamanacn/comfyui_qwen_object",
|
||||
"files": [
|
||||
"https://github.com/yamanacn/comfyui_qwen_object"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node for ComfyUI that integrates the Qwen vision model for tasks such as object detection.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "neverbiasu",
|
||||
"title": "ComfyUI-Show-o [WIP]",
|
||||
"reference": "https://github.com/neverbiasu/ComfyUI-Show-o",
|
||||
"files": [
|
||||
"https://github.com/neverbiasu/ComfyUI-Show-o"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Show-o Model Loader, Show-o Text to Image, Show-o Image Captioning, Show-o Image Inpainting"
|
||||
},
|
||||
{
|
||||
"author": "visualbruno",
|
||||
"title": "ComfyUI-Hunyuan3d-2-1",
|
||||
"reference": "https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1",
|
||||
"files": [
|
||||
"https://github.com/visualbruno/ComfyUI-Hunyuan3d-2-1"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Hunyuan 3D 2.1 Mesh Generator, Hunyuan 3D 2.1 MultiViews Generator, Hunyuan 3D 2.1 Bake MultiViews, Hunyuan 3D 2.1 InPaint, Hunyuan 3D 2.1 Camera Config"
|
||||
},
|
||||
{
|
||||
"author": "zyquon",
|
||||
"title": "ComfyUI Stash",
|
||||
"reference": "https://github.com/zyquon/ComfyUI-Stash",
|
||||
"files": [
|
||||
"https://github.com/zyquon/ComfyUI-Stash"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes to use Stash within Comfy workflows"
|
||||
},
|
||||
{
|
||||
"author": "tankenyuen-ola",
|
||||
"title": "comfyui-env-variable-reader [UNSAFE]",
|
||||
"reference": "https://github.com/tankenyuen-ola/comfyui-env-variable-reader",
|
||||
"files": [
|
||||
"https://github.com/tankenyuen-ola/comfyui-env-variable-reader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Environment Variable Reader [w/Installing this node may expose environment variables that contain sensitive information such as API keys.]"
|
||||
},
|
||||
{
|
||||
"author": "ftf001-tech",
|
||||
"title": "ComfyUI-Lucian [WIP]",
|
||||
"reference": "https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector",
|
||||
"files": [
|
||||
"https://github.com/ftf001-tech/ComfyUI-ExternalLLMDetector"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These nodes allow you to configure LLM API connections, send images with custom prompts, and convert the LLM's JSON bounding box responses into a format compatible with segmentation nodes like SAM2\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "LucianGnn",
|
||||
"title": "ComfyUI-Lucian [WIP]",
|
||||
"reference": "https://github.com/LucianGnn/ComfyUI-Lucian",
|
||||
"files": [
|
||||
"https://github.com/LucianGnn/ComfyUI-Lucian"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Audio Duration Calculator\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "akatz-ai",
|
||||
"title": "ComfyUI-Execution-Inversion",
|
||||
"reference": "https://github.com/akatz-ai/ComfyUI-Execution-Inversion",
|
||||
"files": [
|
||||
"https://github.com/akatz-ai/ComfyUI-Execution-Inversion"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Contains nodes related to the new execution inversion engine in ComfyUI. Node pack originally from [a/https://github.com/BadCafeCode/execution-inversion-demo-comfyui](https://github.com/BadCafeCode/execution-inversion-demo-comfyui)"
|
||||
},
|
||||
{
|
||||
"author": "mamorett",
|
||||
"title": "comfyui_minicpm_vision",
|
||||
"reference": "https://github.com/mamorett/comfyui_minicpm_vision",
|
||||
"files": [
|
||||
"https://github.com/mamorett/comfyui_minicpm_vision"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: MiniCPM Vision GGUF"
|
||||
},
|
||||
{
|
||||
"author": "BigStationW",
|
||||
"title": "flowmatch_scheduler-comfyui",
|
||||
"reference": "https://github.com/BigStationW/flowmatch_scheduler-comfyui",
|
||||
"files": [
|
||||
"https://github.com/BigStationW/flowmatch_scheduler-comfyui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: FlowMatchSigmas"
|
||||
},
|
||||
{
|
||||
"author": "casterpollux",
|
||||
"title": "MiniMax-bmo",
|
||||
"reference": "https://github.com/casterpollux/MiniMax-bmo",
|
||||
"files": [
|
||||
"https://github.com/casterpollux/MiniMax-bmo"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI MiniMax Remover Node"
|
||||
},
|
||||
{
|
||||
"author": "franky519",
|
||||
"title": "ComfyUI Face Four Image Matcher [WIP]",
|
||||
"reference": "https://github.com/franky519/comfyui_fnckc_Face_analysis",
|
||||
"files": [
|
||||
"https://github.com/franky519/comfyui_fnckc_Face_analysis"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for four face image matching and face swap control\nNOTE: Invalid pyproject.toml"
|
||||
},
|
||||
{
|
||||
"author": "bleash-dev",
|
||||
"title": "Comfyui-Iddle-Checker",
|
||||
"reference": "https://github.com/bleash-dev/Comfyui-Idle-Checker",
|
||||
"files": [
|
||||
"https://github.com/bleash-dev/Comfyui-Idle-Checker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "front extension for idle checker"
|
||||
},
|
||||
{
|
||||
"author": "fangg2000",
|
||||
"title": "ComfyUI-StableAudioFG [WIP]",
|
||||
"reference": "https://github.com/fangg2000/ComfyUI-StableAudioFG",
|
||||
"files": [
|
||||
"https://github.com/fangg2000/ComfyUI-StableAudioFG"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The ComfyUI plugin for stable-audio (supports offline use)\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "hdfhssg",
|
||||
"title": "comfyui_EvoSearch [WIP]",
|
||||
"reference": "https://github.com/hdfhssg/comfyui_EvoSearch",
|
||||
"files": [
|
||||
"https://github.com/hdfhssg/comfyui_EvoSearch"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: EvoSearch_FLUX, EvoSearch_SD21, EvoSearch_WAN, EvolutionScheduleGenerator, GuidanceRewardsGenerator"
|
||||
},
|
||||
{
|
||||
"author": "simonjaq",
|
||||
"title": "ComfyUI-sjnodes",
|
||||
"reference": "https://github.com/simonjaq/ComfyUI-sjnodes",
|
||||
"files": [
|
||||
"https://github.com/simonjaq/ComfyUI-sjnodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Some modified ComfyUI custom nodes"
|
||||
},
|
||||
{
|
||||
"author": "A4P7J1N7M05OT",
|
||||
"title": "ComfyUI-VAELoaderSDXLmod",
|
||||
"reference": "https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod",
|
||||
"files": [
|
||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-VAELoaderSDXLmod"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Modified SDXL VAE Loader, Empty Latent Image Variable"
|
||||
},
|
||||
{
|
||||
"author": "xzuyn",
|
||||
"title": "xzuynodes-ComfyUI",
|
||||
"reference": "https://github.com/xzuyn/ComfyUI-xzuynodes",
|
||||
"files": [
|
||||
"https://github.com/xzuyn/ComfyUI-xzuynodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: First/Last Frame (XZ), Resize Image (Original KJ), Resize Image (XZ), CLIP Text Encode (XZ), Load CLIP (XZ), TripleCLIPLoader (XZ), WanImageToVideo (XZ)"
|
||||
},
|
||||
{
|
||||
"author": "gilons",
|
||||
"title": "ComfyUI-GoogleDrive-Downloader [UNSAFE]",
|
||||
"reference": "https://github.com/gilons/ComfyUI-GoogleDrive-Downloader",
|
||||
"files": [
|
||||
"https://github.com/gilons/ComfyUI-GoogleDrive-Downloader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for downloading files from Google Drive.[w/There is a vulnerability that allows saving a remote file to an arbitrary local path.]"
|
||||
},
|
||||
{
|
||||
"author": "moonwhaler",
|
||||
"title": "ComfyUI-FileBrowserAPI [UNSAFE]",
|
||||
"reference": "https://github.com/GalactusX31/ComfyUI-FileBrowserAPI",
|
||||
"files": [
|
||||
"https://github.com/GalactusX31/ComfyUI-FileBrowserAPI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A general-purpose, dependency-free File and Folder Browser API for ComfyUI custom nodes.[w/path traversal vulnerability]"
|
||||
},
|
||||
{
|
||||
"author": "moonwhaler",
|
||||
"title": "comfyui-moonpack",
|
||||
"reference": "https://github.com/moonwhaler/comfyui-moonpack",
|
||||
"files": [
|
||||
"https://github.com/moonwhaler/comfyui-moonpack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Proportional Dimension, Simple String Replace, Regex String Replace, VACE Looper Frame Scheduler"
|
||||
},
|
||||
{
|
||||
"author": "DreamsInAutumn",
|
||||
"title": "ComfyUI-Autumn-LLM-Nodes",
|
||||
"reference": "https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes",
|
||||
"files": [
|
||||
"https://github.com/DreamsInAutumn/ComfyUI-Autumn-LLM-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Gemini-Image-To-Prompt, Gemini-Prompt-Builder, LLM-Prompt-Builder"
|
||||
},
|
||||
{
|
||||
"author": "alexgenovese",
|
||||
"title": "ComfyUI-Reica",
|
||||
"reference": "https://github.com/alexgenovese/ComfyUI-Reica",
|
||||
"files": [
|
||||
"https://github.com/alexgenovese/ComfyUI-Reica"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: 'Reica GCP: Read Image', 'Reica GCP: Write Image & Get URL', 'Reica Text Image Display', 'Reica Read Image URL', 'Reica URL Image Loader Filename', 'Reica API: Send HTTP Notification', 'Insert Anything'"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
"title": "ComfyUI-Transition",
|
||||
"reference": "https://github.com/yichengup/ComfyUI-Transition",
|
||||
"files": [
|
||||
"https://github.com/yichengup/ComfyUI-Transition"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Linear Transition, Gradient Transition, Dual Line Transition, Sequence Transition, Circular Transition, Circular Sequence Transition"
|
||||
},
|
||||
{
|
||||
"author": "wildminder",
|
||||
"title": "ComfyUI-MagCache [NAME CONFLICT|WIP]",
|
||||
"reference": "https://github.com/wildminder/ComfyUI-MagCache",
|
||||
"files": [
|
||||
"https://github.com/wildminder/ComfyUI-MagCache"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "official implementation of [zehong-ma/MagCache](https://github.com/zehong-ma/MagCache) for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "laubsauger",
|
||||
"title": "ComfyUI Storyboard [WIP]",
|
||||
"reference": "https://github.com/laubsauger/comfyui-storyboard",
|
||||
"files": [
|
||||
"https://github.com/laubsauger/comfyui-storyboard"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node for ComfyUI provides a markdown renderer to display formatted text and notes within your workflow."
|
||||
},
|
||||
{
|
||||
"author": "IsItDanOrAi",
|
||||
"title": "ComfyUI-exLoadout [WIP]",
|
||||
"reference": "https://github.com/IsItDanOrAi/ComfyUI-exLoadout",
|
||||
"files": [
|
||||
"https://github.com/IsItDanOrAi/ComfyUI-exLoadout"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: exLoadoutCheckpointLoader, exLoadout Selector, exLoadoutA, exLoadoutG, exLoadoutReadColumn, exLoadoutEditCell\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "grokuku",
|
||||
"title": "ComfyUI-Holaf-Terminal [UNSAFE]",
|
||||
"reference": "https://github.com/grokuku/ComfyUI-Holaf-Utilities",
|
||||
"files": [
|
||||
"https://github.com/grokuku/ComfyUI-Holaf-Utilities"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Interactive Terminal in a node for ComfyUI[w/This custom extension provides a remote web-based shell (terminal) interface to the machine running the ComfyUI server. By installing and using this extension, you are opening a direct, powerful, and potentially dangerous access point to your system.]"
|
||||
},
|
||||
{
|
||||
"author": "whmc76",
|
||||
"title": "ComfyUI-LongTextTTSSuite [WIP]",
|
||||
"reference": "https://github.com/whmc76/ComfyUI-LongTextTTSSuite",
|
||||
"files": [
|
||||
"https://github.com/whmc76/ComfyUI-LongTextTTSSuite"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This plugin can cut txt or srt files, hand them over to TTS for speech slicing generation, and synthesize long speech\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "usrname0",
|
||||
"title": "ComfyUI-AllergicPack [WIP]",
|
||||
"reference": "https://github.com/usrname0/ComfyUI-AllergicPack",
|
||||
"files": [
|
||||
"https://github.com/usrname0/ComfyUI-AllergicPack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This package is not ready for primetime but I'm making it public anyway. If I'm using the node then I'm putting it here. Might make it more official later. Use at your own risk."
|
||||
},
|
||||
{
|
||||
"author": "spawner",
|
||||
"title": "comfyui-spawner-nodes",
|
||||
"reference": "https://github.com/spawner1145/comfyui-spawner-nodes",
|
||||
"files": [
|
||||
"https://github.com/spawner1145/comfyui-spawner-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Read Image Metadata, JSON process, Text Encoder/Decoder"
|
||||
},
|
||||
{
|
||||
"author": "cesilk10",
|
||||
"title": "cesilk-comfyui-nodes",
|
||||
@@ -299,7 +739,7 @@
|
||||
"https://github.com/EQXai/ComfyUI_EQX"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: SaveImage_EQX, File Image Selector, Load Prompt From File - EQX, LoraStackEQX_random, Extract Filename - EQX, Extract LORA name - EQX"
|
||||
"description": "NODES: SaveImage_EQX, File Image Selector, Load Prompt From File - EQX, LoraStackEQX_random, Extract Filename - EQX, Extract LORA name - EQX, NSFW Detector EQX, NSFW Detector Advanced EQX"
|
||||
},
|
||||
{
|
||||
"author": "yincangshiwei",
|
||||
@@ -770,16 +1210,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Compare and save unique workflows, count tokens in prompt, and other utility."
|
||||
},
|
||||
{
|
||||
"author": "Maxed-Out-99",
|
||||
"title": "ComfyUI-MaxedOut",
|
||||
"reference": "https://github.com/Maxed-Out-99/ComfyUI-MaxedOut",
|
||||
"files": [
|
||||
"https://github.com/Maxed-Out-99/ComfyUI-MaxedOut"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI nodes used in Maxed Out workflows (SDXL, Flux, etc.)"
|
||||
},
|
||||
{
|
||||
"author": "VictorLopes643",
|
||||
"title": "ComfyUI-Video-Dataset-Tools [WIP]",
|
||||
@@ -1330,16 +1760,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI node for generating images using the HiDream AI model.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "AJO-reading",
|
||||
"title": "ComfyUI-AjoNodes [WIP]",
|
||||
"reference": "https://github.com/AJO-reading/ComfyUI-AjoNodes",
|
||||
"files": [
|
||||
"https://github.com/AJO-reading/ComfyUI-AjoNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of custom nodes designed for ComfyUI from the AJO-reading organization. This repository currently includes the Audio Collect & Concat node, which collects multiple audio segments and concatenates them into a single audio stream.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ZenAI-Vietnam",
|
||||
"title": "ComfyUI_InfiniteYou [NAME CONFLICT]",
|
||||
@@ -1831,16 +2251,6 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A lightweight node pack for ComfyUI that adds a few handy nodes that I use in my workflows"
|
||||
},
|
||||
{
|
||||
"author": "markuryy",
|
||||
"title": "ComfyUI Spiritparticle Nodes [WIP]",
|
||||
"reference": "https://github.com/markuryy/comfyui-spiritparticle",
|
||||
"files": [
|
||||
"https://github.com/markuryy/comfyui-spiritparticle"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A node pack by spiritparticle."
|
||||
},
|
||||
{
|
||||
"author": "CeeVeeR",
|
||||
"title": "ComfyUi-Text-Tiler",
|
||||
@@ -2645,13 +3055,13 @@
|
||||
},
|
||||
{
|
||||
"author": "HuangYuChuh",
|
||||
"title": "ComfyUI-DeepSeek-Toolkit [WIP]",
|
||||
"reference": "https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit",
|
||||
"title": "ComfyUI-LLMs-Toolkit [WIP]",
|
||||
"reference": "https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit",
|
||||
"files": [
|
||||
"https://github.com/HuangYuChuh/ComfyUI-DeepSeek-Toolkit"
|
||||
"https://github.com/HuangYuChuh/ComfyUI-LLMs-Toolkit"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-DeepSeek-Toolkit is a deep learning toolkit for ComfyUI that integrates the DeepSeek Janus model, offering functionalities for image generation and image understanding.\nNOTE: The files in the repo are not organized."
|
||||
"description": "Enhance your ComfyUI workflows with powerful LLMs! This custom node suite integrates DeepSeek, Qwen, and other leading Chinese LLMs directly into your ComfyUI environment. Create innovative AI-powered applications with a range of useful nodes designed to leverage the advanced capabilities of these LLMs for image generation, understanding, and more.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "comfyuiblog",
|
||||
@@ -3837,8 +4247,8 @@
|
||||
"files": [
|
||||
"https://github.com/suncat2ps/ComfyUI-SaveImgNextcloud"
|
||||
],
|
||||
"description": "NODES:Save Image to Nextcloud",
|
||||
"install_type": "git-clone"
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Save Image to Nextcloud"
|
||||
},
|
||||
{
|
||||
"author": "KoreTeknology",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,15 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "joaomede",
|
||||
"title": "ComfyUI-Unload-Model-Fork",
|
||||
"reference": "https://github.com/joaomede/ComfyUI-Unload-Model-Fork",
|
||||
"files": [
|
||||
"https://github.com/joaomede/ComfyUI-Unload-Model-Fork"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "For unloading a model or all models, using the memory management that is already present in ComfyUI. Copied from [a/https://github.com/willblaschko/ComfyUI-Unload-Models](https://github.com/willblaschko/ComfyUI-Unload-Models) but without the unnecessary extra stuff."
|
||||
},
|
||||
{
|
||||
"author": "SanDiegoDude",
|
||||
"title": "ComfyUI-HiDream-Sampler [WIP]",
|
||||
|
||||
@@ -1,5 +1,168 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "armandgw84",
|
||||
"title": "comfyui-custom-v6 [REMOVED]",
|
||||
"reference": "https://github.com/armandgw84/comfyui-custom-v6",
|
||||
"files": [
|
||||
"https://github.com/armandgw84/comfyui-custom-v6"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Resize With Padding, Wan 2.1 Transition Prompter, Wan Prompt Crafter"
|
||||
},
|
||||
{
|
||||
"author": "markuryy",
|
||||
"title": "ComfyUI Spiritparticle Nodes [REMOVED]",
|
||||
"reference": "https://github.com/markuryy/comfyui-spiritparticle",
|
||||
"files": [
|
||||
"https://github.com/markuryy/comfyui-spiritparticle"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A node pack by spiritparticle."
|
||||
},
|
||||
{
|
||||
"author": "SpaceKendo",
|
||||
"title": "Text to video for Stable Video Diffusion in ComfyUI [REMOVED]",
|
||||
"id": "svd-txt2vid",
|
||||
"reference": "https://github.com/SpaceKendo/ComfyUI-svd_txt2vid",
|
||||
"files": [
|
||||
"https://github.com/SpaceKendo/ComfyUI-svd_txt2vid"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is node replaces the init_image conditioning for the [a/Stable Video Diffusion](https://github.com/Stability-AI/generative-models) image to video model with text embeds, together with a conditioning frame. The conditioning frame is a set of latents."
|
||||
},
|
||||
{
|
||||
"author": "vovler",
|
||||
"title": "ComfyUI Civitai Helper Extension [REMOVED]",
|
||||
"reference": "https://github.com/vovler/comfyui-civitaihelper",
|
||||
"files": [
|
||||
"https://github.com/vovler/comfyui-civitaihelper"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI extension for parsing Civitai PNG workflows and automatically downloading missing models"
|
||||
},
|
||||
{
|
||||
"author": "DriftJohnson",
|
||||
"title": "DJZ-Nodes [REMOVED]",
|
||||
"id": "DJZ-Nodes",
|
||||
"reference": "https://github.com/MushroomFleet/DJZ-Nodes",
|
||||
"files": [
|
||||
"https://github.com/MushroomFleet/DJZ-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "AspectSize and other nodes"
|
||||
},
|
||||
{
|
||||
"author": "DriftJohnson",
|
||||
"title": "KokoroTTS Node [REMOVED]",
|
||||
"reference": "https://github.com/MushroomFleet/DJZ-KokoroTTS",
|
||||
"files": [
|
||||
"https://github.com/MushroomFleet/DJZ-KokoroTTS"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This node provides advanced text-to-speech functionality powered by KokoroTTS. Follow the instructions below to install, configure, and use the node within your portable ComfyUI installation."
|
||||
},
|
||||
{
|
||||
"author": "MushroomFleet",
|
||||
"title": "DJZ-Pedalboard [REMOVED]",
|
||||
"reference": "https://github.com/MushroomFleet/DJZ-Pedalboard",
|
||||
"files": [
|
||||
"https://github.com/MushroomFleet/DJZ-Pedalboard"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project provides a collection of custom nodes designed for enhanced audio effects in ComfyUI. With an intuitive pedalboard interface, users can easily integrate and manipulate various audio effects within their workflows."
|
||||
},
|
||||
{
|
||||
"author": "MushroomFleet",
|
||||
"title": "SVG Suite for ComfyUI [REMOVED]",
|
||||
"reference": "https://github.com/MushroomFleet/svg-suite",
|
||||
"files": [
|
||||
"https://github.com/MushroomFleet/svg-suite"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "SVG Suite is an advanced set of nodes for converting images to SVG in ComfyUI, expanding upon the functionality of ComfyUI-ToSVG."
|
||||
},
|
||||
{
|
||||
"author": "joeriben",
|
||||
"title": "AI4ArtsEd Ollama Prompt Node [DEPRECATED]",
|
||||
"reference": "https://github.com/joeriben/ai4artsed_comfyui",
|
||||
"files": [
|
||||
"https://github.com/joeriben/ai4artsed_comfyui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Experimental nodes for ComfyUI. For more, see [a/https://kubi-meta.de/ai4artsed](https://kubi-meta.de/ai4artsed) A custom ComfyUI node for stylistic and cultural transformation of input text using local LLMs served via Ollama. This node allows you to combine a free-form prompt (e.g. translation, poetic recoding, genre shift) with externally supplied text in the ComfyUI graph. The result is processed via an Ollama-hosted model and returned as plain text."
|
||||
},
|
||||
{
|
||||
"author": "bento234",
|
||||
"title": "ComfyUI-bento-toolbox [REMOVED]",
|
||||
"reference": "https://github.com/bento234/ComfyUI-bento-toolbox",
|
||||
"files": [
|
||||
"https://github.com/bento234/ComfyUI-bento-toolbox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Tile Prompt Distributor"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
"title": "ComfyUI-VideoBlender [REMOVED]",
|
||||
"reference": "https://github.com/yichengup/ComfyUI-VideoBlender",
|
||||
"files": [
|
||||
"https://github.com/yichengup/ComfyUI-VideoBlender"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Video clip mixing"
|
||||
},
|
||||
{
|
||||
"author": "xl0",
|
||||
"title": "latent-tools [REMOVED]",
|
||||
"reference": "https://github.com/xl0/latent-tools",
|
||||
"files": [
|
||||
"https://github.com/xl0/latent-tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Visualize and manipulate the latent space in ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "Conor-Collins",
|
||||
"title": "ComfyUI-CoCoTools [REMOVED]",
|
||||
"reference": "https://github.com/Conor-Collins/coco_tools",
|
||||
"files": [
|
||||
"https://github.com/Conor-Collins/coco_tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A set of custom nodes for ComfyUI providing advanced image processing, file handling, and utility functions."
|
||||
},
|
||||
{
|
||||
"author": "theUpsider",
|
||||
"title": "ComfyUI-Logic [DEPRECATED]",
|
||||
"id": "comfy-logic",
|
||||
"reference": "https://github.com/theUpsider/ComfyUI-Logic",
|
||||
"files": [
|
||||
"https://github.com/theUpsider/ComfyUI-Logic"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "An extension to ComfyUI that introduces logic nodes and conditional rendering capabilities."
|
||||
},
|
||||
{
|
||||
"author": "Malloc-pix",
|
||||
"title": "comfyui_qwen2.4_vl_node [REMOVED]",
|
||||
"reference": "https://github.com/Malloc-pix/comfyui_qwen2.4_vl_node",
|
||||
"files": [
|
||||
"https://github.com/Malloc-pix/comfyui_qwen2.4_vl_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: CogVLM2 Captioner, CLIP Dynamic Text Encode(cy)"
|
||||
},
|
||||
{
|
||||
"author": "inyourdreams-studio",
|
||||
"title": "ComfyUI-RBLM [REMOVED]",
|
||||
"reference": "https://github.com/inyourdreams-studio/comfyui-rblm",
|
||||
"files": [
|
||||
"https://github.com/inyourdreams-studio/comfyui-rblm"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node pack for ComfyUI that provides text manipulation nodes."
|
||||
},
|
||||
{
|
||||
"author": "dream-computing",
|
||||
"title": "SyntaxNodes - Image Processing Effects for ComfyUI [REMOVED]",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
[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 = "3.32.8"
|
||||
version = "3.33.2"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user