├── .cache └── .cache_directory ├── .github └── workflows │ ├── publish-to-pypi.yml │ ├── publish.yml │ └── ruff.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── alter-list.json ├── channels.list.template ├── check.bat ├── check.sh ├── cm-cli.py ├── cm-cli.sh ├── components └── .gitignore ├── custom-node-list.json ├── docs ├── README.md ├── en │ ├── cm-cli.md │ ├── use_aria2.md │ └── v3.38-userdata-security-migration.md └── ko │ └── cm-cli.md ├── extension-node-map.json ├── extras.json ├── git_helper.py ├── github-stats.json ├── glob ├── README.md ├── cm_global.py ├── cnr_utils.py ├── git_utils.py ├── manager_core.py ├── manager_downloader.py ├── manager_migration.py ├── manager_server.py ├── manager_util.py ├── node_package.py ├── security_check.py └── share_3rdparty.py ├── js ├── README.md ├── cm-api.js ├── comfyui-manager.js ├── comfyui-share-common.js ├── comfyui-share-copus.js ├── comfyui-share-openart.js ├── comfyui-share-youml.js ├── common.js ├── components-manager.js ├── custom-nodes-manager.css ├── custom-nodes-manager.js ├── model-manager.css ├── model-manager.js ├── node_fixer.js ├── popover-helper.js ├── snapshot.js ├── turbogrid.esm.js └── workflow-metadata.js ├── json-checker.py ├── misc └── Impact.pack ├── model-list.json ├── node_db ├── README.md ├── dev │ ├── custom-node-list.json │ ├── extension-node-map.json │ ├── github-stats.json │ ├── model-list.json │ └── scan.sh ├── forked │ ├── custom-node-list.json │ ├── extension-node-map.json │ ├── model-list.json │ └── scan.sh ├── legacy │ ├── alter-list.json │ ├── custom-node-list.json │ ├── extension-node-map.json │ └── model-list.json ├── new │ ├── alter-list.json │ ├── custom-node-list.json │ ├── extension-node-map.json │ └── model-list.json └── tutorial │ ├── custom-node-list.json │ ├── extension-node-map.json │ ├── model-list.json │ └── scan.sh ├── notebooks └── comfyui_colab_with_manager.ipynb ├── openapi.yaml ├── pip_overrides.json.template ├── pip_overrides.osx.template ├── prestartup_script.py ├── pyproject.toml ├── requirements.txt ├── ruff.toml ├── scan.sh ├── scanner.py ├── scripts ├── colab-dependencies.py ├── install-comfyui-venv-linux.sh ├── install-comfyui-venv-win.bat └── install-manager-for-portable-version.bat └── snapshots └── the_snapshot_files_are_located_here /.cache/.cache_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/__init__.py -------------------------------------------------------------------------------- /alter-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/alter-list.json -------------------------------------------------------------------------------- /channels.list.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/channels.list.template -------------------------------------------------------------------------------- /check.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/check.bat -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/check.sh -------------------------------------------------------------------------------- /cm-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/cm-cli.py -------------------------------------------------------------------------------- /cm-cli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python cm-cli.py $* 3 | -------------------------------------------------------------------------------- /components/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.pack 3 | -------------------------------------------------------------------------------- /custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/custom-node-list.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/en/cm-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/docs/en/cm-cli.md -------------------------------------------------------------------------------- /docs/en/use_aria2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/docs/en/use_aria2.md -------------------------------------------------------------------------------- /docs/en/v3.38-userdata-security-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/docs/en/v3.38-userdata-security-migration.md -------------------------------------------------------------------------------- /docs/ko/cm-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/docs/ko/cm-cli.md -------------------------------------------------------------------------------- /extension-node-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/extension-node-map.json -------------------------------------------------------------------------------- /extras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/extras.json -------------------------------------------------------------------------------- /git_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/git_helper.py -------------------------------------------------------------------------------- /github-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/github-stats.json -------------------------------------------------------------------------------- /glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/README.md -------------------------------------------------------------------------------- /glob/cm_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/cm_global.py -------------------------------------------------------------------------------- /glob/cnr_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/cnr_utils.py -------------------------------------------------------------------------------- /glob/git_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/git_utils.py -------------------------------------------------------------------------------- /glob/manager_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/manager_core.py -------------------------------------------------------------------------------- /glob/manager_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/manager_downloader.py -------------------------------------------------------------------------------- /glob/manager_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/manager_migration.py -------------------------------------------------------------------------------- /glob/manager_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/manager_server.py -------------------------------------------------------------------------------- /glob/manager_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/manager_util.py -------------------------------------------------------------------------------- /glob/node_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/node_package.py -------------------------------------------------------------------------------- /glob/security_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/security_check.py -------------------------------------------------------------------------------- /glob/share_3rdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/glob/share_3rdparty.py -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/README.md -------------------------------------------------------------------------------- /js/cm-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/cm-api.js -------------------------------------------------------------------------------- /js/comfyui-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/comfyui-manager.js -------------------------------------------------------------------------------- /js/comfyui-share-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/comfyui-share-common.js -------------------------------------------------------------------------------- /js/comfyui-share-copus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/comfyui-share-copus.js -------------------------------------------------------------------------------- /js/comfyui-share-openart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/comfyui-share-openart.js -------------------------------------------------------------------------------- /js/comfyui-share-youml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/comfyui-share-youml.js -------------------------------------------------------------------------------- /js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/common.js -------------------------------------------------------------------------------- /js/components-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/components-manager.js -------------------------------------------------------------------------------- /js/custom-nodes-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/custom-nodes-manager.css -------------------------------------------------------------------------------- /js/custom-nodes-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/custom-nodes-manager.js -------------------------------------------------------------------------------- /js/model-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/model-manager.css -------------------------------------------------------------------------------- /js/model-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/model-manager.js -------------------------------------------------------------------------------- /js/node_fixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/node_fixer.js -------------------------------------------------------------------------------- /js/popover-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/popover-helper.js -------------------------------------------------------------------------------- /js/snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/snapshot.js -------------------------------------------------------------------------------- /js/turbogrid.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/turbogrid.esm.js -------------------------------------------------------------------------------- /js/workflow-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/js/workflow-metadata.js -------------------------------------------------------------------------------- /json-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/json-checker.py -------------------------------------------------------------------------------- /misc/Impact.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/misc/Impact.pack -------------------------------------------------------------------------------- /model-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/model-list.json -------------------------------------------------------------------------------- /node_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/README.md -------------------------------------------------------------------------------- /node_db/dev/custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/dev/custom-node-list.json -------------------------------------------------------------------------------- /node_db/dev/extension-node-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/dev/extension-node-map.json -------------------------------------------------------------------------------- /node_db/dev/github-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/dev/github-stats.json -------------------------------------------------------------------------------- /node_db/dev/model-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "models": [] 3 | } 4 | -------------------------------------------------------------------------------- /node_db/dev/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/dev/scan.sh -------------------------------------------------------------------------------- /node_db/forked/custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/forked/custom-node-list.json -------------------------------------------------------------------------------- /node_db/forked/extension-node-map.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /node_db/forked/model-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "models": [] 3 | } 4 | -------------------------------------------------------------------------------- /node_db/forked/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/forked/scan.sh -------------------------------------------------------------------------------- /node_db/legacy/alter-list.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /node_db/legacy/custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/legacy/custom-node-list.json -------------------------------------------------------------------------------- /node_db/legacy/extension-node-map.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /node_db/legacy/model-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/legacy/model-list.json -------------------------------------------------------------------------------- /node_db/new/alter-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/new/alter-list.json -------------------------------------------------------------------------------- /node_db/new/custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/new/custom-node-list.json -------------------------------------------------------------------------------- /node_db/new/extension-node-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/new/extension-node-map.json -------------------------------------------------------------------------------- /node_db/new/model-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/new/model-list.json -------------------------------------------------------------------------------- /node_db/tutorial/custom-node-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/tutorial/custom-node-list.json -------------------------------------------------------------------------------- /node_db/tutorial/extension-node-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/tutorial/extension-node-map.json -------------------------------------------------------------------------------- /node_db/tutorial/model-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "models": [] 3 | } 4 | -------------------------------------------------------------------------------- /node_db/tutorial/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/node_db/tutorial/scan.sh -------------------------------------------------------------------------------- /notebooks/comfyui_colab_with_manager.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/notebooks/comfyui_colab_with_manager.ipynb -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/openapi.yaml -------------------------------------------------------------------------------- /pip_overrides.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/pip_overrides.json.template -------------------------------------------------------------------------------- /pip_overrides.osx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/pip_overrides.osx.template -------------------------------------------------------------------------------- /prestartup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/prestartup_script.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/requirements.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/ruff.toml -------------------------------------------------------------------------------- /scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scan.sh -------------------------------------------------------------------------------- /scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scanner.py -------------------------------------------------------------------------------- /scripts/colab-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scripts/colab-dependencies.py -------------------------------------------------------------------------------- /scripts/install-comfyui-venv-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scripts/install-comfyui-venv-linux.sh -------------------------------------------------------------------------------- /scripts/install-comfyui-venv-win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scripts/install-comfyui-venv-win.bat -------------------------------------------------------------------------------- /scripts/install-manager-for-portable-version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comfy-Org/ComfyUI-Manager/HEAD/scripts/install-manager-for-portable-version.bat -------------------------------------------------------------------------------- /snapshots/the_snapshot_files_are_located_here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------