mit einem Klick
workflow
Create a ComfyUI workflow from a template
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Create a ComfyUI workflow from a template
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| name | workflow |
| description | Create a ComfyUI workflow from a template |
Create and optionally run a ComfyUI workflow. Template or description provided by the user as input: "$ARGUMENTS".
Pick a template. If no specific template was requested, choose from the built-in template names accepted by comfyui_create_workflow: txt2img, img2img, upscale, inpaint, txt2vid_animatediff, txt2vid_wan, controlnet_canny, controlnet_depth, controlnet_openpose, ip_adapter, lora_stack, face_restore, flux_txt2img, sdxl_txt2img. The full list is also in comfyui_create_workflow's docstring. (Note: comfyui_list_workflows returns server-side /workflow_templates from front-end packages — not these MCP-built-in templates.) If the user provides a template name that is not in this list, respond with an error message and list the valid options above.
Create the workflow.
comfyui_create_workflow with only the template name (omit params; it defaults to "", which applies the predefined settings for the selected template).params argument:
create_workflow(template="txt2img", params='{"prompt": "a sunset", "width": 768}')
Validate the workflow. Call comfyui_validate_workflow with the workflow JSON returned from step 2. The response is a dict {valid, errors, warnings, node_count, pipeline}. Report any entries in errors (blocking) and warnings (non-blocking).
Present the workflow. Show a summary of what the workflow does (nodes, connections, key parameters). Offer the user two options:
comfyui_run_workflow with wait=True. The response is a dict envelope: {status, prompt_id, outputs, elapsed_seconds, warnings?}. Read status to confirm completion.comfyui_modify_workflow to add/remove nodes or change parameters, then re-validatecomfyui_summarize_workflow for a human-readable text or Mermaid overview (output_format="text" or "mermaid").comfyui_analyze_workflow if you need the structured analysis as a dict (fields like pipeline, models, parameters) without parsing prose./comfy:gen is faster.Generate an image with ComfyUI from a text prompt
Show recent ComfyUI generation history
List available ComfyUI models, optionally filtered by type
Show execution progress for a ComfyUI job
Show ComfyUI queue status with running and pending jobs
Troubleshooting guide for ComfyUI MCP connection issues, model errors, workflow failures, and security warnings. Use when users encounter errors or unexpected behavior.