🧪 Skills
Comfyui anfrage
--- name: comfyui-request description: Send a workflow request to ComfyUI and return image results. metadata: {"clawdbot":{"emoji":"🧩","requires":{"bins":["node","curl"]},"entry":"bin/cli.js"}} ---
v1.0.0
Description
name: comfyui-request description: Send a workflow request to ComfyUI and return image results. metadata: {"clawdbot":{"emoji":"🧩","requires":{"bins":["node","curl"]},"entry":"bin/cli.js"}}
comfyui-request
Purpose
Send a workflow request to a running ComfyUI instance and return the generated image URL or base64 data.
Configuration
COMFYUI_HOST: Host/IP of the ComfyUI server (default192.168.179.111).COMFYUI_PORT: Port of the ComfyUI server (default28188).COMFYUI_USER: Optional username for basic auth.COMFYUI_PASS: Optional password for basic auth.
These can be set via environment variables or a .env file in the skill directory.
Usage
{
"action": "run",
"workflow": { ... } // JSON workflow object
}
The skill will POST to http://{host}:{port}/run and return the response JSON.
Example
{
"action": "run",
"workflow": {
"nodes": [ ... ],
"edges": [ ... ]
}
}
Notes
The skill expects the ComfyUI server to expose the /run endpoint and return a JSON object containing an image field with a URL or base64 string.
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!