Compare commits
1 Commits
reverted-m
...
fix/missin
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77183b758a |
58
.github/workflows/publish-to-pypi.yml
vendored
58
.github/workflows/publish-to-pypi.yml
vendored
@@ -1,58 +0,0 @@
|
||||
name: Publish to PyPI
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- draft-v4
|
||||
paths:
|
||||
- "pyproject.toml"
|
||||
|
||||
jobs:
|
||||
build-and-publish:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.repository_owner == 'ltdrdata' || github.repository_owner == 'Comfy-Org' }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.9'
|
||||
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install build twine
|
||||
|
||||
- name: Get current version
|
||||
id: current_version
|
||||
run: |
|
||||
CURRENT_VERSION=$(grep -oP 'version = "\K[^"]+' pyproject.toml)
|
||||
echo "version=$CURRENT_VERSION" >> $GITHUB_OUTPUT
|
||||
echo "Current version: $CURRENT_VERSION"
|
||||
|
||||
- name: Build package
|
||||
run: python -m build
|
||||
|
||||
- name: Create GitHub Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
files: dist/*
|
||||
tag_name: v${{ steps.current_version.outputs.version }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
generate_release_notes: true
|
||||
|
||||
- name: Publish to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
with:
|
||||
password: ${{ secrets.PYPI_TOKEN }}
|
||||
skip-existing: true
|
||||
verbose: true
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
8927
github-stats.json
8927
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, 36]
|
||||
version_code = [3, 35]
|
||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||
|
||||
|
||||
|
||||
@@ -335,8 +335,7 @@ async def share_art(request):
|
||||
content_type = assetFileType
|
||||
|
||||
try:
|
||||
from matrix_client.api import MatrixHttpApi
|
||||
from matrix_client.client import MatrixClient
|
||||
from nio import AsyncClient, LoginResponse, UploadResponse
|
||||
|
||||
homeserver = 'matrix.org'
|
||||
if matrix_auth:
|
||||
@@ -345,20 +344,35 @@ async def share_art(request):
|
||||
if not homeserver.startswith("https://"):
|
||||
homeserver = "https://" + homeserver
|
||||
|
||||
client = MatrixClient(homeserver)
|
||||
try:
|
||||
token = client.login(username=matrix_auth['username'], password=matrix_auth['password'])
|
||||
if not token:
|
||||
return web.json_response({"error": "Invalid Matrix credentials."}, content_type='application/json', status=400)
|
||||
except:
|
||||
client = AsyncClient(homeserver, matrix_auth['username'])
|
||||
|
||||
# Login
|
||||
login_resp = await client.login(matrix_auth['password'])
|
||||
if not isinstance(login_resp, LoginResponse) or not login_resp.access_token:
|
||||
await client.close()
|
||||
return web.json_response({"error": "Invalid Matrix credentials."}, content_type='application/json', status=400)
|
||||
|
||||
matrix = MatrixHttpApi(homeserver, token=token)
|
||||
# Upload asset
|
||||
with open(asset_filepath, 'rb') as f:
|
||||
mxc_url = matrix.media_upload(f.read(), content_type, filename=filename)['content_uri']
|
||||
upload_resp, _maybe_keys = await client.upload(f, content_type=content_type, filename=filename)
|
||||
asset_data = f.seek(0) or f.read() # get size for info below
|
||||
if not isinstance(upload_resp, UploadResponse) or not upload_resp.content_uri:
|
||||
await client.close()
|
||||
return web.json_response({"error": "Failed to upload asset to Matrix."}, content_type='application/json', status=500)
|
||||
mxc_url = upload_resp.content_uri
|
||||
|
||||
workflow_json_mxc_url = matrix.media_upload(prompt['workflow'], 'application/json', filename='workflow.json')['content_uri']
|
||||
# Upload workflow JSON
|
||||
import io
|
||||
workflow_json_bytes = json.dumps(prompt['workflow']).encode('utf-8')
|
||||
workflow_io = io.BytesIO(workflow_json_bytes)
|
||||
upload_workflow_resp, _maybe_keys = await client.upload(workflow_io, content_type='application/json', filename='workflow.json')
|
||||
workflow_io.seek(0)
|
||||
if not isinstance(upload_workflow_resp, UploadResponse) or not upload_workflow_resp.content_uri:
|
||||
await client.close()
|
||||
return web.json_response({"error": "Failed to upload workflow to Matrix."}, content_type='application/json', status=500)
|
||||
workflow_json_mxc_url = upload_workflow_resp.content_uri
|
||||
|
||||
# Send text message
|
||||
text_content = ""
|
||||
if title:
|
||||
text_content += f"{title}\n"
|
||||
@@ -366,9 +380,44 @@ async def share_art(request):
|
||||
text_content += f"{description}\n"
|
||||
if credits:
|
||||
text_content += f"\ncredits: {credits}\n"
|
||||
matrix.send_message(comfyui_share_room_id, text_content)
|
||||
matrix.send_content(comfyui_share_room_id, mxc_url, filename, 'm.image')
|
||||
matrix.send_content(comfyui_share_room_id, workflow_json_mxc_url, 'workflow.json', 'm.file')
|
||||
await client.room_send(
|
||||
room_id=comfyui_share_room_id,
|
||||
message_type="m.room.message",
|
||||
content={"msgtype": "m.text", "body": text_content}
|
||||
)
|
||||
|
||||
# Send image
|
||||
await client.room_send(
|
||||
room_id=comfyui_share_room_id,
|
||||
message_type="m.room.message",
|
||||
content={
|
||||
"msgtype": "m.image",
|
||||
"body": filename,
|
||||
"url": mxc_url,
|
||||
"info": {
|
||||
"mimetype": content_type,
|
||||
"size": len(asset_data)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
# Send workflow JSON file
|
||||
await client.room_send(
|
||||
room_id=comfyui_share_room_id,
|
||||
message_type="m.room.message",
|
||||
content={
|
||||
"msgtype": "m.file",
|
||||
"body": "workflow.json",
|
||||
"url": workflow_json_mxc_url,
|
||||
"info": {
|
||||
"mimetype": "application/json",
|
||||
"size": len(workflow_json_bytes)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
await client.close()
|
||||
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
||||
@@ -1,486 +1,5 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "Saganaki22",
|
||||
"title": "ComfyUI YTDL Nodes [WIP]",
|
||||
"reference": "https://github.com/Saganaki22/ComfyUI-ytdl_nodes",
|
||||
"files": [
|
||||
"https://github.com/Saganaki22/ComfyUI-ytdl_nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI nodes for downloading, converting, and previewing audio/video from YouTube and 1,000+ other platforms"
|
||||
},
|
||||
{
|
||||
"author": "LSDJesus",
|
||||
"title": "ComfyUI-Pyrite-Core [WIP]",
|
||||
"reference": "https://github.com/LSDJesus/ComfyUI-Pyrite-Core",
|
||||
"files": [
|
||||
"https://github.com/LSDJesus/ComfyUI-Pyrite-Core"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains ComfyUI-Pyrite-Core, a bespoke collection of custom nodes for ComfyUI, engineered for power, flexibility, and a ruthlessly efficient workflow. These tools are born from a collaborative project between a human architect and their AI muse, Pyrite.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "comfyscript",
|
||||
"title": "ComfyUI-CloudClient",
|
||||
"reference": "https://github.com/comfyscript/ComfyUI-CloudClient",
|
||||
"files": [
|
||||
"https://github.com/comfyscript/ComfyUI-CloudClient"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Design to Easily Remote Operate ComfyUI in the Cloud"
|
||||
},
|
||||
{
|
||||
"author": "RobbertB80",
|
||||
"title": "ComfyUI SharePoint/OneDrive Upload Node [UNSAFE]",
|
||||
"reference": "https://github.com/RobbertB80/ComfyUI-SharePoint-Upload",
|
||||
"files": [
|
||||
"https://github.com/RobbertB80/ComfyUI-SharePoint-Upload"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that automatically uploads generated images to SharePoint or OneDrive document libraries.[w/This nodepack contains a node that can write files to an arbitrary path.]"
|
||||
},
|
||||
{
|
||||
"author": "RegulusAlpha",
|
||||
"title": "ComfyUI Dynamic Prompting Simplified [WIP]",
|
||||
"reference": "https://github.com/RegulusAlpha/ComfyUI-DynPromptSimplified",
|
||||
"files": [
|
||||
"https://github.com/RegulusAlpha/ComfyUI-DynPromptSimplified"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A minimal dynamic prompting + mirrored wildcards node for ComfyUI.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "jtrue",
|
||||
"title": "MaskTools",
|
||||
"reference": "https://github.com/jtrue/ComfyUI-MaskTools",
|
||||
"files": [
|
||||
"https://github.com/jtrue/ComfyUI-MaskTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Pixel-selection tools (masks) for ComfyUI — modular."
|
||||
},
|
||||
{
|
||||
"author": "nadushu",
|
||||
"title": "comfyui-handy-nodes [UNSAFE]",
|
||||
"reference": "https://github.com/nadushu/comfyui-handy-nodes",
|
||||
"files": [
|
||||
"https://github.com/nadushu/comfyui-handy-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Empty Random Latent Image, Filename Prompt Extractor, My Image Save, Queue Batch Fixed Seed, Text Cleaner, Text Splitter[w/This nodepack contains a node that can write files to an arbitrary path.]"
|
||||
},
|
||||
{
|
||||
"author": "SatadalAI",
|
||||
"title": "Combined Upscale Node for ComfyUI [WIP]",
|
||||
"reference": "https://github.com/SatadalAI/SATA_UtilityNode",
|
||||
"files": [
|
||||
"https://github.com/SatadalAI/SATA_UtilityNode"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Combined_Upscale is a custom ComfyUI node designed for high-quality image enhancement workflows. It intelligently combines model-based upscaling with efficient CPU-based resizing, offering granular control over output dimensions and quality. Ideal for asset pipelines, UI prototyping, and generative workflows.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "borisfaley",
|
||||
"title": "ComfyUI-ACES-EXR-OCIOr [UNSAFE]",
|
||||
"reference": "https://github.com/borisfaley/ComfyUI-ACES-EXR-OCIO",
|
||||
"files": [
|
||||
"https://github.com/borisfaley/ComfyUI-ACES-EXR-OCIO"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Save images and videos in ACESCg or ACES-2065-1[w/This nodepack contains a node that can write files to an arbitrary path.]"
|
||||
},
|
||||
{
|
||||
"author": "NSFW-API",
|
||||
"title": "ComfyUI-Embedding-Delta-Adapter",
|
||||
"reference": "https://github.com/NSFW-API/ComfyUI-Embedding-Delta-Adapter",
|
||||
"files": [
|
||||
"https://github.com/NSFW-API/ComfyUI-Embedding-Delta-Adapter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Load EmbDelta Adapter, Apply EmbDelta (WAN TextEmbeds)"
|
||||
},
|
||||
{
|
||||
"author": "clcimir",
|
||||
"title": "FileTo64",
|
||||
"reference": "https://github.com/clcimir/FileTo64",
|
||||
"files": [
|
||||
"https://github.com/clcimir/FileTo64"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI FileTo64"
|
||||
},
|
||||
{
|
||||
"author": "chaserhkj",
|
||||
"title": "ComfyUI Chaser Custom Nodes",
|
||||
"reference": "https://github.com/chaserhkj/ComfyUI-Chaser-nodes",
|
||||
"files": [
|
||||
"https://github.com/chaserhkj/ComfyUI-Chaser-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Upload image(s) to WebDAV, Upload video as WebM to WebDAV, Load image from WebDAV"
|
||||
},
|
||||
{
|
||||
"author": "LittleTechPomp",
|
||||
"title": "comfyui-pixxio",
|
||||
"reference": "https://github.com/LittleTechPomp/comfyui-pixxio",
|
||||
"files": [
|
||||
"https://github.com/LittleTechPomp/comfyui-pixxio"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Load Image from Pixx.io, Auto-Upload Image to Pixxio Collection"
|
||||
},
|
||||
{
|
||||
"author": "RomanticQq",
|
||||
"title": "ComfyUI-Groudingdino-Sam",
|
||||
"reference": "https://github.com/RomanticQq/ComfyUI-Groudingdino-Sam",
|
||||
"files": [
|
||||
"https://github.com/RomanticQq/ComfyUI-Groudingdino-Sam"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: GroundingDino, GroundedSam2CutGaussian"
|
||||
},
|
||||
{
|
||||
"author": "Firetheft",
|
||||
"title": "ComfyUI Local Media Manager [UNSAFE]",
|
||||
"reference": "https://github.com/Firetheft/ComfyUI_Local_Image_Gallery",
|
||||
"files": [
|
||||
"https://github.com/Firetheft/ComfyUI_Local_Image_Gallery"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "The Ultimate Local File Manager for Images, Videos, and Audio in ComfyUI.[w/This nodepack provides functionality to access files through an endpoint.]"
|
||||
},
|
||||
{
|
||||
"author": "Omario92",
|
||||
"title": "ComfyUI-OmarioNodes",
|
||||
"reference": "https://github.com/Omario92/ComfyUI-OmarioNodes",
|
||||
"files": [
|
||||
"https://github.com/Omario92/ComfyUI-OmarioNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Dual Endpoint Color Blend (by Frames)"
|
||||
},
|
||||
{
|
||||
"author": "locphan201",
|
||||
"title": "ComfyUI-Alter-Nodes",
|
||||
"reference": "https://github.com/locphan201/ComfyUI-Alter-Nodes",
|
||||
"files": [
|
||||
"https://github.com/locphan201/ComfyUI-Alter-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Alter MMAudio Config, Alter MMAudio Model Loader, Alter MMAudio Feature Utils, Alter MMAudio Sampler"
|
||||
},
|
||||
{
|
||||
"author": "mrCodinghero",
|
||||
"title": "ComfyUI File Transfer Plugin (comfyui-rsync-plugin) [UNSAFE]",
|
||||
"reference": "https://github.com/tg-tjmitchell/comfyui-rsync-plugin",
|
||||
"files": [
|
||||
"https://github.com/tg-tjmitchell/comfyui-rsync-plugin"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Lightweight helper for using rsync and rclone from ComfyUI with a dedicated UI panel. This repository contains Python wrappers for file transfer CLI tools and a ComfyUI plugin that adds a user-friendly panel for file transfer operations."
|
||||
},
|
||||
{
|
||||
"author": "mrCodinghero",
|
||||
"title": "ComfyUI-Codinghero",
|
||||
"reference": "https://github.com/mrCodinghero/ComfyUI-Codinghero",
|
||||
"files": [
|
||||
"https://github.com/mrCodinghero/ComfyUI-Codinghero"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Image Size, Video Settings"
|
||||
},
|
||||
{
|
||||
"author": "Vsolon",
|
||||
"title": "ComfyUI-CBZ-Pack [UNSAFE]",
|
||||
"reference": "https://github.com/Vsolon/ComfyUI-CBZ-Pack",
|
||||
"files": [
|
||||
"https://github.com/Vsolon/ComfyUI-CBZ-Pack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes for Handling CBZ MetaData and Images as List or Bash.[w/This nodepack contains a node that has a vulnerability allowing access to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "odedgranot",
|
||||
"title": "ComfyUI Video Save Node [UNSAFE]",
|
||||
"reference": "https://github.com/odedgranot/comfyui_video_save_node",
|
||||
"files": [
|
||||
"https://github.com/odedgranot/comfyui_video_save_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI node that saves video outputs as H.264 .mp4 files with unique naming and returns the file path as a string.[w/This nodepack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "odedgranot",
|
||||
"title": "ComfyUI FFmpeg Node [UNSAFE]",
|
||||
"reference": "https://github.com/odedgranot/comfyui-ffmpeg-node",
|
||||
"files": [
|
||||
"https://github.com/odedgranot/comfyui-ffmpeg-node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI node that allows you to run FFmpeg commands directly within your ComfyUI workflows. [w/This nodepack contains a vulnerability that allows remote code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "viik420",
|
||||
"title": "Model Copy Node for ComfyUI [UNSAFE]",
|
||||
"reference": "https://github.com/apeirography/ModelCopyNode",
|
||||
"files": [
|
||||
"https://github.com/apeirography/ModelCopyNode"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A simple ComfyUI custom node that copies model files from the models/ folder to the output/ folder.[w/This nodepack has a vulnerability that allows writing files to arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "Maff3u",
|
||||
"title": "MattiaNodes - Points Editor On Cropped [WIP]",
|
||||
"reference": "https://github.com/Maff3u/MattiaNodes",
|
||||
"files": [
|
||||
"https://github.com/Maff3u/MattiaNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A standalone ComfyUI custom node for interactive coordinate editing with crop factor correction.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "viik420",
|
||||
"title": "AdvancedModelDownloader [UNSAFE]",
|
||||
"reference": "https://github.com/viik420/AdvancedModelDownloader",
|
||||
"files": [
|
||||
"https://github.com/viik420/AdvancedModelDownloader"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom node for ComfyUI that adds a powerful, integrated downloader to the main menu, complete with an automatic update checker.[w/This nodepack provides functionality to access files through an endpoint.]"
|
||||
},
|
||||
{
|
||||
"author": "DenRakEiw",
|
||||
"title": "Comfyui-Aspect-Ratio-Processor [WIP]",
|
||||
"reference": "https://github.com/DenRakEiw/Comfyui-Aspect-Ratio-Processor",
|
||||
"files": [
|
||||
"https://github.com/DenRakEiw/Comfyui-Aspect-Ratio-Processor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Comfyui Aspect Ratio Processor 2:3 / 3:2\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "yuvraj108c",
|
||||
"title": "ComfyUI HYPIR [NAME CONFLICT]",
|
||||
"reference": "https://github.com/yuvraj108c/ComfyUI-HYPIR",
|
||||
"files": [
|
||||
"https://github.com/yuvraj108c/ComfyUI-HYPIR"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project is a ComfyUI wrapper for [a/HYPIR](https://github.com/XPixelGroup/HYPIR) (Harnessing Diffusion-Yielded Score Priors for Image Restoration)"
|
||||
},
|
||||
{
|
||||
"author": "miabrahams",
|
||||
"title": "ComfyUI-WebAutomation [UNSAFE]",
|
||||
"reference": "https://github.com/miabrahams/ComfyUI-WebAutomation",
|
||||
"files": [
|
||||
"https://github.com/miabrahams/ComfyUI-WebAutomation"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Automation for ComfyUI Web UI [w/This nodepack provides functionality to access files through an endpoint.]"
|
||||
},
|
||||
{
|
||||
"author": "kblueleaf",
|
||||
"title": "HDM [WIP]",
|
||||
"reference": "https://github.com/KohakuBlueleaf/HDM-ext",
|
||||
"files": [
|
||||
"https://github.com/KohakuBlueleaf/HDM-ext"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "HDM(HomeDiffusionModel) Extension"
|
||||
},
|
||||
{
|
||||
"author": "Rizzlord",
|
||||
"title": "ComfyUI-SeqTex",
|
||||
"reference": "https://github.com/Rizzlord/ComfyUI-SeqTex",
|
||||
"files": [
|
||||
"https://github.com/Rizzlord/ComfyUI-SeqTex"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: SeqTex Load Mesh, SeqTex Loader, SeqTex Step 1: Process Mesh, SeqTex Step 2: Generate Condition, SeqTex Step 3: Generate Texture, SeqTex Step 4: Apply Texture to Trimesh"
|
||||
},
|
||||
{
|
||||
"author": "BiodigitalJaz",
|
||||
"title": "ComfyUI-Dafaja-Nodes [WIP]",
|
||||
"reference": "https://github.com/BiodigitalJaz/ComfyUI-Dafaja-Nodes",
|
||||
"files": [
|
||||
"https://github.com/BiodigitalJaz/ComfyUI-Dafaja-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom ComfyUI nodes for 3D mesh processing and STL export\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ervinne13",
|
||||
"title": "ComfyUI-Metadata-Hub",
|
||||
"reference": "https://github.com/ervinne13/ComfyUI-Metadata-Hub",
|
||||
"files": [
|
||||
"https://github.com/ervinne13/ComfyUI-Metadata-Hub"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Metadata Hub, Save Image With Metadata"
|
||||
},
|
||||
{
|
||||
"author": "mico-world",
|
||||
"title": "comfyui_mico_node",
|
||||
"reference": "https://github.com/mico-world/comfyui_mico_node",
|
||||
"files": [
|
||||
"https://github.com/mico-world/comfyui_mico_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: HF UNET Loader"
|
||||
},
|
||||
{
|
||||
"author": "GuusF",
|
||||
"title": "Comfyui_CrazyMaths [WIP]",
|
||||
"reference": "https://github.com/GuusF/Comfyui_CrazyMaths",
|
||||
"files": [
|
||||
"https://github.com/GuusF/Comfyui_CrazyMaths"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom nodepack with a bunch of nodes that helps you generate fun math paterns directly inside of comfyui for masking or other reasons.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "TimothyCMeehan",
|
||||
"title": "ComfyUI CK3 Presets",
|
||||
"reference": "https://github.com/TimothyCMeehan/comfyui-ck3-presets",
|
||||
"files": [
|
||||
"https://github.com/TimothyCMeehan/comfyui-ck3-presets"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom nodes for Crusader Kings III modding - size presets, image resize, style helpers"
|
||||
},
|
||||
{
|
||||
"author": "driftjohnson",
|
||||
"title": "DaimalyadNodes [WIP]",
|
||||
"reference": "https://github.com/MushroomFleet/DJZ-Nodes",
|
||||
"files": [
|
||||
"https://github.com/MushroomFleet/DJZ-Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "AspectSize and 100 more nodes\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "tnil25",
|
||||
"title": "ComfyUI-TJNodes [WIP]",
|
||||
"reference": "https://github.com/tnil25/ComfyUI-TJNodes",
|
||||
"files": [
|
||||
"https://github.com/tnil25/ComfyUI-TJNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Point Tracker\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "zhu733756",
|
||||
"title": "ivan_knows [UNSAFE]",
|
||||
"reference": "https://github.com/Babiduba/ivan_knows",
|
||||
"files": [
|
||||
"https://github.com/Babiduba/ivan_knows"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Role Selector, Save Absolute. [w/This nodepack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "zhu733756",
|
||||
"title": "Comfyui-Anything-Converter [UNSAFE]",
|
||||
"reference": "https://github.com/zhu733756/Comfyui-Anything-Converter",
|
||||
"files": [
|
||||
"https://github.com/zhu733756/Comfyui-Anything-Converter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a custom node extension designed for ComfyUI, providing JSON/TEXT/IMG handling functionality etc.[w/This nodepack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "twj515895394",
|
||||
"title": "ComfComfyUI-LowMemVideoSuite [UNSAFE]",
|
||||
"reference": "https://github.com/twj515895394/ComfyUI-LowMemVideoSuite",
|
||||
"files": [
|
||||
"https://github.com/twj515895394/ComfyUI-LowMemVideoSuite"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a low-memory video composition plugin designed for ComfyUI, which uses FFmpeg to combine disk-stored frame images into a video, avoiding loading all frames into memory at once.[w/This nodepack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "chenpipi0807",
|
||||
"title": "ComfyUI-InstantCharacterFlux [WIP]",
|
||||
"reference": "https://github.com/chenpipi0807/ComfyUI-InstantCharacterFlux",
|
||||
"files": [
|
||||
"https://github.com/chenpipi0807/ComfyUI-InstantCharacterFlux"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: IC → FLUX One-Knob, IC Strength Controller (InstantCharacter → FLUX), Load IC Weights, Load SigLIP Vision, Load DINOv2 Vision, Encode Reference Image (InstantCharacter)\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "Randomwalkforest",
|
||||
"title": "Comfyui-Koi-Toolkit",
|
||||
"reference": "https://github.com/Randomwalkforest/Comfyui-Koi-Toolkit",
|
||||
"files": [
|
||||
"https://github.com/Randomwalkforest/Comfyui-Koi-Toolkit"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Koi Toolkit provides advanced nodes"
|
||||
},
|
||||
{
|
||||
"author": "Yuan-ManX",
|
||||
"title": "ComfyUI-Step1X-Edit [NAME CONFLICT]",
|
||||
"reference": "https://github.com/Yuan-ManX/ComfyUI-Step1X-Edit",
|
||||
"files": [
|
||||
"https://github.com/Yuan-ManX/ComfyUI-Step1X-Edit"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Make Step1X-Edit avialbe in ComfyUI."
|
||||
},
|
||||
{
|
||||
"author": "hben35096",
|
||||
"title": "hben35096/ComfyUI-ToolBox [NAME CONFLICT]",
|
||||
"id": "hben-toolbox",
|
||||
"reference": "https://github.com/hben35096/ComfyUI-ToolBox",
|
||||
"files": [
|
||||
"https://github.com/hben35096/ComfyUI-ToolBox"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A collection of utility nodes for ComfyUI, including audio/video processing, file uploads, and AI image generation."
|
||||
},
|
||||
{
|
||||
"author": "locphan201",
|
||||
"title": "ComfyUI-Alternatives",
|
||||
"reference": "https://github.com/locphan201/ComfyUI-Alternatives",
|
||||
"files": [
|
||||
"https://github.com/locphan201/ComfyUI-Alternatives"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: LoraPreLoader, LoraApplier"
|
||||
},
|
||||
{
|
||||
"author": "tg-tjmitchell",
|
||||
"title": "ComfyUI Manager Package Lister",
|
||||
"reference": "https://github.com/tg-tjmitchell/comfyui-custom-node-lister",
|
||||
"files": [
|
||||
"https://github.com/tg-tjmitchell/comfyui-custom-node-lister"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that lists installed custom nodepackages in ComfyUI Manager compatible format, providing the exact package names and install commands for sharing or reinstalling."
|
||||
},
|
||||
{
|
||||
"author": "duckmartians",
|
||||
"title": "Duck_Nodes [UNSAFE]",
|
||||
"reference": "https://github.com/duckmartians/Duck_Nodes",
|
||||
"files": [
|
||||
"https://github.com/duckmartians/Duck_Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load data from Google Sheets, Google Docs, Excel, Word, and TXT with built-in login system for ComfyUI.[w/This nodepack contains a node with a vulnerability that allows reading files from arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "xsai-collab",
|
||||
"title": "ComfyUI-CombineVideoAndSubtitle",
|
||||
"reference": "https://github.com/xsai-collab/ComfyUI-CombineVideoAndSubtitle",
|
||||
"files": [
|
||||
"https://github.com/xsai-collab/ComfyUI-CombineVideoAndSubtitle"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Combine Video and Subtitle"
|
||||
},
|
||||
{
|
||||
"author": "Lovzu",
|
||||
"title": "ComfyUI-Qwen [NAME CONFLICT]",
|
||||
@@ -531,6 +50,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that randomly selects LoRA files by category and automatically applies corresponding trigger words.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "AcademiaSD",
|
||||
"title": "comfyui_AcademiaSD",
|
||||
"reference": "https://github.com/AcademiaSD/comfyui_AcademiaSD",
|
||||
"files": [
|
||||
"https://github.com/AcademiaSD/comfyui_AcademiaSD"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Counter (from file), Reset Counter (to file), Padded File Name, Prompt Batch Selector (by line)"
|
||||
},
|
||||
{
|
||||
"author": "idoru",
|
||||
"title": "Filestash Upload Node [UNSAFE]",
|
||||
@@ -563,13 +92,13 @@
|
||||
},
|
||||
{
|
||||
"author": "KY-2000",
|
||||
"title": "comfyui-ksampler-tester-loop",
|
||||
"title": "ComfyUI-Sampler-Scheduler-Loop",
|
||||
"reference": "https://github.com/KY-2000/comfyui-ksampler-tester-loop",
|
||||
"files": [
|
||||
"https://github.com/KY-2000/comfyui-ksampler-tester-loop"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Batch samplers, schedulers, cfg, shift and steps tester custom node, automatic looping functionality for Ksampler node"
|
||||
"description": "A comprehensive collection of custom nodes for ComfyUI that provides automatic looping functionality through samplers, schedulers, and various parameters. Perfect for batch testing, parameter optimization, and automated workflows."
|
||||
},
|
||||
{
|
||||
"author": "xgfone",
|
||||
@@ -664,9 +193,9 @@
|
||||
{
|
||||
"author": "JasonW146",
|
||||
"title": "JasonW146",
|
||||
"reference": "https://github.com/pururin777/ComfyUI-Manual-Openpose",
|
||||
"reference": "https://github.com/JasonW146/ComfyUI-Manual-Openpose",
|
||||
"files": [
|
||||
"https://github.com/pururin777/ComfyUI-Manual-Openpose"
|
||||
"https://github.com/JasonW146/ComfyUI-Manual-Openpose"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI node that provides the ability to manually map out Controlnet Openpose landmarks for a batch of images."
|
||||
@@ -929,7 +458,7 @@
|
||||
"https://github.com/thavocado/comfyui-danbooru-lookup"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI custom node that performs FAISS cosine similarity lookup on Danbooru embeddings using multiple input modes: CLIP conditioning, images with WD14 tagging, or text tags.[w/This nodepack installs its dependencies automatically during execution.]"
|
||||
"description": "A ComfyUI custom node that performs FAISS cosine similarity lookup on Danbooru embeddings using multiple input modes: CLIP conditioning, images with WD14 tagging, or text tags.[w/This node pack installs its dependencies automatically during execution.]"
|
||||
},
|
||||
{
|
||||
"author": "love2hina-net",
|
||||
@@ -949,7 +478,7 @@
|
||||
"https://github.com/DenRakEiw/DenRakEiw_Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom nodepack for ComfyUI that provides utility nodes for image generation and manipulation.\nNOTE: The files in the repo are not organized."
|
||||
"description": "A custom node pack for ComfyUI that provides utility nodes for image generation and manipulation.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ahmedbana",
|
||||
@@ -969,7 +498,7 @@
|
||||
"https://github.com/ahmedbana/File-Rename"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A custom ComfyUI nodepackage that allows you to rename files with incremented numbers based on various mathematical operations. Includes both basic and advanced functionality.[w/This nodepack includes a node that can rename files to arbitrary paths.]"
|
||||
"description": "A custom ComfyUI node package that allows you to rename files with incremented numbers based on various mathematical operations. Includes both basic and advanced functionality.[w/This node pack includes a node that can rename files to arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "ahmedbana",
|
||||
@@ -1029,7 +558,7 @@
|
||||
"https://github.com/RamonGuthrie/ComfyUI-RBG-LoraConverter"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A node for converting LoRA (Low-Rank Adaptation) keys in ComfyUI.[w/This nodepack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
"description": "A node for converting LoRA (Low-Rank Adaptation) keys in ComfyUI. [w/This node pack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "Estanislao-Oviedo",
|
||||
@@ -1074,9 +603,9 @@
|
||||
{
|
||||
"author": "Jpzz",
|
||||
"title": "IxiWorks StoryBoard Nodes [WIP]",
|
||||
"reference": "https://github.com/IXIWORKS-KIMJUNGHO/comfyui-ixiworks",
|
||||
"reference": "https://github.com/Jpzz/comfyui-ixiworks",
|
||||
"files": [
|
||||
"https://github.com/IXIWORKS-KIMJUNGHO/comfyui-ixiworks"
|
||||
"https://github.com/Jpzz/comfyui-ixiworks"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "StoryBoard nodes for ComfyUI - Parse JSON templates and build prompts for generative movie creation\nNOTE: The files in the repo are not organized."
|
||||
@@ -1139,7 +668,7 @@
|
||||
"https://github.com/stalkervr/comfyui-custom-path-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes for path handling and image cropping.[w/This nodepack contains a node that has a vulnerability allowing access to arbitrary file paths.]"
|
||||
"description": "Nodes for path handling and image cropping.[w/This node pack contains a node that has a vulnerability allowing access to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "gorillaframeai",
|
||||
@@ -1239,7 +768,7 @@
|
||||
"https://github.com/zopieux/ComfyUI-zopi"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Eval Python, Load TensortRT + checkpoint + CLIP + VAE [w/This nodepack contains a vulnerability that allows remote code execution.]"
|
||||
"description": "NODES: Eval Python, Load TensortRT + checkpoint + CLIP + VAE [w/This node pack contains a vulnerability that allows remote code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "przewodo",
|
||||
@@ -1311,6 +840,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A Kontext Bench-style ComfyUI image difference analysis node that supports instruction-based prompt generation and batch TXT editing.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "TinyBeeman",
|
||||
"title": "ComfyUI-TinyBee",
|
||||
"reference": "https://github.com/TinyBeeman/ComfyUI-TinyBee",
|
||||
"files": [
|
||||
"https://github.com/TinyBeeman/ComfyUI-TinyBee"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: List Count, Random Entry, Indexed Entry, Incrementer, Get File List"
|
||||
},
|
||||
{
|
||||
"author": "Tr1dae",
|
||||
"title": "ComfyUI-CustomNodes-MVM",
|
||||
@@ -1429,7 +968,7 @@
|
||||
"https://github.com/orion4d/ComfyUI_unified_list_selector"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This project is a custom node for ComfyUI that allows you to dynamically load lists from text (.txt) or CSV (.csv) files and select an item to use in your workflow. It features a manual selection mode (via a dropdown list) and a random selection mode, as well as the ability to add prefixes and suffixes to the selected text.[w/This nodepack contains a node with a vulnerability that allows reading files from arbitrary paths.]"
|
||||
"description": "This project is a custom node for ComfyUI that allows you to dynamically load lists from text (.txt) or CSV (.csv) files and select an item to use in your workflow. It features a manual selection mode (via a dropdown list) and a random selection mode, as well as the ability to add prefixes and suffixes to the selected text.[w/This node pack contains a node with a vulnerability that allows reading files from arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "kongds1999",
|
||||
@@ -1504,9 +1043,9 @@
|
||||
{
|
||||
"author": "pixixai",
|
||||
"title": "ComfyUI_Pixix-Tools [UNSAFE/WIP]",
|
||||
"reference": "https://github.com/pixixai/ComfyUI_pixixTools",
|
||||
"reference": "https://github.com/pixixai/ComfyUI_Pixix-Tools",
|
||||
"files": [
|
||||
"https://github.com/pixixai/ComfyUI_pixixTools"
|
||||
"https://github.com/pixixai/ComfyUI_Pixix-Tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Load Text (from folder)\nNOTE: The files in the repo are not organized.[w/The contents of files from arbitrary paths can be read remotely through this node.]"
|
||||
@@ -1760,7 +1299,7 @@
|
||||
"https://github.com/akatz-ai/ComfyUI-Execution-Inversion"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Contains nodes related to the new execution inversion engine in ComfyUI. nodepack originally from [a/https://github.com/BadCafeCode/execution-inversion-demo-comfyui](https://github.com/BadCafeCode/execution-inversion-demo-comfyui)"
|
||||
"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",
|
||||
@@ -2070,7 +1609,7 @@
|
||||
"https://github.com/retech995/Save_Florence2_Bulk_Prompts"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This comfyui node helps save image[w/This nodepack contains a node that can write files to an arbitrary path.]"
|
||||
"description": "This comfyui node helps save image[w/This node can write files to an arbitrary path.]"
|
||||
},
|
||||
{
|
||||
"author": "Oct7",
|
||||
@@ -2140,7 +1679,7 @@
|
||||
"https://github.com/gamtruliar/ComfyUI-N_SwapInput"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a simple tool for swapping input folders with custom suffix in comfy-UI[w/]This nodepack performs deletion operations on local files and contains a vulnerability that allows arbitrary paths to be deleted."
|
||||
"description": "This is a simple tool for swapping input folders with custom suffix in comfy-UI[w/]This node pack performs deletion operations on local files and contains a vulnerability that allows arbitrary paths to be deleted."
|
||||
},
|
||||
{
|
||||
"author": "bulldog68",
|
||||
@@ -2170,7 +1709,7 @@
|
||||
"https://github.com/pictorialink/ComfyUI-static-resource"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Use model bending to push your model beyond its visuals' limits. These nodes allow you to apply transformations to the intemediate densoising steps during sampling, e.g. add, multiplty, scale, rotate, dilate, erode ..etc.[w/This nodepack includes a feature that allows downloading remote files to arbitrary local paths. This is a vulnerability that can lead to Remote Code Execution.]"
|
||||
"description": "Use model bending to push your model beyond its visuals' limits. These nodes allow you to apply transformations to the intemediate densoising steps during sampling, e.g. add, multiplty, scale, rotate, dilate, erode ..etc.[w/This node pack includes a feature that allows downloading remote files to arbitrary local paths. This is a vulnerability that can lead to Remote Code Execution.]"
|
||||
},
|
||||
{
|
||||
"author": "brace-great",
|
||||
@@ -2240,7 +1779,7 @@
|
||||
"https://github.com/abuzreq/ComfyUI-Model-Bending"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Use model bending to push your model beyond its visuals' limits. These nodes allow you to apply transformations to the intemediate densoising steps during sampling, e.g. add, multiplty, scale, rotate, dilate, erode ..etc.[w/This nodepack contains a vulnerability that allows remote code execution.]"
|
||||
"description": "Use model bending to push your model beyond its visuals' limits. These nodes allow you to apply transformations to the intemediate densoising steps during sampling, e.g. add, multiplty, scale, rotate, dilate, erode ..etc.[w/This node pack contains a vulnerability that allows remote code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "Stable Diffusion VN",
|
||||
@@ -2251,7 +1790,7 @@
|
||||
"https://github.com/StableDiffusionVN/SDVN_Comfy_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Update IC Lora Layout Support Node[w/This nodepack contains a vulnerability that allows remote code execution.]"
|
||||
"description": "Update IC Lora Layout Support Node[w/This node pack contains a vulnerability that allows remote code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "Sephrael",
|
||||
@@ -2451,7 +1990,7 @@
|
||||
"https://github.com/qlikpetersen/ComfyUI-AI_Tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: DoLogin, HttpRequest, Json2String, String2Json, CreateListString, CreateListJSON, Query_OpenAI, Image_Attachment, JSON_Attachment, String_Attachment, RunPython\n[w/This nodepack contains a node with a vulnerability that allows arbitrary code execution.]"
|
||||
"description": "NODES: DoLogin, HttpRequest, Json2String, String2Json, CreateListString, CreateListJSON, Query_OpenAI, Image_Attachment, JSON_Attachment, String_Attachment, RunPython\n[w/This node pack contains a node with a vulnerability that allows arbitrary code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "MuAIGC",
|
||||
@@ -2601,7 +2140,7 @@
|
||||
"https://github.com/erosDiffusion/ComfyUI-enricos-json-file-load-and-value-selector"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "this node lists json files in the ComfyUI input folder[w/If this nodepack is installed and the server is running with remote access enabled, it can read the contents of JSON files located in arbitrary paths.]"
|
||||
"description": "this node lists json files in the ComfyUI input folder[w/If this node pack is installed and the server is running with remote access enabled, it can read the contents of JSON files located in arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "yichengup",
|
||||
@@ -2621,7 +2160,7 @@
|
||||
"https://github.com/rakki194/ComfyUI_WolfSigmas"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom nodepack for ComfyUI provides a suite of tools for generating and manipulating sigma schedules for diffusion models. These nodes are particularly useful for fine-tuning the sampling process, experimenting with different step counts, and adapting schedules for specific models.[w/Security Warning: Remote Code Execution]"
|
||||
"description": "This custom node pack for ComfyUI provides a suite of tools for generating and manipulating sigma schedules for diffusion models. These nodes are particularly useful for fine-tuning the sampling process, experimenting with different step counts, and adapting schedules for specific models.[w/Security Warning: Remote Code Execution]"
|
||||
},
|
||||
{
|
||||
"author": "xl0",
|
||||
@@ -2922,6 +2461,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI implementation of the partfield nvidea segmentation models\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-textarea-is-shit",
|
||||
"reference": "https://github.com/shinich39/comfyui-textarea-is-shit",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-textarea-is-shit"
|
||||
],
|
||||
"description": "HTML gives me a textarea like piece of shit.",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-nothing-happened",
|
||||
@@ -3150,7 +2699,7 @@
|
||||
"https://github.com/lucafoscili/lf-nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom nodes with a touch of extra UX, including: history for primitives, JSON manipulation, logic switches with visual feedback, LLM chat... and more!\n[w/This nodepack contains a node with a vulnerability that allows arbitrary code execution.]"
|
||||
"description": "Custom nodes with a touch of extra UX, including: history for primitives, JSON manipulation, logic switches with visual feedback, LLM chat... and more!\n[w/This node pack contains a node with a vulnerability that allows arbitrary code execution.]"
|
||||
},
|
||||
{
|
||||
"author": "jerryname2022",
|
||||
@@ -3220,7 +2769,7 @@
|
||||
"https://github.com/WaiyanLing/ComfyUI-Tracking"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI-Tracking This nodepack helps to conveniently collect invocation data from workflows for further study.\nNOTE: The files in the repo are not organized."
|
||||
"description": "ComfyUI-Tracking This node pack helps to conveniently collect invocation data from workflows for further study.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "vladp0727",
|
||||
@@ -3370,7 +2919,7 @@
|
||||
"https://github.com/dogcomplex/ComfyUI-LOKI"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Glamour\nNOTE: This nodepack installs pip dependencies outside the control of ComfyUI-Manager."
|
||||
"description": "NODES: Glamour\nNOTE: This node pack installs pip dependencies outside the control of ComfyUI-Manager."
|
||||
},
|
||||
{
|
||||
"author": "hunzmusic",
|
||||
@@ -3530,7 +3079,7 @@
|
||||
"https://github.com/Stable-X/ComfyUI-Hi3DGen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension integrates [a/Hi3DGen](https://github.com/Stable-X/Hi3DGen) into ComfyUI, allowing user to generate high-fidelity 3D geometry generation from Images.[w/If the *sageattention* package is installed, this nodepack causes problems.]"
|
||||
"description": "This extension integrates [a/Hi3DGen](https://github.com/Stable-X/Hi3DGen) into ComfyUI, allowing user to generate high-fidelity 3D geometry generation from Images.[w/If the *sageattention* package is installed, this node pack causes problems.]"
|
||||
},
|
||||
{
|
||||
"author": "stiffy-committee",
|
||||
@@ -3741,7 +3290,7 @@
|
||||
"https://github.com/cidiro/cid-node-pack"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A lightweight nodepack for ComfyUI that adds a few handy nodes that I use in my workflows"
|
||||
"description": "A lightweight node pack for ComfyUI that adds a few handy nodes that I use in my workflows"
|
||||
},
|
||||
{
|
||||
"author": "CeeVeeR",
|
||||
@@ -4172,7 +3721,7 @@
|
||||
"https://github.com/NEZHA625/ComfyUI-tools-by-dong"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: HuggingFaceUploadNode, ImageDownloader, LoraIterator, FileMoveNode, InputDetectionNode, ...\nNOTE: The files in the repo are not organized.[w/This nodepack includes nodes that can modify arbitrary files.]"
|
||||
"description": "NODES: HuggingFaceUploadNode, ImageDownloader, LoraIterator, FileMoveNode, InputDetectionNode, ...\nNOTE: The files in the repo are not organized.[w/This node pack includes nodes that can modify arbitrary files.]"
|
||||
},
|
||||
{
|
||||
"author": "if-ai",
|
||||
@@ -4212,7 +3761,7 @@
|
||||
"https://github.com/badmike/comfyui-prompt-factory"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A modular system that adds randomness to prompt generation [w/This nodepack is causing a name conflict with https://github.com/satche/comfyui-prompt-factory]"
|
||||
"description": "A modular system that adds randomness to prompt generation [w/This node pack is causing a name conflict with https://github.com/satche/comfyui-prompt-factory]"
|
||||
},
|
||||
{
|
||||
"author": "owengillett",
|
||||
@@ -4272,7 +3821,7 @@
|
||||
"https://github.com/mr-krak3n/ComfyUI-Qwen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This repository contains custom nodes for ComfyUI, designed to facilitate working with language models such as Qwen2.5 and DeepSeek. [w/This nodepack is causing a name conflict with https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen]"
|
||||
"description": "This repository contains custom nodes for ComfyUI, designed to facilitate working with language models such as Qwen2.5 and DeepSeek. [w/This node pack is causing a name conflict with https://github.com/ZHO-ZHO-ZHO/ComfyUI-Qwen]"
|
||||
},
|
||||
{
|
||||
"author": "hiusdev",
|
||||
@@ -4583,7 +4132,7 @@
|
||||
"https://github.com/StartHua/Comfyui_CXH_joy_caption"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Joy_caption_load, Joy_caption\nNOTE:This nodepack has been transitioned to a security screening status due to policy."
|
||||
"description": "Nodes:Joy_caption_load, Joy_caption\nNOTE:This node pack has been transitioned to a security screening status due to policy."
|
||||
},
|
||||
{
|
||||
"author": "kijai",
|
||||
@@ -4783,7 +4332,7 @@
|
||||
"https://github.com/PATATAJEC/ComfyUI-PatatajecNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Path Tool, Color Match Falloff, Sequence Content Zoom, Sequence Blend, Color Picker"
|
||||
"description": "NODES: HyVid Switcher\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "sourceful-official",
|
||||
@@ -4833,7 +4382,7 @@
|
||||
"https://github.com/x3bits/ComfyUI-Power-Flow"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI nodepackage that introduces common programming logic to enhance the flexibility of ComfyUI workflows. It supports features such as function definition and execution, 'for' loops, 'while' loops, and Python code execution.\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||
"description": "A ComfyUI node package that introduces common programming logic to enhance the flexibility of ComfyUI workflows. It supports features such as function definition and execution, 'for' loops, 'while' loops, and Python code execution.\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||
},
|
||||
{
|
||||
"author": "EmilioPlumed",
|
||||
@@ -4893,7 +4442,7 @@
|
||||
"https://github.com/gitmylo/FlowNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI nodepack containing nodes for basic programming logic."
|
||||
"description": "A ComfyUI node pack containing nodes for basic programming logic."
|
||||
},
|
||||
{
|
||||
"author": "chengzeyi",
|
||||
@@ -4993,7 +4542,7 @@
|
||||
"https://github.com/ciga2011/ComfyUI-AppGen"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A ComfyUI nodepack designed to generate and edit Single Page Applications (SPAs) using natural language.[w/This extension allows arbitrary JavaScript code to be executed through the execution of workflows.]"
|
||||
"description": "A ComfyUI node pack designed to generate and edit Single Page Applications (SPAs) using natural language.[w/This extension allows arbitrary JavaScript code to be executed through the execution of workflows.]"
|
||||
},
|
||||
{
|
||||
"author": "DraconicDragon",
|
||||
@@ -5093,7 +4642,7 @@
|
||||
"https://github.com/watarika/ComfyUI-Text-Utility"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Custom node to handle text.[w/This nodepack contains a custom node that poses a security risk by providing the ability to read text from arbitrary paths.]"
|
||||
"description": "Custom node to handle text.[w/This node pack contains a custom node that poses a security risk by providing the ability to read text from arbitrary paths.]"
|
||||
},
|
||||
{
|
||||
"author": "mehbebe",
|
||||
@@ -5113,7 +4662,7 @@
|
||||
"https://github.com/karthikg-09/ComfyUI-3ncrypt"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Save Image+[w/The web extension of this nodepack modifies part of ComfyUI's asset files.]"
|
||||
"description": "NODES: Save Image+[w/The web extension of this node pack modifies part of ComfyUI's asset files.]"
|
||||
},
|
||||
{
|
||||
"author": "AustinMroz",
|
||||
@@ -5265,7 +4814,7 @@
|
||||
"https://github.com/Eagle-CN/ComfyUI-Addoor"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: AD_BatchImageLoadFromDir, AD_DeleteLocalAny, AD_TextListToString, AD_AnyFileList, AD_ZipSave, AD_ImageSaver, AD_FluxTrainStepMath, AD_TextSaver, AD_PromptReplace.\nNOTE: This nodepack includes nodes that can delete arbitrary files."
|
||||
"description": "NODES: AD_BatchImageLoadFromDir, AD_DeleteLocalAny, AD_TextListToString, AD_AnyFileList, AD_ZipSave, AD_ImageSaver, AD_FluxTrainStepMath, AD_TextSaver, AD_PromptReplace.\nNOTE: This node pack includes nodes that can delete arbitrary files."
|
||||
},
|
||||
{
|
||||
"author": "backearth1",
|
||||
@@ -6005,9 +5554,9 @@
|
||||
{
|
||||
"author": "monate0615",
|
||||
"title": "ComfyUI-Simple-Image-Tools [WIP]",
|
||||
"reference": "https://github.com/alchemist-software-engineer/ComfyUI-Simple-Image-Tools",
|
||||
"reference": "https://github.com/gondar-software/ComfyUI-Simple-Image-Tools",
|
||||
"files": [
|
||||
"https://github.com/alchemist-software-engineer/ComfyUI-Simple-Image-Tools"
|
||||
"https://github.com/gondar-software/ComfyUI-Simple-Image-Tools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Get mask from image based on alpha (Get Mask From Alpha)\nNOTE: The files in the repo are not organized."
|
||||
@@ -6065,9 +5614,9 @@
|
||||
{
|
||||
"author": "monate0615",
|
||||
"title": "Affine Transform ComfyUI Node [WIP]",
|
||||
"reference": "https://github.com/alchemist-software-engineer/ComfyUI-Affine-Transform",
|
||||
"reference": "https://github.com/gondar-software/ComfyUI-Affine-Transform",
|
||||
"files": [
|
||||
"https://github.com/alchemist-software-engineer/ComfyUI-Affine-Transform"
|
||||
"https://github.com/gondar-software/ComfyUI-Affine-Transform"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This node output the image that are transfromed by affine matrix what is made according to 4 points of output.\nNOTE: The files in the repo are not organized."
|
||||
@@ -6402,7 +5951,7 @@
|
||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom nodepackage for ComfyUI allows users to interact with Dropbox API, enabling image, text, and video uploads, downloads, and management directly from ComfyUI workflows.\nNOTE: The files in the repo are not organized."
|
||||
"description": "This custom node package for ComfyUI allows users to interact with Dropbox API, enabling image, text, and video uploads, downloads, and management directly from ComfyUI workflows.\nNOTE: The files in the repo are not organized."
|
||||
},
|
||||
{
|
||||
"author": "ilovejohnwhite",
|
||||
@@ -6535,6 +6084,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Zoom and Enhance Nodes, Text To String List, Choose String, Define Word, Lookup Word, Substitute Words, Dictionary to JSON, JSON file to Dictionary, JSON to Dictionary, Load Image And Info From Path, CubbyHack, Image to Solid Background"
|
||||
},
|
||||
{
|
||||
"author": "hananbeer",
|
||||
"title": "node_dev - ComfyUI Node Development Helper",
|
||||
"reference": "https://github.com/hananbeer/node_dev",
|
||||
"files": [
|
||||
"https://github.com/hananbeer/node_dev"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Browse to this endpoint to reload custom nodes for more streamlined development:\nhttp://127.0.0.1:8188/node_dev/reload/<module_name>"
|
||||
},
|
||||
{
|
||||
"author": "ChrisColeTech",
|
||||
"title": "ComfyUI-Get-Random-File [UNSAFE]",
|
||||
@@ -6609,9 +6168,9 @@
|
||||
"author": "IuvenisSapiens",
|
||||
"title": "ComfyUI_MiniCPM-V-2_6-int4",
|
||||
"id": "minicpm-v-2_6-int4",
|
||||
"reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-4",
|
||||
"reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4",
|
||||
"files": [
|
||||
"https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-4"
|
||||
"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."
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,178 +1,5 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "takoyaki1118",
|
||||
"title": "ComfyUI-MangaTools [REMOVED]",
|
||||
"reference": "https://github.com/takoyaki1118/ComfyUI-MangaTools",
|
||||
"files": [
|
||||
"https://github.com/takoyaki1118/ComfyUI-MangaTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "NODES: Manga Panel Detector, Manga Panel Dispatcher, GateImage, MangaPageAssembler"
|
||||
},
|
||||
{
|
||||
"author": "lucasgattas",
|
||||
"title": "comfyui-egregora-regional [REMOVED]",
|
||||
"reference": "https://github.com/lucasgattas/comfyui-egregora-regional",
|
||||
"files": [
|
||||
"https://github.com/lucasgattas/comfyui-egregora-regional"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Image Tile Split with Region-Aware Prompting for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "lucasgattas",
|
||||
"title": "comfyui-egregora-tiled [REMOVED]",
|
||||
"reference": "https://github.com/lucasgattas/comfyui-egregora-tiled",
|
||||
"files": [
|
||||
"https://github.com/lucasgattas/comfyui-egregora-tiled"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Tiled regional prompting + tiled VAE decode with seam-free blending for ComfyUI"
|
||||
},
|
||||
{
|
||||
"author": "Seedsa",
|
||||
"title": "ComfyUI Fooocus Nodes [REMOVED]",
|
||||
"id": "fooocus-nodes",
|
||||
"reference": "https://github.com/Seedsa/Fooocus_Nodes",
|
||||
"files": [
|
||||
"https://github.com/Seedsa/Fooocus_Nodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension provides image generation features based on Fooocus."
|
||||
},
|
||||
{
|
||||
"author": "zhilemann",
|
||||
"title": "ComfyUI-moondream2 [REMOVED]",
|
||||
"reference": "https://github.com/zhilemann/ComfyUI-moondream2",
|
||||
"files": [
|
||||
"https://github.com/zhilemann/ComfyUI-moondream2"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "nodes for nightly moondream2 VLM inference\nsupports only captioning and visual queries at the moment"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-textarea-is-shit [REMOVED]",
|
||||
"reference": "https://github.com/shinich39/comfyui-textarea-is-shit",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-textarea-is-shit"
|
||||
],
|
||||
"description": "HTML gives me a textarea like piece of shit.",
|
||||
"install_type": "git-clone"
|
||||
},
|
||||
{
|
||||
"author": "shinich39",
|
||||
"title": "comfyui-poor-textarea [REMOVED]",
|
||||
"reference": "https://github.com/shinich39/comfyui-poor-textarea",
|
||||
"files": [
|
||||
"https://github.com/shinich39/comfyui-poor-textarea"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Add commentify, indentation, auto-close brackets in textarea."
|
||||
},
|
||||
{
|
||||
"author": "InfiniNode",
|
||||
"title": "Comfyui-InfiniNode-Model-Suite [UNSAFE/REMOVED]",
|
||||
"reference": "https://github.com/InfiniNode/Comfyui-InfiniNode-Model-Suite",
|
||||
"files": [
|
||||
"https://github.com/InfiniNode/Comfyui-InfiniNode-Model-Suite"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Welcome to the InfiniNode Model Suite, a custom node pack for ComfyUI that transforms the process of manipulating generative AI models. Our suite is a direct implementation of the 'GUI-Based Key Converter Development Plan,' designed to remove technical barriers for advanced AI practitioners and integrate seamlessly with existing image generation pipelines.[w/This node pack contains a node that has a vulnerability allowing write to arbitrary file paths.]"
|
||||
},
|
||||
{
|
||||
"author": "Avalre",
|
||||
"title": "ComfyUI-avaNodes [REMOVED]",
|
||||
"reference": "https://github.com/Avalre/ComfyUI-avaNodes",
|
||||
"files": [
|
||||
"https://github.com/Avalre/ComfyUI-avaNodes"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "These nodes were created to personalize/optimize several ComfyUI nodes for my own use. You can replicate the functionality of most of my nodes by some combination of default ComfyUI nodes and custom nodes from other developers."
|
||||
},
|
||||
{
|
||||
"author": "Alectriciti",
|
||||
"title": "comfyui-creativeprompts [REMOVED]",
|
||||
"reference": "https://github.com/Alectriciti/comfyui-creativeprompts",
|
||||
"files": [
|
||||
"https://github.com/Alectriciti/comfyui-creativeprompts"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A creative alternative to dynamicprompts"
|
||||
},
|
||||
{
|
||||
"author": "flybirdxx",
|
||||
"title": "ComfyUI Sliding Window [REMOVED]",
|
||||
"reference": "https://github.com/PixWizardry/ComfyUI_Sliding_Window",
|
||||
"files": [
|
||||
"https://github.com/PixWizardry/ComfyUI_Sliding_Window"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This set of nodes provides a powerful sliding window or 'tiling' technique for processing long videos and animations in ComfyUI. It allows you to work on animations that are longer than your VRAM would typically allow by breaking the job into smaller, overlapping chunks and seamlessly blending them back together."
|
||||
},
|
||||
{
|
||||
"author": "SykkoAtHome",
|
||||
"title": "Sykko Tools for ComfyUI [REMOVED]",
|
||||
"reference": "https://github.com/SykkoAtHome/ComfyUI_SykkoTools",
|
||||
"files": [
|
||||
"https://github.com/SykkoAtHome/ComfyUI_SykkoTools"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Utilities for working with camera animations inside ComfyUI. The repository currently provides a node for loading camera motion from ASCII FBX files and a corresponding command line helper for debugging."
|
||||
},
|
||||
{
|
||||
"author": "hananbeer",
|
||||
"title": "node_dev - ComfyUI Node Development Helper [REMOVED]",
|
||||
"reference": "https://github.com/hananbeer/node_dev",
|
||||
"files": [
|
||||
"https://github.com/hananbeer/node_dev"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Browse to this endpoint to reload custom nodes for more streamlined development:\nhttp://127.0.0.1:8188/node_dev/reload/<module_name>"
|
||||
},
|
||||
{
|
||||
"author": "Charonartist",
|
||||
"title": "Comfyui_gemini_tts_node [REMOVED]",
|
||||
"reference": "https://github.com/Charonartist/Comfyui_gemini_tts_node",
|
||||
"files": [
|
||||
"https://github.com/Charonartist/Comfyui_gemini_tts_node"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This custom node is a ComfyUI node for generating speech from text using the Gemini 2.5 Flash Preview TTS API."
|
||||
},
|
||||
{
|
||||
"author": "squirrel765",
|
||||
"title": "lorasubdirectory [REMOVED]",
|
||||
"reference": "https://github.com/andrewsthomasj/lorasubdirectory",
|
||||
"files": [
|
||||
"https://github.com/andrewsthomasj/lorasubdirectory"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "only show dropdown of loras ina a given subdirectory"
|
||||
},
|
||||
{
|
||||
"author": "shingo1228",
|
||||
"title": "ComfyUI-send-Eagle(slim) [REVMOED]",
|
||||
"id": "send-eagle",
|
||||
"reference": "https://github.com/shingo1228/ComfyUI-send-eagle-slim",
|
||||
"files": [
|
||||
"https://github.com/shingo1228/ComfyUI-send-eagle-slim"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:Send Webp Image to Eagle. This is an extension node for ComfyUI that allows you to send generated images in webp format to Eagle. This extension node is a re-implementation of the Eagle linkage functions of the previous ComfyUI-send-Eagle node, focusing on the functions required for this node."
|
||||
},
|
||||
{
|
||||
"author": "shingo1228",
|
||||
"title": "ComfyUI-SDXL-EmptyLatentImage [REVMOED]",
|
||||
"id": "sdxl-emptylatent",
|
||||
"reference": "https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage",
|
||||
"files": [
|
||||
"https://github.com/shingo1228/ComfyUI-SDXL-EmptyLatentImage"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Nodes:SDXL Empty Latent Image. An extension node for ComfyUI that allows you to select a resolution from the pre-defined json files and output a Latent Image."
|
||||
},
|
||||
{
|
||||
"author": "chaunceyyann",
|
||||
"title": "ComfyUI Image Processing Nodes [REMOVED]",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -341,16 +341,6 @@
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "A minimal test suite demonstrating how remote COMBO inputs behave in ComfyUI, with and without force_input"
|
||||
},
|
||||
{
|
||||
"author": "J1mB091",
|
||||
"title": "ComfyUI-J1mB091 Custom Nodes",
|
||||
"reference": "https://github.com/J1mB091/ComfyUI-J1mB091",
|
||||
"files": [
|
||||
"https://github.com/J1mB091/ComfyUI-J1mB091"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "Vibe Coded ComfyUI Custom Nodes"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
[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.36"
|
||||
version = "3.35"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-nio", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
||||
|
||||
[project.urls]
|
||||
Repository = "https://github.com/ltdrdata/ComfyUI-Manager"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
GitPython
|
||||
PyGithub
|
||||
matrix-client==0.4.0
|
||||
matrix-nio
|
||||
transformers
|
||||
huggingface-hub>0.20
|
||||
typer
|
||||
|
||||
Reference in New Issue
Block a user