بنقرة واحدة
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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.