comfyui-mcp 0.48.21 → 0.48.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (252) hide show
  1. package/README.md +2 -2
  2. package/dist/comfyui/client.js +46 -6
  3. package/dist/comfyui/client.js.map +1 -1
  4. package/dist/config.js +15 -0
  5. package/dist/config.js.map +1 -1
  6. package/dist/orchestrator/error-text.js +29 -1
  7. package/dist/orchestrator/error-text.js.map +1 -1
  8. package/dist/orchestrator/error-text.test.js +28 -0
  9. package/dist/orchestrator/error-text.test.js.map +1 -1
  10. package/dist/orchestrator/index.js +331 -56
  11. package/dist/orchestrator/index.js.map +1 -1
  12. package/dist/orchestrator/panel-agent.js +122 -31
  13. package/dist/orchestrator/panel-agent.js.map +1 -1
  14. package/dist/orchestrator/panel-tools.js +1256 -198
  15. package/dist/orchestrator/panel-tools.js.map +1 -1
  16. package/dist/orchestrator/ready-banner.js +70 -0
  17. package/dist/orchestrator/ready-banner.js.map +1 -0
  18. package/dist/orchestrator/session-store.js +163 -28
  19. package/dist/orchestrator/session-store.js.map +1 -1
  20. package/dist/services/api-nodes.js +5 -7
  21. package/dist/services/api-nodes.js.map +1 -1
  22. package/dist/services/download-cache.js +126 -18
  23. package/dist/services/download-cache.js.map +1 -1
  24. package/dist/services/download-jobs.js +463 -14
  25. package/dist/services/download-jobs.js.map +1 -1
  26. package/dist/services/download-progress.js +252 -3
  27. package/dist/services/download-progress.js.map +1 -1
  28. package/dist/services/env-capabilities.js +80 -9
  29. package/dist/services/env-capabilities.js.map +1 -1
  30. package/dist/services/generate-audio.js +16 -0
  31. package/dist/services/generate-audio.js.map +1 -1
  32. package/dist/services/local-models-fallback.js +7 -3
  33. package/dist/services/local-models-fallback.js.map +1 -1
  34. package/dist/services/manifest.js +180 -65
  35. package/dist/services/manifest.js.map +1 -1
  36. package/dist/services/model-resolver.js +267 -11
  37. package/dist/services/model-resolver.js.map +1 -1
  38. package/dist/services/node-management.js +179 -45
  39. package/dist/services/node-management.js.map +1 -1
  40. package/dist/services/output-dir.js +33 -3
  41. package/dist/services/output-dir.js.map +1 -1
  42. package/dist/services/panel-secrets.js +19 -7
  43. package/dist/services/panel-secrets.js.map +1 -1
  44. package/dist/services/process-control.js +107 -8
  45. package/dist/services/process-control.js.map +1 -1
  46. package/dist/services/queue-monitor.js +45 -2
  47. package/dist/services/queue-monitor.js.map +1 -1
  48. package/dist/services/queue-monitor.stall.test.js +78 -0
  49. package/dist/services/queue-monitor.stall.test.js.map +1 -0
  50. package/dist/services/secure-bridge.js +84 -0
  51. package/dist/services/secure-bridge.js.map +1 -1
  52. package/dist/services/storage/azure-blob.js +8 -3
  53. package/dist/services/storage/azure-blob.js.map +1 -1
  54. package/dist/services/storage/index.js +3 -3
  55. package/dist/services/storage/index.js.map +1 -1
  56. package/dist/services/storage/s3.js +9 -3
  57. package/dist/services/storage/s3.js.map +1 -1
  58. package/dist/services/ui-bridge.js +341 -24
  59. package/dist/services/ui-bridge.js.map +1 -1
  60. package/dist/services/workflow-converter.js +767 -72
  61. package/dist/services/workflow-converter.js.map +1 -1
  62. package/dist/services/workflow-deps.js +20 -1
  63. package/dist/services/workflow-deps.js.map +1 -1
  64. package/dist/services/workflow-lock.js +127 -27
  65. package/dist/services/workflow-lock.js.map +1 -1
  66. package/dist/services/workflow-target-store.js +7 -3
  67. package/dist/services/workflow-target-store.js.map +1 -1
  68. package/dist/services/workspace-env.js +48 -0
  69. package/dist/services/workspace-env.js.map +1 -1
  70. package/dist/tools/diagnostics.js +10 -1
  71. package/dist/tools/diagnostics.js.map +1 -1
  72. package/dist/tools/generate-audio.js +44 -0
  73. package/dist/tools/generate-audio.js.map +1 -1
  74. package/dist/tools/model-explorer.js +85 -5
  75. package/dist/tools/model-explorer.js.map +1 -1
  76. package/dist/tools/model-extras.js +24 -4
  77. package/dist/tools/model-extras.js.map +1 -1
  78. package/dist/tools/model-management.js +124 -14
  79. package/dist/tools/model-management.js.map +1 -1
  80. package/dist/tools/report-issue.js +220 -66
  81. package/dist/tools/report-issue.js.map +1 -1
  82. package/dist/tools/report-issue.test.js +223 -83
  83. package/dist/tools/report-issue.test.js.map +1 -1
  84. package/dist/tools/skills-access.js +7 -2
  85. package/dist/tools/skills-access.js.map +1 -1
  86. package/dist/tools/template-schema.js +5 -5
  87. package/dist/tools/template-schema.js.map +1 -1
  88. package/dist/tools/workflow-compose.js +18 -3
  89. package/dist/tools/workflow-compose.js.map +1 -1
  90. package/dist/tools/workflow-visualize.js +1 -1
  91. package/dist/tools/workflow-visualize.js.map +1 -1
  92. package/package.json +1 -1
  93. package/packs/anima/install-runpod.sh +0 -1
  94. package/packs/anima/install-windows.bat +0 -1
  95. package/packs/anima/manifest.yaml +0 -1
  96. package/packs/anima-img2img/install-runpod.sh +0 -1
  97. package/packs/anima-img2img/install-windows.bat +0 -1
  98. package/packs/anima-img2img/manifest.yaml +0 -1
  99. package/packs/anima-inpaint/install-runpod.sh +0 -1
  100. package/packs/anima-inpaint/install-windows.bat +0 -1
  101. package/packs/anima-inpaint/manifest.yaml +0 -1
  102. package/packs/anima-txt2img/install-runpod.sh +0 -1
  103. package/packs/anima-txt2img/install-windows.bat +0 -1
  104. package/packs/anima-txt2img/manifest.yaml +0 -1
  105. package/packs/artokun-flow/install-runpod.sh +0 -1
  106. package/packs/artokun-flow/install-windows.bat +0 -1
  107. package/packs/artokun-flow/manifest.yaml +0 -1
  108. package/packs/ernie/install-runpod.sh +0 -1
  109. package/packs/ernie/install-windows.bat +0 -1
  110. package/packs/ernie/manifest.yaml +0 -1
  111. package/packs/ernie-combo/install-runpod.sh +0 -1
  112. package/packs/ernie-combo/install-windows.bat +0 -1
  113. package/packs/ernie-combo/manifest.yaml +0 -1
  114. package/packs/ernie-img2img/install-runpod.sh +0 -1
  115. package/packs/ernie-img2img/install-windows.bat +0 -1
  116. package/packs/ernie-img2img/manifest.yaml +0 -1
  117. package/packs/ernie-txt2img/install-runpod.sh +0 -1
  118. package/packs/ernie-txt2img/install-windows.bat +0 -1
  119. package/packs/ernie-txt2img/manifest.yaml +0 -1
  120. package/packs/ideogram/install-runpod.sh +0 -1
  121. package/packs/ideogram/install-windows.bat +0 -1
  122. package/packs/ideogram/manifest.yaml +0 -1
  123. package/packs/ideogram-img2img/install-runpod.sh +0 -1
  124. package/packs/ideogram-img2img/install-windows.bat +0 -1
  125. package/packs/ideogram-img2img/manifest.yaml +0 -1
  126. package/packs/ideogram-txt2img/install-runpod.sh +0 -1
  127. package/packs/ideogram-txt2img/install-windows.bat +0 -1
  128. package/packs/ideogram-txt2img/manifest.yaml +0 -1
  129. package/packs/ltx-2.3/install-runpod.sh +0 -1
  130. package/packs/ltx-2.3/install-windows.bat +0 -1
  131. package/packs/ltx-2.3/manifest.yaml +0 -1
  132. package/packs/ltx-2.3-extender/install-runpod.sh +0 -1
  133. package/packs/ltx-2.3-extender/install-windows.bat +0 -1
  134. package/packs/ltx-2.3-extender/manifest.yaml +0 -1
  135. package/packs/ltx-2.3-extender-no-audio/install-runpod.sh +0 -1
  136. package/packs/ltx-2.3-extender-no-audio/install-windows.bat +0 -1
  137. package/packs/ltx-2.3-extender-no-audio/manifest.yaml +0 -1
  138. package/packs/ltx-2.3-flf/install-runpod.sh +0 -1
  139. package/packs/ltx-2.3-flf/install-windows.bat +0 -1
  140. package/packs/ltx-2.3-flf/manifest.yaml +0 -1
  141. package/packs/ltx-2.3-img2vid/install-runpod.sh +0 -1
  142. package/packs/ltx-2.3-img2vid/install-windows.bat +0 -1
  143. package/packs/ltx-2.3-img2vid/manifest.yaml +3 -4
  144. package/packs/ltx-2.3-txt2vid/install-runpod.sh +0 -1
  145. package/packs/ltx-2.3-txt2vid/install-windows.bat +0 -1
  146. package/packs/ltx-2.3-txt2vid/manifest.yaml +3 -4
  147. package/packs/ltx-2.3-xy-plot/install-runpod.sh +0 -1
  148. package/packs/ltx-2.3-xy-plot/install-windows.bat +0 -1
  149. package/packs/ltx-2.3-xy-plot/manifest.yaml +0 -1
  150. package/packs/ltx23-distill-3stage/install-runpod.sh +0 -1
  151. package/packs/ltx23-distill-3stage/install-windows.bat +0 -1
  152. package/packs/ltx23-distill-3stage/manifest.yaml +0 -1
  153. package/packs/qwen-image/install-runpod.sh +0 -1
  154. package/packs/qwen-image/install-windows.bat +0 -1
  155. package/packs/qwen-image/manifest.yaml +0 -1
  156. package/packs/qwen-image-edit/install-runpod.sh +0 -1
  157. package/packs/qwen-image-edit/install-windows.bat +0 -1
  158. package/packs/qwen-image-edit/manifest.yaml +0 -1
  159. package/packs/qwen-image-edit-edit/install-runpod.sh +0 -1
  160. package/packs/qwen-image-edit-edit/install-windows.bat +0 -1
  161. package/packs/qwen-image-edit-edit/manifest.yaml +0 -1
  162. package/packs/wan-animate/install-runpod.sh +0 -1
  163. package/packs/wan-animate/install-windows.bat +0 -1
  164. package/packs/wan-animate/manifest.yaml +0 -1
  165. package/packs/wan-animate-character/install-runpod.sh +0 -1
  166. package/packs/wan-animate-character/install-windows.bat +0 -1
  167. package/packs/wan-animate-character/manifest.yaml +0 -1
  168. package/packs/wan-animate-ofm/install-runpod.sh +0 -1
  169. package/packs/wan-animate-ofm/install-windows.bat +0 -1
  170. package/packs/wan-animate-ofm/manifest.yaml +0 -1
  171. package/packs/wan-longer-videos/install-runpod.sh +0 -1
  172. package/packs/wan-longer-videos/install-windows.bat +0 -1
  173. package/packs/wan-longer-videos/manifest.yaml +0 -1
  174. package/packs/wan-longer-videos-i2v/install-runpod.sh +0 -1
  175. package/packs/wan-longer-videos-i2v/install-windows.bat +0 -1
  176. package/packs/wan-longer-videos-i2v/manifest.yaml +0 -1
  177. package/packs/wan-longer-videos-i2v-96gb/install-runpod.sh +0 -1
  178. package/packs/wan-longer-videos-i2v-96gb/install-windows.bat +0 -1
  179. package/packs/wan-longer-videos-i2v-96gb/manifest.yaml +0 -1
  180. package/packs/wan-longer-videos-t2v/install-runpod.sh +0 -1
  181. package/packs/wan-longer-videos-t2v/install-windows.bat +0 -1
  182. package/packs/wan-longer-videos-t2v/manifest.yaml +0 -1
  183. package/packs/wan-longer-videos-t2v-96gb/install-runpod.sh +0 -1
  184. package/packs/wan-longer-videos-t2v-96gb/install-windows.bat +0 -1
  185. package/packs/wan-longer-videos-t2v-96gb/manifest.yaml +0 -1
  186. package/packs/wan-longer-videos-v2v/install-runpod.sh +0 -1
  187. package/packs/wan-longer-videos-v2v/install-windows.bat +0 -1
  188. package/packs/wan-longer-videos-v2v/manifest.yaml +0 -1
  189. package/packs/wan-longer-videos-v2v-96gb/install-runpod.sh +0 -1
  190. package/packs/wan-longer-videos-v2v-96gb/install-windows.bat +0 -1
  191. package/packs/wan-longer-videos-v2v-96gb/manifest.yaml +0 -1
  192. package/packs/wan-multitalk/install-runpod.sh +0 -1
  193. package/packs/wan-multitalk/install-windows.bat +0 -1
  194. package/packs/wan-multitalk/manifest.yaml +0 -1
  195. package/packs/wan-pusa-extend/install-runpod.sh +0 -1
  196. package/packs/wan-pusa-extend/install-windows.bat +0 -1
  197. package/packs/wan-pusa-extend/manifest.yaml +0 -1
  198. package/packs/wan-transparent/install-runpod.sh +0 -1
  199. package/packs/wan-transparent/install-windows.bat +0 -1
  200. package/packs/wan-transparent/manifest.yaml +0 -1
  201. package/packs/wan-transparent-img2vid/install-runpod.sh +0 -1
  202. package/packs/wan-transparent-img2vid/install-windows.bat +0 -1
  203. package/packs/wan-transparent-img2vid/manifest.yaml +0 -1
  204. package/packs/wan-transparent-img2vid-96gb/install-runpod.sh +0 -1
  205. package/packs/wan-transparent-img2vid-96gb/install-windows.bat +0 -1
  206. package/packs/wan-transparent-img2vid-96gb/manifest.yaml +0 -1
  207. package/packs/z-image-base/install-runpod.sh +0 -1
  208. package/packs/z-image-base/install-windows.bat +0 -1
  209. package/packs/z-image-base/manifest.yaml +0 -1
  210. package/packs/z-image-base-combo/install-runpod.sh +0 -1
  211. package/packs/z-image-base-combo/install-windows.bat +0 -1
  212. package/packs/z-image-base-combo/manifest.yaml +0 -1
  213. package/packs/z-image-base-controlnet/install-runpod.sh +0 -1
  214. package/packs/z-image-base-controlnet/install-windows.bat +0 -1
  215. package/packs/z-image-base-controlnet/manifest.yaml +0 -1
  216. package/packs/z-image-base-img2img/install-runpod.sh +0 -1
  217. package/packs/z-image-base-img2img/install-windows.bat +0 -1
  218. package/packs/z-image-base-img2img/manifest.yaml +0 -1
  219. package/packs/z-image-base-inpaint/install-runpod.sh +0 -1
  220. package/packs/z-image-base-inpaint/install-windows.bat +0 -1
  221. package/packs/z-image-base-inpaint/manifest.yaml +0 -1
  222. package/packs/z-image-base-txt2img/install-runpod.sh +0 -1
  223. package/packs/z-image-base-txt2img/install-windows.bat +0 -1
  224. package/packs/z-image-base-txt2img/manifest.yaml +0 -1
  225. package/packs/z-image-turbo/install-runpod.sh +0 -1
  226. package/packs/z-image-turbo/install-windows.bat +0 -1
  227. package/packs/z-image-turbo/manifest.yaml +0 -1
  228. package/packs/z-image-turbo-combo/install-runpod.sh +0 -1
  229. package/packs/z-image-turbo-combo/install-windows.bat +0 -1
  230. package/packs/z-image-turbo-combo/manifest.yaml +0 -1
  231. package/packs/z-image-turbo-controlnet/install-runpod.sh +0 -1
  232. package/packs/z-image-turbo-controlnet/install-windows.bat +0 -1
  233. package/packs/z-image-turbo-controlnet/manifest.yaml +0 -1
  234. package/packs/z-image-turbo-detail-daemon/install-runpod.sh +0 -1
  235. package/packs/z-image-turbo-detail-daemon/install-windows.bat +0 -1
  236. package/packs/z-image-turbo-detail-daemon/manifest.yaml +0 -1
  237. package/packs/z-image-turbo-img2img/install-runpod.sh +0 -1
  238. package/packs/z-image-turbo-img2img/install-windows.bat +0 -1
  239. package/packs/z-image-turbo-img2img/manifest.yaml +0 -1
  240. package/packs/z-image-turbo-inpainting/install-runpod.sh +0 -1
  241. package/packs/z-image-turbo-inpainting/install-windows.bat +0 -1
  242. package/packs/z-image-turbo-inpainting/manifest.yaml +0 -1
  243. package/packs/z-image-turbo-txt2img/install-runpod.sh +0 -1
  244. package/packs/z-image-turbo-txt2img/install-windows.bat +0 -1
  245. package/packs/z-image-turbo-txt2img/manifest.yaml +0 -1
  246. package/packs/z-image-xy-plot/install-runpod.sh +0 -1
  247. package/packs/z-image-xy-plot/install-windows.bat +0 -1
  248. package/packs/z-image-xy-plot/manifest.yaml +0 -1
  249. package/plugin/skills/flux-txt2img/SKILL.md +9 -4
  250. package/plugin/skills/wan-scail-replacement/SKILL.md +95 -0
  251. package/scripts/sync-agents.mjs +18 -8
  252. package/scripts/test-packs.sh +8 -3
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
31
30
  clone "ComfyUI-Frame-Interpolation" "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
