skills$openclaw/comfyui-request
xtopher861.6k

by xtopher86

comfyui-request – OpenClaw Skill

comfyui-request is an OpenClaw Skills integration for data analytics workflows. Send a workflow request to ComfyUI and return image results.

1.6k stars441 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namecomfyui-request
descriptionSend a workflow request to ComfyUI and return image results. OpenClaw Skills integration.
ownerxtopher86
repositoryxtopher86/comfyui-request
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xtopher86/comfyui-request
last updatedFeb 7, 2026

Maintainer

xtopher86

xtopher86

Maintains comfyui-request in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
bin
cli.js
5.3 KB
_meta.json
285 B
package.json
155 B
skill.json
133 B
SKILL.md
1.1 KB
SKILL.md

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 (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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

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.

FAQ

How do I install comfyui-request?

Run openclaw add @xtopher86/comfyui-request in your terminal. This installs comfyui-request into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xtopher86/comfyui-request. Review commits and README documentation before installing.