comfyui-mcp 0.21.0 → 0.22.0
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.
- package/README.md +6 -4
- package/dist/orchestrator/index.js +5 -1
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/orchestrator/panel-tools.js +63 -1
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/package.json +8 -2
- package/packs/artokun-flow/install-runpod.sh +2 -1
- package/packs/artokun-flow/install-windows.bat +2 -1
- package/packs/artokun-flow/manifest.yaml +17 -16
- package/packs/artokun-flow/pack.yaml +24 -20
- package/packs/artokun-flow/workflow.json +6099 -1
- package/packs/wan-animate/pack.yaml +2 -1
- package/packs/wan-animate-character/pack.yaml +2 -1
- package/packs/wan-animate-ofm/install-runpod.sh +51 -0
- package/packs/wan-animate-ofm/install-windows.bat +56 -0
- package/packs/wan-animate-ofm/manifest.yaml +78 -0
- package/packs/wan-animate-ofm/pack.yaml +44 -0
- package/packs/wan-animate-ofm/workflow.json +2695 -0
- package/packs/wan-pusa-extend/install-runpod.sh +42 -0
- package/packs/wan-pusa-extend/install-windows.bat +47 -0
|
@@ -1,22 +1,25 @@
|
|
|
1
|
-
# Artokun Flow
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
1
|
+
# Artokun Flow — WAN Animate. THE go-to pack for "take this person and animate them":
|
|
2
|
+
# give it a character image + a driving video and it makes that character dance/move
|
|
3
|
+
# with the clip's motion. Two modes via the "REPLACEMENT MODE" subgraph node, which
|
|
4
|
+
# ships DISABLED = OFF (default — animate the whole character + background to the driving
|
|
5
|
+
# motion). Set that node's Mode to Active = ON to replace the person in the real video;
|
|
6
|
+
# Mute or Bypass = OFF. ReActor first-frame face-lock and the "Upscale4x-RIFE-1080p"
|
|
7
|
+
# subgraph are bypass toggles (OFF = pass frames through unchanged); the upscale ships
|
|
8
|
+
# off (opt-in).
|
|
6
9
|
#
|
|
7
10
|
# SAM3, frame-interpolation, math, mask, and post-processing nodes are CORE in a
|
|
8
11
|
# recent ComfyUI (comfy_extras) — no custom node needed for those; just keep ComfyUI
|
|
9
12
|
# up to date so SAM3_VideoTrack/SAM3_TrackToMask exist.
|
|
10
13
|
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
14
|
+
# TS UTILITY NODES (now auto-installed): TSColorMatch (reference-free temporal color
|
|
15
|
+
# stabilizer), TSPoseDataSmoother (pose-jitter smoother), TSVideoCombineNoMetadata
|
|
16
|
+
# (metadata-free video save) — all three from github.com/artokun/comfyui-teskors-utils,
|
|
17
|
+
# a public fork of teskor-hub/comfyui-teskors-utils. The color/pose nodes have no public
|
|
18
|
+
# drop-in equivalents, so the pack ships its own maintained fork.
|
|
15
19
|
#
|
|
16
|
-
# MODEL NAMING: model
|
|
17
|
-
#
|
|
18
|
-
#
|
|
19
|
-
# workflow's real names (rename-on-download). Same content, matching filenames.
|
|
20
|
+
# MODEL NAMING: the base-model host serves them under short placeholder names. The
|
|
21
|
+
# workflow references the REAL Kijai filenames, so base models are downloaded and SAVED
|
|
22
|
+
# under the workflow's real names (rename-on-download). Same content, matching filenames.
|
|
20
23
|
|
|
21
24
|
pip: []
|
|
22
25
|
|
|
@@ -27,11 +30,9 @@ custom_nodes:
|
|
|
27
30
|
- https://github.com/kijai/ComfyUI-KJNodes # ImageResizeKJv2, GetImageSizeAndCount, DrawMaskOnImage, ImageConcatMulti, PreviewAnimation
|
|
28
31
|
- https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite # VHS_LoadVideo, VHS_VideoInfoLoaded
|
|
29
32
|
- https://github.com/Gourieff/ComfyUI-ReActor # ReActorFaceSwap, ReActorBuildFaceModel (first-frame face-lock; auto-fetches inswapper_128 + GPEN-BFR-512)
|
|
33
|
+
- https://github.com/artokun/comfyui-teskors-utils # TSColorMatch, TSPoseDataSmoother, TSVideoCombineNoMetadata (public fork of teskor-hub)
|
|
30
34
|
# --- OPTIONAL (only for the muted Upscale4x-RIFE-1080p subgraph) ---
|
|
31
35
|
# - https://github.com/numz/ComfyUI-SeedVR2_VideoUpscaler # SeedVR2* — un-mute the upscale subgraph to use
|
|
32
|
-
# --- PRIVATE / user-supplied (NOT cloned) — see header ---
|
|
33
|
-
# - teskor-hub/NEW-UTILS # TSColorMatch
|
|
34
|
-
# - teskor-hub/comfyui-teskors-utils # TSPoseDataSmoother, TSVideoCombineNoMetadata
|
|
35
36
|
|
|
36
37
|
models:
|
|
37
38
|
# --- WAN base — gist hosts these under placeholder names; saved as the real names
|
|
@@ -1,32 +1,37 @@
|
|
|
1
1
|
name: artokun-flow
|
|
2
|
-
display_name: Artokun Flow
|
|
2
|
+
display_name: Artokun Flow — Character Dance / Motion Transfer (WAN Animate 2.2)
|
|
3
3
|
family: wan
|
|
4
4
|
kind: video
|
|
5
5
|
description: >-
|
|
6
|
-
|
|
7
|
-
character
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
THE go-to / default pack for "take this person and animate them" — give it a
|
|
7
|
+
character image (a photo or a generated still) plus a driving video and it makes
|
|
8
|
+
that character dance, move, and mimic the clip's pose, face and motion, then outputs
|
|
9
|
+
the animated video. Reach for THIS for any character-animation / motion-transfer /
|
|
10
|
+
"have/make <character> dance this video" / video-to-video character drive or replace
|
|
11
|
+
request. WAN Animate 2.2 + Uni3C controlnet (temporal stability) + ViTPose/YOLOv10
|
|
12
|
+
pose+face detection + SAM3 tracking/masking + a ReActor first-frame face-lock + color
|
|
13
|
+
match. TWO MODES via the "REPLACEMENT MODE" subgraph node: it ships disabled = OFF
|
|
14
|
+
(default — animate the whole character + background to the driving motion); set its
|
|
15
|
+
Mode to Active = ON to replace the person in the real video (Mute or Bypass = OFF).
|
|
16
|
+
Optional off-by-default "Upscale4x-RIFE-1080p" subgraph (RIFE + SeedVR2) for 1080p.
|
|
17
|
+
Kijai WanVideo stack + lightx2v/relight/Pusa/Fun LoRAs.
|
|
14
18
|
vram: 24GB+
|
|
15
19
|
workflow: workflow.json
|
|
16
|
-
skill: video
|
|
20
|
+
skill: wan-t2v-video
|
|
17
21
|
launch_args: []
|
|
18
22
|
sources:
|
|
19
|
-
|
|
20
|
-
ofmhub_models: https://huggingface.co/wdsfdsdf/OFMHUB
|
|
23
|
+
base_models: https://huggingface.co/wdsfdsdf/OFMHUB
|
|
21
24
|
kijai: https://huggingface.co/Kijai/WanVideo_comfy
|
|
22
25
|
notes:
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
+
- "AUTHOR'S MAINTAINED PACK — this is the recommended/default WAN Animate
|
|
27
|
+
character-animation pipeline. The TS utility nodes (TSColorMatch temporal color
|
|
28
|
+
stabilizer, TSPoseDataSmoother pose-jitter smoother, TSVideoCombineNoMetadata) now
|
|
29
|
+
auto-install from github.com/artokun/comfyui-teskors-utils (a maintained public fork);
|
|
30
|
+
no public drop-in equivalents exist for the color/pose nodes."
|
|
26
31
|
- SAM3 + frame-interpolation + math/mask/post-processing are CORE in recent
|
|
27
32
|
ComfyUI (comfy_extras) — keep ComfyUI updated so SAM3_VideoTrack exists.
|
|
28
|
-
- Base models download
|
|
29
|
-
|
|
33
|
+
- Base models download under placeholder names and are saved under the workflow's
|
|
34
|
+
real Kijai filenames (rename-on-download) — same content.
|
|
30
35
|
- GAPS the gist does NOT cover, source separately. (a) SAM3 checkpoint
|
|
31
36
|
sam3.1_multiplex_fp16.safetensors in models/checkpoints — ACTIVE, required by
|
|
32
37
|
the SAM3 subgraph. (b) ReActor inswapper_128.onnx + GPEN-BFR-512.onnx — ReActor
|
|
@@ -35,10 +40,9 @@ notes:
|
|
|
35
40
|
seedvr2_ema_3b_fp8_e4m3fn.safetensors, ema_vae_fp16.safetensors,
|
|
36
41
|
rife_v4.26.safetensors.
|
|
37
42
|
- Bypass the ReActor face-lock node to disable first-frame identity locking.
|
|
38
|
-
-
|
|
39
|
-
|
|
43
|
+
- Static-validated (clean lint + UI→API convert; the muted upscale subgraph is
|
|
44
|
+
skipped). Run locally to confirm on your hardware.
|
|
40
45
|
post_install:
|
|
41
|
-
- Install the private teskor-hub nodes (or swap to standard equivalents).
|
|
42
46
|
- Place the SAM3 checkpoint in models/checkpoints/ (see gaps above).
|
|
43
47
|
- Restart ComfyUI (or ComfyUI-Manager -> Install missing custom nodes).
|
|
44
48
|
- Load workflow.json.
|