21
20
  call :clone "ComfyUI-Frame-Interpolation" "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
@@ -9,7 +9,6 @@ pip: []
9
9
  custom_nodes:
10
10
  # Full superset from the monolith manifest (safe — covers every node type the
11
11
  # slice could reference plus the shared post-proc the closure may pull in).
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF # UnetLoaderGGUF / CLIPLoaderGGUF
14
13
  - https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite # VHS_* (combine/select/load)
15
14
  - https://github.com/Fannovel16/ComfyUI-Frame-Interpolation # RIFE VFI (auto-downloads rife49.pth)
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
31
30
  clone "ComfyUI-Frame-Interpolation" "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
21
20
  call :clone "ComfyUI-Frame-Interpolation" "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
@@ -10,7 +10,6 @@ pip: []
10
10
  custom_nodes:
11
11
  # Full superset from the monolith manifest (safe — covers every node type the
12
12
  # slice could reference plus the shared post-proc the closure may pull in).
13
- - https://github.com/ltdrdata/ComfyUI-Manager.git
14
13
  - https://github.com/city96/ComfyUI-GGUF # UnetLoaderGGUF / CLIPLoaderGGUF
15
14
  - https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite # VHS_* (combine/select/load)
16
15
  - https://github.com/Fannovel16/ComfyUI-Frame-Interpolation # RIFE VFI (auto-downloads rife49.pth)
