Compare commits
69 Commits
fix/missin
...
reverted-m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d82e1f5d67 | ||
|
|
621de1ab99 | ||
|
|
7da00796e5 | ||
|
|
6086419cb6 | ||
|
|
5bc1f2f2c0 | ||
|
|
32a83b211e | ||
|
|
bead7b3a7f | ||
|
|
815d6d6572 | ||
|
|
95ce812992 | ||
|
|
9a36f4748c | ||
|
|
50b7849a35 | ||
|
|
6f1245b27c | ||
|
|
cc87ed3899 | ||
|
|
1d9037fefe | ||
|
|
03016e2d16 | ||
|
|
3d41617f4e | ||
|
|
35151ffdd1 | ||
|
|
4527d41a7a | ||
|
|
553cba12f3 | ||
|
|
116e068ac3 | ||
|
|
1010dd2d28 | ||
|
|
7354242906 | ||
|
|
e7d0b158e9 | ||
|
|
330c4657b1 | ||
|
|
72a109f109 | ||
|
|
cf45c51dfb | ||
|
|
0b013adb34 | ||
|
|
7457d91f64 | ||
|
|
7fe1159426 | ||
|
|
c2665e3677 | ||
|
|
d63de803a4 | ||
|
|
11aca3513c | ||
|
|
561c9f40e5 | ||
|
|
54ed13aadf | ||
|
|
109cc21337 | ||
|
|
7e46b30fa5 | ||
|
|
0ba112c2c7 | ||
|
|
fc15d94170 | ||
|
|
dcb37d9c55 | ||
|
|
755b9d6342 | ||
|
|
3d6151c94f | ||
|
|
590bd8c4b9 | ||
|
|
e99aafd876 | ||
|
|
1f0adf8bcf | ||
|
|
dbd5d5fb43 | ||
|
|
a8b0e3641b | ||
|
|
9efb350be9 | ||
|
|
8d9820b3fb | ||
|
|
103f89551a | ||
|
|
6030d961ad | ||
|
|
ee08c9e17f | ||
|
|
48dd9a3240 | ||
|
|
e122e206a6 | ||
|
|
398b905758 | ||
|
|
dc2ec08fe3 | ||
|
|
3bf5edf5c9 | ||
|
|
134bca526c | ||
|
|
3393e58b06 | ||
|
|
eab6cdeee4 | ||
|
|
e8ec1ce8e3 | ||
|
|
b3581564ed | ||
|
|
29e1bd95fd | ||
|
|
8bff401c14 | ||
|
|
41798e9255 | ||
|
|
9e4f0228d1 | ||
|
|
76ee93c98c | ||
|
|
fb1a89efb7 | ||
|
|
aface43554 | ||
|
|
a35f0157b2 |
58
.github/workflows/publish-to-pypi.yml
vendored
Normal file
58
.github/workflows/publish-to-pypi.yml
vendored
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
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
|
from node_package import InstalledNodePackage
|
||||||
|
|
||||||
|
|
||||||
version_code = [3, 35]
|
version_code = [3, 36]
|
||||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -335,7 +335,8 @@ async def share_art(request):
|
|||||||
content_type = assetFileType
|
content_type = assetFileType
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from nio import AsyncClient, LoginResponse, UploadResponse
|
from matrix_client.api import MatrixHttpApi
|
||||||
|
from matrix_client.client import MatrixClient
|
||||||
|
|
||||||
homeserver = 'matrix.org'
|
homeserver = 'matrix.org'
|
||||||
if matrix_auth:
|
if matrix_auth:
|
||||||
@@ -344,35 +345,20 @@ async def share_art(request):
|
|||||||
if not homeserver.startswith("https://"):
|
if not homeserver.startswith("https://"):
|
||||||
homeserver = "https://" + homeserver
|
homeserver = "https://" + homeserver
|
||||||
|
|
||||||
client = AsyncClient(homeserver, matrix_auth['username'])
|
client = MatrixClient(homeserver)
|
||||||
|
try:
|
||||||
# Login
|
token = client.login(username=matrix_auth['username'], password=matrix_auth['password'])
|
||||||
login_resp = await client.login(matrix_auth['password'])
|
if not token:
|
||||||
if not isinstance(login_resp, LoginResponse) or not login_resp.access_token:
|
return web.json_response({"error": "Invalid Matrix credentials."}, content_type='application/json', status=400)
|
||||||
await client.close()
|
except:
|
||||||
return web.json_response({"error": "Invalid Matrix credentials."}, content_type='application/json', status=400)
|
return web.json_response({"error": "Invalid Matrix credentials."}, content_type='application/json', status=400)
|
||||||
|
|
||||||
# Upload asset
|
matrix = MatrixHttpApi(homeserver, token=token)
|
||||||
with open(asset_filepath, 'rb') as f:
|
with open(asset_filepath, 'rb') as f:
|
||||||
upload_resp, _maybe_keys = await client.upload(f, content_type=content_type, filename=filename)
|
mxc_url = matrix.media_upload(f.read(), content_type, filename=filename)['content_uri']
|
||||||
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
|
|
||||||
|
|
||||||
# Upload workflow JSON
|
workflow_json_mxc_url = matrix.media_upload(prompt['workflow'], 'application/json', filename='workflow.json')['content_uri']
|
||||||
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 = ""
|
text_content = ""
|
||||||
if title:
|
if title:
|
||||||
text_content += f"{title}\n"
|
text_content += f"{title}\n"
|
||||||
@@ -380,44 +366,9 @@ async def share_art(request):
|
|||||||
text_content += f"{description}\n"
|
text_content += f"{description}\n"
|
||||||
if credits:
|
if credits:
|
||||||
text_content += f"\ncredits: {credits}\n"
|
text_content += f"\ncredits: {credits}\n"
|
||||||
await client.room_send(
|
matrix.send_message(comfyui_share_room_id, text_content)
|
||||||
room_id=comfyui_share_room_id,
|
matrix.send_content(comfyui_share_room_id, mxc_url, filename, 'm.image')
|
||||||
message_type="m.room.message",
|
matrix.send_content(comfyui_share_room_id, workflow_json_mxc_url, 'workflow.json', 'm.file')
|
||||||
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:
|
except:
|
||||||
import traceback
|
import traceback
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
|
|||||||
@@ -1625,17 +1625,35 @@ export class CustomNodesManager {
|
|||||||
getNodesInWorkflow() {
|
getNodesInWorkflow() {
|
||||||
let usedGroupNodes = new Set();
|
let usedGroupNodes = new Set();
|
||||||
let allUsedNodes = {};
|
let allUsedNodes = {};
|
||||||
|
const visitedGraphs = new Set();
|
||||||
|
|
||||||
for(let k in app.graph._nodes) {
|
const visitGraph = (graph) => {
|
||||||
let node = app.graph._nodes[k];
|
if (!graph || visitedGraphs.has(graph)) return;
|
||||||
|
visitedGraphs.add(graph);
|
||||||
|
|
||||||
if(node.type.startsWith('workflow>')) {
|
const nodes = graph._nodes || graph.nodes || [];
|
||||||
|
for(let k in nodes) {
|
||||||
|
let node = nodes[k];
|
||||||
|
if (!node) continue;
|
||||||
|
|
||||||
|
// If it's a SubgraphNode, recurse into its graph and continue searching
|
||||||
|
if (node.isSubgraphNode?.() && node.subgraph) {
|
||||||
|
visitGraph(node.subgraph);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!node.type) continue;
|
||||||
|
|
||||||
|
// Group nodes / components
|
||||||
|
if(typeof node.type === 'string' && node.type.startsWith('workflow>')) {
|
||||||
usedGroupNodes.add(node.type.slice(9));
|
usedGroupNodes.add(node.type.slice(9));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
allUsedNodes[node.type] = node;
|
allUsedNodes[node.type] = node;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
visitGraph(app.graph);
|
||||||
|
|
||||||
for(let k of usedGroupNodes) {
|
for(let k of usedGroupNodes) {
|
||||||
let subnodes = app.graph.extra.groupNodes[k]?.nodes;
|
let subnodes = app.graph.extra.groupNodes[k]?.nodes;
|
||||||
|
|||||||
@@ -1,5 +1,486 @@
|
|||||||
{
|
{
|
||||||
"custom_nodes": [
|
"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",
|
"author": "Lovzu",
|
||||||
"title": "ComfyUI-Qwen [NAME CONFLICT]",
|
"title": "ComfyUI-Qwen [NAME CONFLICT]",
|
||||||
@@ -50,16 +531,6 @@
|
|||||||
"install_type": "git-clone",
|
"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."
|
"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",
|
"author": "idoru",
|
||||||
"title": "Filestash Upload Node [UNSAFE]",
|
"title": "Filestash Upload Node [UNSAFE]",
|
||||||
@@ -92,13 +563,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "KY-2000",
|
"author": "KY-2000",
|
||||||
"title": "ComfyUI-Sampler-Scheduler-Loop",
|
"title": "comfyui-ksampler-tester-loop",
|
||||||
"reference": "https://github.com/KY-2000/comfyui-ksampler-tester-loop",
|
"reference": "https://github.com/KY-2000/comfyui-ksampler-tester-loop",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/KY-2000/comfyui-ksampler-tester-loop"
|
"https://github.com/KY-2000/comfyui-ksampler-tester-loop"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"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."
|
"description": "Batch samplers, schedulers, cfg, shift and steps tester custom node, automatic looping functionality for Ksampler node"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "xgfone",
|
"author": "xgfone",
|
||||||
@@ -193,9 +664,9 @@
|
|||||||
{
|
{
|
||||||
"author": "JasonW146",
|
"author": "JasonW146",
|
||||||
"title": "JasonW146",
|
"title": "JasonW146",
|
||||||
"reference": "https://github.com/JasonW146/ComfyUI-Manual-Openpose",
|
"reference": "https://github.com/pururin777/ComfyUI-Manual-Openpose",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/JasonW146/ComfyUI-Manual-Openpose"
|
"https://github.com/pururin777/ComfyUI-Manual-Openpose"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI node that provides the ability to manually map out Controlnet Openpose landmarks for a batch of images."
|
"description": "ComfyUI node that provides the ability to manually map out Controlnet Openpose landmarks for a batch of images."
|
||||||
@@ -603,9 +1074,9 @@
|
|||||||
{
|
{
|
||||||
"author": "Jpzz",
|
"author": "Jpzz",
|
||||||
"title": "IxiWorks StoryBoard Nodes [WIP]",
|
"title": "IxiWorks StoryBoard Nodes [WIP]",
|
||||||
"reference": "https://github.com/Jpzz/comfyui-ixiworks",
|
"reference": "https://github.com/IXIWORKS-KIMJUNGHO/comfyui-ixiworks",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/Jpzz/comfyui-ixiworks"
|
"https://github.com/IXIWORKS-KIMJUNGHO/comfyui-ixiworks"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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."
|
"description": "StoryBoard nodes for ComfyUI - Parse JSON templates and build prompts for generative movie creation\nNOTE: The files in the repo are not organized."
|
||||||
@@ -840,16 +1311,6 @@
|
|||||||
"install_type": "git-clone",
|
"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."
|
"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",
|
"author": "Tr1dae",
|
||||||
"title": "ComfyUI-CustomNodes-MVM",
|
"title": "ComfyUI-CustomNodes-MVM",
|
||||||
@@ -1043,9 +1504,9 @@
|
|||||||
{
|
{
|
||||||
"author": "pixixai",
|
"author": "pixixai",
|
||||||
"title": "ComfyUI_Pixix-Tools [UNSAFE/WIP]",
|
"title": "ComfyUI_Pixix-Tools [UNSAFE/WIP]",
|
||||||
"reference": "https://github.com/pixixai/ComfyUI_Pixix-Tools",
|
"reference": "https://github.com/pixixai/ComfyUI_pixixTools",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/pixixai/ComfyUI_Pixix-Tools"
|
"https://github.com/pixixai/ComfyUI_pixixTools"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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.]"
|
"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.]"
|
||||||
@@ -1299,7 +1760,7 @@
|
|||||||
"https://github.com/akatz-ai/ComfyUI-Execution-Inversion"
|
"https://github.com/akatz-ai/ComfyUI-Execution-Inversion"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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)"
|
"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)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "mamorett",
|
"author": "mamorett",
|
||||||
@@ -1609,7 +2070,7 @@
|
|||||||
"https://github.com/retech995/Save_Florence2_Bulk_Prompts"
|
"https://github.com/retech995/Save_Florence2_Bulk_Prompts"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This comfyui node helps save image[w/This node can write files to an arbitrary path.]"
|
"description": "This comfyui node helps save image[w/This nodepack contains a node that can write files to an arbitrary path.]"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "Oct7",
|
"author": "Oct7",
|
||||||
@@ -2461,16 +2922,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI implementation of the partfield nvidea segmentation models\nNOTE: The files in the repo are not organized."
|
"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",
|
"author": "shinich39",
|
||||||
"title": "comfyui-nothing-happened",
|
"title": "comfyui-nothing-happened",
|
||||||
@@ -4332,7 +4783,7 @@
|
|||||||
"https://github.com/PATATAJEC/ComfyUI-PatatajecNodes"
|
"https://github.com/PATATAJEC/ComfyUI-PatatajecNodes"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: HyVid Switcher\nNOTE: The files in the repo are not organized."
|
"description": "NODES: Path Tool, Color Match Falloff, Sequence Content Zoom, Sequence Blend, Color Picker"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "sourceful-official",
|
"author": "sourceful-official",
|
||||||
@@ -5554,9 +6005,9 @@
|
|||||||
{
|
{
|
||||||
"author": "monate0615",
|
"author": "monate0615",
|
||||||
"title": "ComfyUI-Simple-Image-Tools [WIP]",
|
"title": "ComfyUI-Simple-Image-Tools [WIP]",
|
||||||
"reference": "https://github.com/gondar-software/ComfyUI-Simple-Image-Tools",
|
"reference": "https://github.com/alchemist-software-engineer/ComfyUI-Simple-Image-Tools",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/gondar-software/ComfyUI-Simple-Image-Tools"
|
"https://github.com/alchemist-software-engineer/ComfyUI-Simple-Image-Tools"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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."
|
"description": "Get mask from image based on alpha (Get Mask From Alpha)\nNOTE: The files in the repo are not organized."
|
||||||
@@ -5614,9 +6065,9 @@
|
|||||||
{
|
{
|
||||||
"author": "monate0615",
|
"author": "monate0615",
|
||||||
"title": "Affine Transform ComfyUI Node [WIP]",
|
"title": "Affine Transform ComfyUI Node [WIP]",
|
||||||
"reference": "https://github.com/gondar-software/ComfyUI-Affine-Transform",
|
"reference": "https://github.com/alchemist-software-engineer/ComfyUI-Affine-Transform",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/gondar-software/ComfyUI-Affine-Transform"
|
"https://github.com/alchemist-software-engineer/ComfyUI-Affine-Transform"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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."
|
"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."
|
||||||
@@ -6084,16 +6535,6 @@
|
|||||||
"install_type": "git-clone",
|
"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"
|
"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",
|
"author": "ChrisColeTech",
|
||||||
"title": "ComfyUI-Get-Random-File [UNSAFE]",
|
"title": "ComfyUI-Get-Random-File [UNSAFE]",
|
||||||
@@ -6168,9 +6609,9 @@
|
|||||||
"author": "IuvenisSapiens",
|
"author": "IuvenisSapiens",
|
||||||
"title": "ComfyUI_MiniCPM-V-2_6-int4",
|
"title": "ComfyUI_MiniCPM-V-2_6-int4",
|
||||||
"id": "minicpm-v-2_6-int4",
|
"id": "minicpm-v-2_6-int4",
|
||||||
"reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4",
|
"reference": "https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-4",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-2_6-int4"
|
"https://github.com/IuvenisSapiens/ComfyUI_MiniCPM-V-4"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"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."
|
"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,5 +1,178 @@
|
|||||||
{
|
{
|
||||||
"custom_nodes": [
|
"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",
|
"author": "chaunceyyann",
|
||||||
"title": "ComfyUI Image Processing Nodes [REMOVED]",
|
"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,6 +341,16 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A minimal test suite demonstrating how remote COMBO inputs behave in ComfyUI, with and without force_input"
|
"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]
|
[project]
|
||||||
name = "comfyui-manager"
|
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."
|
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
|
||||||
version = "3.35"
|
version = "3.36"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
dependencies = ["GitPython", "PyGithub", "matrix-nio", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Repository = "https://github.com/ltdrdata/ComfyUI-Manager"
|
Repository = "https://github.com/ltdrdata/ComfyUI-Manager"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
GitPython
|
GitPython
|
||||||
PyGithub
|
PyGithub
|
||||||
matrix-nio
|
matrix-client==0.4.0
|
||||||
transformers
|
transformers
|
||||||
huggingface-hub>0.20
|
huggingface-hub>0.20
|
||||||
typer
|
typer
|
||||||
|
|||||||
Reference in New Issue
Block a user