Jump to related tools in the same category or review the original source on GitHub.

Image & Video Generation @xtopher86 Updated 2/26/2026

🧩 Comfyui OpenClaw Skill - ClawHub

Do you want your AI agent to automate Comfyui workflows? This free skill from ClawHub helps with image & video generation tasks without building custom tools from scratch.

What this skill does

Send a workflow request to ComfyUI and return image results.

Install

npx clawhub@latest install comfyui-request

Full SKILL.md

Open original
namedescription
comfyui-requestSend a workflow request to ComfyUI and return image results.

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 (default 192.168.179.111).
  • COMFYUI_PORT: Port of the ComfyUI server (default 28188).
  • 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.

Original URL: https://github.com/openclaw/skills/blob/main/skills/xtopher86/comfyui-request

Related skills

If this matches your use case, these are close alternatives in the same category.