@@ -28,7 +28,6 @@ echo "-------- custom nodes --------"
28
28
  clone "ComfyUI-WanVideoWrapper" "https://github.com/kijai/ComfyUI-WanVideoWrapper.git"
29
29
  clone "ComfyUI-KJNodes" "https://github.com/kijai/ComfyUI-KJNodes.git"
30
30
  clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git"
31
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
32
31
 
33
32
  echo "-------- pip (manifest extras) --------"
34
33
  "$PY" -m pip install "imageio-ffmpeg"
@@ -18,7 +18,6 @@ echo -------- custom nodes --------
18
18
  call :clone "ComfyUI-WanVideoWrapper" "https://github.com/kijai/ComfyUI-WanVideoWrapper.git"
19
19
  call :clone "ComfyUI-KJNodes" "https://github.com/kijai/ComfyUI-KJNodes.git"
20
20
  call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git"
21
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
22
21
 
23
22
  echo -------- pip (manifest extras) --------
24
23
  "%PY%" -m pip install "imageio-ffmpeg"
@@ -20,7 +20,6 @@ custom_nodes:
20
20
  - https://github.com/kijai/ComfyUI-WanVideoWrapper.git # WanVideo*/MultiTalk*/Wav2Vec/T5 nodes
21
21
  - https://github.com/kijai/ComfyUI-KJNodes.git # ImageResizeKJv2
