ComfyUI Workflow Generator
Description
Generate ready-to-use ComfyUI workflow JSON files through natural language conversation. Users describe what they want to create, and this skill produces valid ComfyUI API-format JSON that can be directly imported and executed.
Activation
Trigger when the user asks to:
- Create/generate a ComfyUI workflow
- Make an image generation workflow
- Build a video generation pipeline
- Set up txt2img, img2img, img2vid, txt2vid workflows
- Generate a ComfyUI JSON file
Trigger keywords: comfyui, workflow, 工作流, 文生图, 图生图, 文生视频, 图生视频, txt2img, img2img, txt2vid, img2vid, upscale, 放大, inpaint, 重绘, controlnet, lora, sd3, flux, ltxv, mochi, cosmos, stable audio, 音频生成, hunyuan3d, 3d生成, stable cascade, 图生3d
Instructions
Step 1: Understand User Intent
Ask the user what they want to create. Gather:
- Task type: txt2img / img2img / txt2vid / img2vid / upscale / inpaint / audio / 3d
- Model: SD1.5 / SDXL / FLUX / SD3 / Wan2.2 / HunyuanVideo / LTXV / Mochi / Cosmos / StableAudio / Hunyuan3D / StableCascade
- Key parameters: resolution, steps, CFG, sampler
- Optional modules: ControlNet, LoRA, IPAdapter, upscale model
- Prompt content: positive and negative prompts
If the user is vague, suggest the most common configuration for their task type.
Step 2: Select and Compose Template
Based on user intent, load the appropriate base template from templates/ directory and customize it:
- Read the matching template JSON file
- Modify parameters according to user requirements
- Add optional modules (ControlNet, LoRA, etc.) by inserting additional nodes and links
- Validate the workflow DAG structure
Fallback — Official Template Repository: If no matching template is found in the local templates/ directory, search the ComfyUI official template repository: https://github.com/Comfy-Org/workflow_templates/tree/main/templates . The official repo contains 443 templates across 9 categories (Image / Video / Audio / 3D / LLM / Utility / Use Cases / Getting Started / Node Basics). First read templates/index.json to find a matching template name, then download the corresponding JSON file to use as the base template. The official templates use the same format as this project (LiteGraph UI format, version 0.4).
Step 3: Generate and Deliver
- Output the complete workflow JSON (Litegraph UI format)
- Save it to a
.jsonfile if the user requests - MANDATORY: Add
modelsarray to the JSON top level — extract ALL model filenames from nodes (ckpt_name, unet_name, vae_name, clip_name, lora_name, etc.), look up their download URLs from the Model Download Guide below, and include them. This makes ComfyUI auto-prompt download for missing models on import. - Provide a brief explanation of the workflow structure
- List any required custom nodes the user needs to install
Workflow JSON Format Rules
CRITICAL — follow these rules exactly:
- Use Litegraph UI format (NOT API format) — with
nodesarray,linksarray,version: 0.4 - Top-level MUST have:
id(UUID string),revision(0),last_node_id,last_link_id,nodes,links,groups([]),config({}),extra({}),version(0.4) - Each node has:
id(int),type,pos([x,y]),size([w,h]),flags({}),order(int),mode(0),inputs,outputs,properties,widgets_values - Node inputs include BOTH connection inputs (
{"name": "model", "type": "MODEL", "link": 4}) AND widget inputs ({"name": "seed", "type": "INT", "widget": {"name": "seed"}, "link": null}) - All inputs/outputs should have
labelandlocalized_namefields matchingname - Links format:
[link_id, source_node_id, source_slot, target_node_id, target_slot, "TYPE"] widgets_valuesarray order must match the widget inputs order- Every workflow MUST have at least one output node (SaveImage, PreviewImage, SaveVideo, etc.)
- All
requiredinputs must be provided (checkreferences/nodes/index.mdand the category files underreferences/nodes/, plusreferences/node-registry-additions.md) - Values must satisfy min/max constraints
- For model/file selection inputs (ckpt_name, lora_name, etc.), use the real model filenames from the Model Download Guide below
- MANDATORY: Every workflow JSON MUST include a top-level
modelsarray. Scan all nodes for model file references (ckpt_name, unet_name, vae_name, clip_name, clip_name1, clip_name2, clip_name3, control_net_name, lora_name, model_name) and add each referenced model to themodelsarray withname,url(direct HuggingFace resolve link), anddirectory. This enables ComfyUI to auto-detect missing models and prompt the user to download them on import. Example:
"models": [
{"name": "flux1-dev.safetensors", "url": "https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/flux1-dev.safetensors", "directory": "diffusion_models"},
{"name": "clip_l.safetensors", "url": "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/clip_l.safetensors", "directory": "text_encoders"}
]
Common Output Slot Mappings
CheckpointLoaderSimple: 0=MODEL, 1=CLIP, 2=VAE
UNETLoader: 0=MODEL
CLIPLoader: 0=CLIP
DualCLIPLoader: 0=CLIP
VAELoader: 0=VAE
LoraLoader: 0=MODEL, 1=CLIP
CLIPTextEncode: 0=CONDITIONING
EmptyLatentImage: 0=LATENT
KSampler: 0=LATENT
VAEDecode: 0=IMAGE
LoadImage: 0=IMAGE, 1=MASK
ControlNetLoader: 0=CONTROL_NET
UpscaleModelLoader: 0=UPSCALE_MODEL
ImageUpscaleWithModel: 0=IMAGE
CLIPVisionLoader: 0=CLIP_VISION
CLIPVisionEncode: 0=CLIP_VISION_OUTPUT
LLM / Text Generation Nodes (comfyui_LLM_party)
ComfyUI integrates LLM via comfyui_LLM_party custom node package (需安装: https://github.com/heshengtao/comfyui_LLM_party).
IMPORTANT: When user requests a workflow with LLM (script generation, character parsing, storyboard breakdown, prompt enhancement), you MUST:
- Ask the user which LLM provider they want to use (OpenAI / Claude / Gemini / Ollama / DeepSeek / other)
- Ask for their model preference or recommend the latest best model for their use case
- Use the corresponding loader node and configure accordingly
Supported Providers & Loader Nodes
| Provider | Loader Node | base_url | Recommended Model |
|----------|------------|----------|-------------------|
| OpenAI | LLM_api_loader | https://api.openai.com/v1 | gpt-4.1 |
| Claude | aisuite_loader (provider="anthropic") | https://api.anthropic.com/v1 | claude-sonnet-4-20250514 |
| Gemini | LLM_api_loader | https://generativelanguage.googleapis.com/v1beta/openai | gemini-2.5-flash |
| DeepSeek | LLM_api_loader | https://api.deepseek.com/v1 | deepseek-chat |
| Ollama (local) | LLM_api_loader (is_ollama=true) | http://127.0.0.1:11434/v1/ | qwen2.5:14b |
| OpenAI-compatible | LLM_api_loader | user-provided | user-provided |
CRITICAL: Exact class_type Names (use these EXACTLY in workflow JSON)
DO NOT invent node names. Only use these exact class_type strings:
| class_type (exact) | Purpose | Source |
|---------------------|---------|--------|
| LLM_api_loader | Load API LLM (OpenAI/Claude/Gemini/DeepSeek/Ollama) | llm.py |
| easy_LLM_api_loader | Simplified API LLM loader (preset models) | llm.py |
| aisuite_loader | Multi-provider loader (anthropic/aws/google/huggingface) | llm.py |
| LLM | Main LLM chat node (multi-turn, vision, tools) | llm.py |
| LLM_local | Local model chat node | llm.py |
| LLM_local_loader | Load local LLM model | llm.py |
| mini_party | Quick single-turn LLM call | custom_tool/miniparty.py |
| CLIPTextEncode_party | Convert STRING → CONDITIONING (bridge LLM→image) | llm.py |
| KSampler_party | KSampler variant for party workflows | llm.py |
| VAEDecode_party | VAEDecode variant for party workflows | llm.py |
| json_extractor | Clean/repair JSON from LLM output | custom_tool/json_extractor.py |
| json_get_value | Extract field from JSON by key | custom_tool/json_parser.py |
| text2json | Convert text lines to JSON | custom_tool/text2json.py |
| show_text_party | Display text (debug/preview) | llm.py |
| string_logic | Conditional string routing | llm.py |
| string_combine | Concatenate strings | llm.py |
| string_combine_plus | Concatenate many strings | llm.py |
| load_persona | Load preset persona/system prompt | llm.py |
| custom_persona | Custom persona with {variable} templates | llm.py |
| replace_string | Find and replace in strings | llm.py |
| substring | Extract substring | llm.py |
Core LLM Nodes — Detailed Specs
LLM_api_loader (class_type: LLM_api_loader)
- Inputs: model_name (STRING), base_url (STRING, optional), api_key (STRING, optional), is_ollama (BOOLEAN, optional)
- Outputs: model (CUSTOM) [slot 0]
- Widget values order: [model_name, base_url, api_key, is_ollama]
LLM (class_type: LLM)
- Inputs (required): system_prompt (STRING, widget), user_prompt (STRING, widget), model (CUSTOM, connection from loader), temperature (FLOAT, widget, default=0.7), is_memory (COMBO "enable"/"disable", widget), is_tools_in_sys_prompt (COMBO, widget), is_locked (COMBO, widget), main_brain (COMBO, widget), max_length (INT, widget, default=1920)
- Inputs (optional): system_prompt_input (STRING, connection), user_prompt_input (STRING, connection), tools (STRING), file_content (STRING), images (IMAGE)
- Outputs: assistant_response (STRING) [slot 0], history (STRING) [slot 1], tool (STRING) [slot 2], image (IMAGE) [slot 3]
mini_party (class_type: mini_party)
- Inputs: input_str (STRING, connection), prompt (STRING, widget), model_name (STRING, widget), base_url (STRING, widget), api_key (STRING, widget), is_enable (BOOLEAN, widget)
- Outputs: STRING [slot 0]
LLM Output → Image/Video Bridge Nodes
CLIPTextEncode_party (class_type: CLIPTextEncode_party)
- Inputs: clip (CLIP, connection), text (STRING, connection from LLM output)
- Outputs: CONDITIONING [slot 0]
- Usage: Bridge LLM text → image generation. Connect LLM.assistant_response → CLIPTextEncode_party.text
json_extractor (class_type: json_extractor)
- Inputs: input (STRING, connection)
- Outputs: STRING [slot 0] (cleaned/repaired JSON)
json_get_value (class_type: json_get_value)
- Inputs: text (STRING, connection), key (STRING, widget)
- Outputs: ANY [slot 0] (extracted value)
LLM Workflow Patterns
Pattern: Multi-stage video production pipeline
LLM_api_loader(model, base_url, api_key) → model
↓
LLM(model, system="You are a screenwriter", user="Write a script about: {input}") → script
↓
LLM(model, system="Extract all characters as JSON", user=script) → characters_json
↓
json_extractor(characters_json) → clean JSON → json_get_value(key="character_1.appearance") → prompt
↓
CLIPTextEncode_party(prompt) or CLIPTextEncodeFlux(prompt) → CONDITIONING → FLUX → character_ref_image
↓
LLM(model, system="Break into 10 shots with video prompts", user=script) → shots_json
↓
For each shot:
json_get_value(shots_json, "shot_N.description") → scene_prompt
FLUX(scene_prompt + IP-Adapter(character_ref)) → shot_ref_image
WanImageToVideo(shot_ref_image + video_prompt) → 10s video clip
Pattern: Simple prompt enhancement
mini_party(input="a cat", prompt="Enhance this into a detailed image prompt") → enhanced_prompt
↓
CLIPTextEncode_party(enhanced_prompt) → CONDITIONING → KSampler → image
Node Reference
IMPORTANT: Do NOT read the entire node registry at once. Read only the category you need.
- First read the index:
references/nodes/index.md— lists all 42 categories with file pointers - Then read only the specific category file you need, e.g.:
references/nodes/01-loaders.md— CheckpointLoaderSimple, UNETLoader, VAELoader, CLIPLoader, LoraLoaderreferences/nodes/02-conditioning.md— CLIPTextEncode, CLIPTextEncodeFlux, CLIPTextEncodeSD3references/nodes/07-video-wan.md— WanImageToVideo, WanCameraImageToVideo, WanFirstLastFrameToVideoreferences/nodes/09-flux.md— CLIPTextEncodeFlux, BasicGuider, SamplerCustomAdvancedreferences/nodes/15-custom-samplers.md— BasicScheduler, KSamplerSelect, RandomNoisereferences/nodes/21-audio.md— StableAudio, EmptyLatentAudio, VAEDecodeAudioreferences/nodes/22-ltxv.md— EmptyLTXVLatentVideo, LTXVImgToVideoreferences/nodes/25-cosmos.md— EmptyCosmosLatentVideo, CosmosImageToVideoLatentreferences/nodes/31-hunyuan-3d.md— Hunyuan3Dv2Conditioning, VAEDecodeHunyuan3D, SaveGLB
- Also available:
references/workflow-format.md— JSON format specificationreferences/common-workflows.md— common workflow patterns and best practices
Available Templates
Text-to-Image
| Template | File | Description |
|----------|------|-------------|
| SD 1.5 Text to Image | templates/sd15-txt2img.json | Basic SD 1.5 text-to-image |
| SDXL Text to Image | templates/sdxl-txt2img.json | SDXL with dual CLIP encoding |
| SD3 Text to Image | templates/sd3-txt2img.json | SD3 with TripleCLIPLoader + CLIPTextEncodeSD3 |
| FLUX Text to Image | templates/flux-txt2img.json | FLUX.1 with guidance, advanced sampling |
Image-to-Image
| Template | File | Description |
|----------|------|-------------|
| SD 1.5 Image to Image | templates/sd15-img2img.json | SD 1.5 img2img with VAEEncode |
| SDXL Image to Image | templates/sdxl-img2img.json | SDXL img2img |
| FLUX Image to Image | templates/flux-img2img.json | FLUX img2img with advanced sampling |
LoRA
| Template | File | Description |
|----------|------|-------------|
| SD 1.5 + LoRA | templates/sd15-lora.json | SD 1.5 with LoRA loading |
| SDXL + LoRA | templates/sdxl-lora.json | SDXL with LoRA loading |
| FLUX + LoRA | templates/flux-lora.json | FLUX.1 with LoRA loading |
ControlNet
| Template | File | Description |
|----------|------|-------------|
| SD 1.5 + ControlNet | templates/sd15-controlnet.json | SD 1.5 with ControlNet |
| SDXL + ControlNet | templates/sdxl-controlnet.json | SDXL with ControlNetApplyAdvanced |
Inpainting
| Template | File | Description |
|----------|------|-------------|
| SD 1.5 Inpaint | templates/sd15-inpaint.json | SD 1.5 inpainting workflow |
| SDXL Inpaint | templates/sdxl-inpaint.json | SDXL inpainting with VAEEncodeForInpaint |
Video Generation
| Template | File | Description |
|----------|------|-------------|
| Wan 2.2 Text to Video | templates/wan22-txt2vid.json | Wan 2.2 text-to-video (832x480, 81 frames) |
| Wan 2.2 Image to Video | templates/wan22-img2vid.json | Wan 2.2 image-to-video with CLIP vision |
| Wan 2.2 First-Last Frame | templates/wan22-first-last.json | Wan 2.2 first+last frame interpolation |
| Wan 2.2 Fun Control | templates/wan22-fun-control.json | Wan 2.2 control video + reference image |
| Wan 2.2 Camera Control | templates/wan22-camera.json | Wan 2.2 camera motion control |
| HunyuanVideo T2V | templates/hunyuan-video.json | HunyuanVideo text-to-video |
| HunyuanVideo I2V | templates/hunyuan-video-i2v.json | HunyuanVideo image-to-video |
| LTXV Text to Video | templates/ltxv-txt2vid.json | LTXV text-to-video (768x512, 97 frames) |
| LTXV Image to Video | templates/ltxv-img2vid.json | LTXV image-to-video with LTXVImgToVideo |
| Mochi Text to Video | templates/mochi-txt2vid.json | Mochi text-to-video (848x480, 25 frames) |
| Cosmos Text to Video | templates/cosmos-txt2vid.json | Cosmos text-to-video (1280x704, 121 frames) |
| Cosmos Image to Video | templates/cosmos-img2vid.json | Cosmos image-to-video with start frame |
Upscale
| Template | File | Description |
|----------|------|-------------|
| Image Upscale | templates/upscale-model.json | Upscale with model (RealESRGAN etc.) |
Audio
| Template | File | Description |
|----------|------|-------------|
| Stable Audio | templates/stable-audio.json | Stable Audio generation (47s audio) |
3D Generation
| Template | File | Description |
|----------|------|-------------|
| Hunyuan3D v2 | templates/hunyuan3d-v2.json | Image to 3D mesh with Hunyuan3D v2 |
Special Architectures
| Template | File | Description |
|----------|------|-------------|
| Stable Cascade | templates/stable-cascade.json | Two-stage (Stage C + Stage B) generation |
LLM Integration (requires comfyui_LLM_party)
| Template | File | Description |
|----------|------|-------------|
| LLM Chat (API) | templates/comfyui_LLM_party/llm-chat-api.json | API LLM chat (OpenAI/Gemini/DeepSeek) |
| LLM Chat (Ollama) | templates/comfyui_LLM_party/llm-chat-ollama.json | Local Ollama LLM chat |
| LLM Prompt Enhance | templates/comfyui_LLM_party/llm-prompt-enhance.json | LLM enhances prompt → FLUX generates image |
| LLM Script to Video | templates/comfyui_LLM_party/llm-script-to-video.json | LLM script → characters → storyboard pipeline |
CRITICAL RULE: ComfyUI auto-adds a hidden control_after_generate widget after every seed INT that has control_after_generate: True. You MUST include "randomize" in widgets_values right after every seed value. This applies to KSampler, RandomNoise, and any node with a seed INT.
Quality Checklist
Before delivering a workflow, verify:
- [ ] Top-level has
id,revision,last_node_id,last_link_id,nodes,links,groups,config,extra,version - [ ] Every node has
id,type,pos,size,flags,order,mode,inputs,outputs,properties - [ ] Widget inputs are included in
inputsarray with"widget": {"name": ...}, "link": null - [ ]
widgets_valuesorder matches widget inputs order - [ ] All links are
[link_id, src_node_id, src_slot, tgt_node_id, tgt_slot, "TYPE"] - [ ] At least one output node exists (SaveImage/PreviewImage/SaveVideo)
- [ ] No circular dependencies
- [ ] Parameter values are within valid ranges
Step 4: Output Model Download Guide
After generating the workflow JSON, ALWAYS output a Model Download Guide section listing every model file referenced in the workflow. For each model, provide:
- Model name — the exact filename used in
widgets_values - What it is — checkpoint / VAE / CLIP / LoRA / ControlNet / Upscale model
- Where to put it — the ComfyUI subdirectory (
models/checkpoints/,models/vae/, etc.) - Download source — HuggingFace or CivitAI URL
Use this reference table for common models:
SD 1.5
| Model | Directory | Download | |-------|-----------|----------| | v1-5-pruned-emaonly.safetensors | models/checkpoints/ | https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5 | | sd-v1-5-inpainting.ckpt | models/checkpoints/ | https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-inpainting |
SDXL
| Model | Directory | Download | |-------|-----------|----------| | sd_xl_base_1.0.safetensors | models/checkpoints/ | https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0 |
FLUX
| Model | Directory | Download | |-------|-----------|----------| | flux1-dev.safetensors | models/diffusion_models/ | https://huggingface.co/black-forest-labs/FLUX.1-dev | | clip_l.safetensors | models/text_encoders/ | https://huggingface.co/comfyanonymous/flux_text_encoders | | t5xxl_fp16.safetensors | models/text_encoders/ | https://huggingface.co/comfyanonymous/flux_text_encoders | | ae.safetensors | models/vae/ | https://huggingface.co/black-forest-labs/FLUX.1-dev (in ae.safetensors) |
Wan 2.2
| Model | Directory | Download | |-------|-----------|----------| | wan2.2_t2v_14b.safetensors | models/diffusion_models/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | wan2.2_i2v_480p_14b.safetensors | models/diffusion_models/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | wan2.2_i2v_720p_14b.safetensors | models/diffusion_models/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | umt5_xxl_fp16.safetensors | models/text_encoders/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | open_clip_vit_h.safetensors | models/text_encoders/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | wan_2.1_vae.safetensors | models/vae/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged | | clip_vision_h.safetensors | models/clip_vision/ | https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged |
HunyuanVideo
| Model | Directory | Download | |-------|-----------|----------| | hunyuan_video_t2v_720p_bf16.safetensors | models/diffusion_models/ | https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged | | hunyuan_video_vae_bf16.safetensors | models/vae/ | https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged | | llava_llama3_fp16.safetensors | models/text_encoders/ | https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged | | clip_l.safetensors | models/text_encoders/ | https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged |
ControlNet (SD 1.5)
| Model | Directory | Download | |-------|-----------|----------| | control_v11p_sd15_canny.safetensors | models/controlnet/ | https://huggingface.co/lllyasviel/ControlNet-v1-1 | | control_v11p_sd15_openpose.safetensors | models/controlnet/ | https://huggingface.co/lllyasviel/ControlNet-v1-1 | | control_v11f1p_sd15_depth.safetensors | models/controlnet/ | https://huggingface.co/lllyasviel/ControlNet-v1-1 |
Upscale Models
| Model | Directory | Download | |-------|-----------|----------| | RealESRGAN_x4plus.pth | models/upscale_models/ | https://huggingface.co/ai-forever/Real-ESRGAN | | RealESRGAN_x4plus_anime_6B.pth | models/upscale_models/ | https://huggingface.co/ai-forever/Real-ESRGAN | | 4x-UltraSharp.pth | models/upscale_models/ | https://huggingface.co/Kim2091/UltraSharp |
Output Format Example
After the workflow JSON, output like this:
## 模型下载指南
本工作流需要以下模型文件:
1. **wan2.2_t2v_14b.safetensors** (扩散模型)
- 放置目录: `ComfyUI/models/diffusion_models/`
- 下载地址: https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged
2. **umt5_xxl_fp16.safetensors** (文本编码器)
- 放置目录: `ComfyUI/models/text_encoders/`
- 下载地址: https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged
...
💡 提示: 可使用 `huggingface-cli download` 命令批量下载
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.