comfyui-mcp 0.20.0 → 0.20.2
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/dist/orchestrator/agent-backend.js.map +1 -1
- package/dist/orchestrator/codex-backend.js +20 -4
- package/dist/orchestrator/codex-backend.js.map +1 -1
- package/dist/orchestrator/index.js +21 -2
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/orchestrator/panel-tools.js +33 -2
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/dist/services/image-management.js +83 -18
- package/dist/services/image-management.js.map +1 -1
- package/dist/services/manifest.js +84 -3
- package/dist/services/manifest.js.map +1 -1
- package/dist/services/output-dir.js +59 -0
- package/dist/services/output-dir.js.map +1 -1
- package/dist/tools/image-management.js +72 -1
- package/dist/tools/image-management.js.map +1 -1
- package/dist/tools/skills-access.js +1 -1
- package/dist/tools/skills-access.js.map +1 -1
- package/package.json +1 -1
- package/packs/{krea2-txt2img → krea2-txt2img-json}/install-runpod.sh +1 -2
- package/packs/{krea2-txt2img → krea2-txt2img-json}/install-windows.bat +1 -2
- package/packs/krea2-txt2img-json/manifest.yaml +28 -0
- package/packs/krea2-txt2img-json/pack.yaml +45 -0
- package/packs/{krea2-txt2img → krea2-txt2img-json}/workflow.json +11 -67
- package/packs/krea2-txt2img-manual/install-runpod.sh +39 -0
- package/packs/krea2-txt2img-manual/install-windows.bat +44 -0
- package/packs/{krea2-txt2img → krea2-txt2img-manual}/manifest.yaml +7 -8
- package/packs/krea2-txt2img-manual/pack.yaml +41 -0
- package/packs/krea2-txt2img-manual/workflow.json +1642 -0
- package/plugin/skills/director/SKILL.md +14 -2
- package/plugin/skills/krea2-txt2img/SKILL.md +52 -16
- package/plugin/skills/ltxv2-video/SKILL.md +20 -0
- package/plugin/skills/video-extend/SKILL.md +9 -0
- package/plugin/skills/wan-flf-video/SKILL.md +1 -1
- package/plugin/skills/workflow-layout/SKILL.md +14 -1
- package/scripts/panel-load-workflow-smoke.mjs +1 -1
- package/packs/krea2/workflow.json +0 -4265
- package/packs/krea2-txt2img/pack.yaml +0 -32
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: krea2-txt2img
|
|
2
|
-
display_name: KREA 2 — Text to Image
|
|
3
|
-
family: krea2
|
|
4
|
-
kind: txt2img
|
|
5
|
-
description: >-
|
|
6
|
-
KREA 2 (krea2_turbo) text-to-image — a fast, ultra-sharp turbo model with
|
|
7
|
-
strong prompt-following and an Ideogram-4-style JSON prompt-builder option.
|
|
8
|
-
Runs on native ComfyUI krea2 support (CLIPLoader type=krea2) with a Qwen3-VL 4B
|
|
9
|
-
text encoder and the Qwen image VAE. Single-purpose txt2img graph sliced from
|
|
10
|
-
the KREA2 ULTRA monolith (one pipeline, no group toggles); the JSON
|
|
11
|
-
prompt-builder, seed-variance, and laplacian-sharpen post-proc ship bypassed
|
|
12
|
-
(opt-in).
|
|
13
|
-
vram: "<24GB"
|
|
14
|
-
workflow: workflow.json
|
|
15
|
-
skill: krea2-txt2img
|
|
16
|
-
launch_args: []
|
|
17
|
-
sources:
|
|
18
|
-
mirror: https://huggingface.co/Aitrepreneur/FLX
|
|
19
|
-
notes:
|
|
20
|
-
- Needs ComfyUI with native KREA 2 support (comfy/text_encoders/krea2.py,
|
|
21
|
-
ComfyUI >= v0.26.0) — the CLIPLoader uses type=krea2.
|
|
22
|
-
- Run the generated installer from your ComfyUI root (folder with custom_nodes/
|
|
23
|
-
and models/).
|
|
24
|
-
- Sliced + un-bypassed from the monolith's "TEXT TO IMAGE" pipeline.
|
|
25
|
-
- Default diffusion model is krea2_turbo_fp8 (RTX 4000/3000/2000). On RTX 5000
|
|
26
|
-
(Blackwell) swap in krea2_turbo_mxfp8.safetensors for native fp8.
|
|
27
|
-
- The ConditioningKrea2Rebalance node (KREA 2 safety-filter bypass) is included
|
|
28
|
-
but ships BYPASSED — the model's safety filter is intact by default.
|
|
29
|
-
post_install:
|
|
30
|
-
- Restart ComfyUI (or ComfyUI-Manager -> Install missing custom nodes for any
|
|
31
|
-
node Python deps).
|
|
32
|
-
- Load workflow.json.
|