22
22
  - https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git # VHS_VideoCombine
23
- - https://github.com/ltdrdata/ComfyUI-Manager.git
24
23
 
25
24
  models:
26
25
  # --- WAN 2.1 14B Image-to-Video 480p, GGUF Q8 (main transformer) ---
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-WanVideoWrapper" "https://github.com/kijai/ComfyUI-WanVideoWrapper"
30
29
  clone "ComfyUI-KJNodes" "https://github.com/kijai/ComfyUI-KJNodes"
31
30
  clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-WanVideoWrapper" "https://github.com/kijai/ComfyUI-WanVideoWrapper"
20
19
  call :clone "ComfyUI-KJNodes" "https://github.com/kijai/ComfyUI-KJNodes"
21
20
  call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
@@ -12,7 +12,6 @@
12
12
  pip: []
13
13
 
14
14
  custom_nodes:
15
- - https://github.com/ltdrdata/ComfyUI-Manager.git
16
15
  - https://github.com/kijai/ComfyUI-WanVideoWrapper # WanVideo* (model loader / sampler / encode / AddPusaNoise / scheduler / text encode)
17
16
  - https://github.com/kijai/ComfyUI-KJNodes # ColorMatchV2, ImageResizeKJv2, GetImageRangeFromBatch, CreateScheduleFloatList, GetLatentSizeAndCount, ImageBatchMulti/ImageConcatMulti, Get/SetNode
