ComfyUI
SkillMediaDrive ComfyUI (local Stable Diffusion / image-gen pipeline) via its HTTP API to generate and edit images. Use when the user has ComfyUI running and wants image generation/upscale/img2img workflows.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the ComfyUI skill
What this skill tells your AI
The instructions your AI receives, as published by metaspartan/cybara in skills/comfyui/SKILL.md and read by ahel’s review.
ComfyUI is a node-based Stable Diffusion pipeline with an HTTP API. Generate images by posting a workflow (prompt graph) and polling for results.
When to use
- "generate an image of … (via ComfyUI)"
- img2img, inpainting, upscaling, or custom SDXL/Flux workflows.
- The user references ComfyUI explicitly or has it installed.
How it works
- Build a workflow graph as JSON (
promptAPI). Each node has aclass_typeandinputs. A minimal txt2img graph: CheckpointLoader → CLIPTextEncode (pos/neg) → EmptyLatentImage → KSampler → VAEDecode → SaveImage. - Submit:
POST /promptwith{"prompt": <graph>, "client_id": <id>}. Returns aprompt_id. - Poll history:
GET /history/<prompt_id>until the output image(s) appear, then fetch from/view?filename=…. - Save outputs to the workspace and state their paths.
Minimal node template (txt2img)
{
"3": { "class_type": "KSampler", "inputs": {
"seed": 42, "steps": 25, "cfg": 7, "sampler_name": "euler", "scheduler": "normal",
"denoise": 1, "model": ["4",0], "positive": ["6",0], "negative": ["7",0],
"latent_image": ["5",0] } },
"4": { "class_type": "CheckpointLoaderSimple", "inputs": { "ckpt_name": "sdxl_base.safetensors" } },
"5": { "class_type": "EmptyLatentImage", "inputs": { "width": 1024, "height": 1024, "batch_size": 1 } },
"6": { "class_type": "CLIPTextEncode", "inputs": { "text": "<prompt>", "clip": ["4",1] } },
"7": { "class_type": "CLIPTextEncode", "inputs": { "text": "<negative>", "clip": ["4",1] } },
"8": { "class_type": "VAEDecode", "inputs": { "samples": ["3",0], "vae": ["4",2] } },
"9": { "class_type": "SaveImage", "inputs": { "filename_prefix": "cybara", "images": ["8",0] } }
}
Notes
- Default server:
http://127.0.0.1:8188(override via the request URL). - Use the
httptool to submit/poll; you don't need rawfetch. - For img2img/inpaint, add
LoadImage+ replaceEmptyLatentImage; lowerdenoise(~0.5–0.75) to keep structure. - Always state the server URL and output path in your response.
Signals
- GitHub stars
- 28
- Forks
- 7
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
comfyui-metaspartan- Source
- github.com/metaspartan/cybara