원클릭으로
gen
Generate an image with ComfyUI from a text prompt
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate an image with ComfyUI from a text prompt
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
Create a ComfyUI workflow from a template
| name | gen |
| description | Generate an image with ComfyUI from a text prompt |
Generate an image using ComfyUI based on the user's prompt "$ARGUMENTS".
Parse the prompt. Extract any explicit parameters (dimensions, steps, cfg, model name) from the user's request. Reject and ask for clarification only in these specific cases:
Otherwise, apply these defaults for the listed parameters (and only these) when not specified:
Select a model. If the user specified a model name, use it. Otherwise, call comfyui_list_models with folder "checkpoints", pick one from the returned items, and ask the user to confirm before proceeding (offer to swap if they want a different one).
Generate the image. Call comfyui_generate_image with the parsed parameters and wait=True so we block until completion.
Fetch the result. The response is a dict envelope with keys status (expect "completed"), prompt_id, outputs, elapsed_seconds, and optionally warnings. outputs is a list of {node_id, filename, subfolder} entries — read the first entry's filename and subfolder and call comfyui_get_image with those. (Tip: pass preview_format="webp" and preview_quality=80 to comfyui_get_image for a thumbnail instead of the full PNG — much cheaper context.)
Present the result. Show the image and a summary of the generation parameters used (prompt, model, dimensions, steps, cfg).
comfyui_get_queue to see if ComfyUI is busy or stuck./comfy:workflow instead.