18
17
  - https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite # VHS_LoadVideo / VHS_VideoCombine
@@ -32,7 +32,6 @@ clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
32
32
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
33
33
  clone "was-node-suite-comfyui" "https://github.com/ltdrdata/was-node-suite-comfyui"
34
34
  clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
35
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
36
35
 
37
36
  echo "-------- models --------"
38
37
  grab "models/vae/wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -22,7 +22,6 @@ call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
22
22
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
23
23
  call :clone "was-node-suite-comfyui" "https://github.com/ltdrdata/was-node-suite-comfyui"
24
24
  call :clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
25
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
26
25
 
27
26
  echo -------- models --------
28
27
  call :grab "models\vae\wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -18,7 +18,6 @@ custom_nodes:
18
18
  - https://github.com/ltdrdata/was-node-suite-comfyui # String to Text, RegexExtract
19
19
  - https://github.com/TinyTerra/ComfyUI_tinyterraNodes # ttN text
20
20
  # From the ULTRA installer (base WAN 2.2 stack / manager):
21
- - https://github.com/ltdrdata/ComfyUI-Manager.git
22
21
 
23
22
  models:
24
23
  # --- VAE (ULTRA installer) ---
@@ -31,7 +31,6 @@ clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHe
31
31
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
32
32
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
33
33
  clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
34
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
35
34
 
36
35
  echo "-------- models --------"
37
36
  grab "models/vae/wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -21,7 +21,6 @@ call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-V
21
21
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
22
22
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
23
23
  call :clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
24
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
25
24
 
26
25
  echo -------- models --------
27
26
  call :grab "models\vae\wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -17,7 +17,6 @@ custom_nodes:
17
17
  - https://github.com/yolain/ComfyUI-Easy-Use # easy cleanGpuUsed / clearCacheAll / wildcards
18
18
  - https://github.com/TinyTerra/ComfyUI_tinyterraNodes # ttN text
19
19
  # From the ULTRA installer (base WAN 2.2 stack / manager):
20
- - https://github.com/ltdrdata/ComfyUI-Manager.git
21
20
 
22
21
  models:
23
22
  # --- VAE (ULTRA installer) ---
@@ -31,7 +31,6 @@ clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-VideoHe
31
31
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
32
32
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
33
33
  clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
34
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
35
34
 
36
35
  echo "-------- models --------"
37
36
  grab "models/vae/wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -21,7 +21,6 @@ call :clone "ComfyUI-VideoHelperSuite" "https://github.com/Kosinkadink/ComfyUI-V
21
21
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
22
22
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
23
23
  call :clone "ComfyUI_tinyterraNodes" "https://github.com/TinyTerra/ComfyUI_tinyterraNodes"
24
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
25
24
 
26
25
  echo -------- models --------
27
26
  call :grab "models\vae\wan_2.1_vae.safetensors" "https://huggingface.co/Aitrepreneur/FLX/resolve/main/wan_2.1_vae.safetensors"
@@ -18,7 +18,6 @@ custom_nodes:
18
18
  - https://github.com/yolain/ComfyUI-Easy-Use # easy cleanGpuUsed / clearCacheAll / wildcards
19
19
  - https://github.com/TinyTerra/ComfyUI_tinyterraNodes # ttN text
20
20
  # From the ULTRA installer (base WAN 2.2 stack / manager):
21
- - https://github.com/ltdrdata/ComfyUI-Manager.git
22
21
 
23
22
  models:
24
23
  # --- VAE (ULTRA installer) ---
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -11,7 +11,6 @@
11
11
  pip: []
12
12
 
13
13
  custom_nodes:
14
- - https://github.com/ltdrdata/ComfyUI-Manager.git
15
14
  - https://github.com/city96/ComfyUI-GGUF
16
15
  - https://github.com/rgthree/rgthree-comfy
17
16
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -11,7 +11,6 @@ pip:
11
11
  - librosa
12
12
 
13
13
  custom_nodes:
14
- - https://github.com/ltdrdata/ComfyUI-Manager.git
15
14
  - https://github.com/city96/ComfyUI-GGUF
16
15
  - https://github.com/rgthree/rgthree-comfy
17
16
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -13,7 +13,6 @@ pip:
13
13
  - scikit-image # DWPreprocessor (DWPose) needs skimage or it silently fails to register
14
14
 
15
15
  custom_nodes:
16
- - https://github.com/ltdrdata/ComfyUI-Manager.git
17
16
  - https://github.com/city96/ComfyUI-GGUF
18
17
  - https://github.com/rgthree/rgthree-comfy
19
18
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -6,7 +6,6 @@
6
6
  pip: []
7
7
 
8
8
  custom_nodes:
9
- - https://github.com/ltdrdata/ComfyUI-Manager.git
10
9
  - https://github.com/city96/ComfyUI-GGUF
11
10
  - https://github.com/rgthree/rgthree-comfy
12
11
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -11,7 +11,6 @@
11
11
  pip: []
12
12
 
13
13
  custom_nodes:
14
- - https://github.com/ltdrdata/ComfyUI-Manager.git
15
14
  - https://github.com/city96/ComfyUI-GGUF
16
15
  - https://github.com/rgthree/rgthree-comfy
17
16
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -11,7 +11,6 @@ pip:
11
11
  - scikit-image # DWPreprocessor (DWPose) needs skimage or it silently fails to register
12
12
 
13
13
  custom_nodes:
14
- - https://github.com/ltdrdata/ComfyUI-Manager.git
15
14
  - https://github.com/city96/ComfyUI-GGUF
16
15
  - https://github.com/rgthree/rgthree-comfy
17
16
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -6,7 +6,6 @@
6
6
  pip: []
7
7
 
8
8
  custom_nodes:
9
- - https://github.com/ltdrdata/ComfyUI-Manager.git
10
9
  - https://github.com/city96/ComfyUI-GGUF
11
10
  - https://github.com/rgthree/rgthree-comfy
12
11
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -9,7 +9,6 @@ pip:
9
9
  - librosa
10
10
 
11
11
  custom_nodes:
12
- - https://github.com/ltdrdata/ComfyUI-Manager.git
13
12
  - https://github.com/city96/ComfyUI-GGUF
14
13
  - https://github.com/rgthree/rgthree-comfy
15
14
  - https://github.com/yolain/ComfyUI-Easy-Use
@@ -25,7 +25,6 @@ grab() { # relpath url
25
25
  }
26
26
 
27
27
  echo "-------- custom nodes --------"
28
- clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
29
28
  clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
30
29
  clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
31
30
  clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -15,7 +15,6 @@ if not exist "%PY%" set "PY=python"
15
15
  echo using python: %PY%
16
16
 
17
17
  echo -------- custom nodes --------
18
- call :clone "ComfyUI-Manager" "https://github.com/ltdrdata/ComfyUI-Manager.git"
19
18
  call :clone "ComfyUI-GGUF" "https://github.com/city96/ComfyUI-GGUF"
20
19
  call :clone "rgthree-comfy" "https://github.com/rgthree/rgthree-comfy"
21
20
  call :clone "ComfyUI-Easy-Use" "https://github.com/yolain/ComfyUI-Easy-Use"
@@ -18,7 +18,6 @@
18
18
  pip: []
19
19
 
20
20
  custom_nodes:
21
- - https://github.com/ltdrdata/ComfyUI-Manager.git
22
21
  - https://github.com/city96/ComfyUI-GGUF
23
22
  - https://github.com/rgthree/rgthree-comfy
24
23
  - https://github.com/yolain/ComfyUI-Easy-Use