Comfyui anfrage

v1.0.0

Send a workflow request to ComfyUI and return image results.

2· 3k·7 current·7 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for xtopher86/comfyui-request.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Comfyui anfrage" (xtopher86/comfyui-request) from ClawHub.
Skill page: https://clawhub.ai/xtopher86/comfyui-request
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: node, curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install comfyui-request

ClawHub CLI

Package manager switcher

npx clawhub@latest install comfyui-request
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The code implements sending a prompt to a local ComfyUI-like HTTP API (/prompt), polling /history/{prompt_id}, and returning image info and view URLs — this matches the stated purpose of requesting ComfyUI workflows. However the SKILL.md text claims the skill POSTs to /run and expects an 'image' field, which does not match the implementation. The skill also hardcodes a default LAN IP (192.168.179.111) and port (28188) which is plausible for local testing but may be surprising to users.
!
Instruction Scope
The SKILL.md instructs POSTing to /run and expecting an 'image' field (or base64) but the CLI actually POSTs to /prompt, expects a prompt_id in the response, polls /history/{prompt_id}, and extracts images from outputs. This mismatch could lead to unexpected behavior. The SKILL.md also suggests using a .env file in the skill directory; the code reads environment variables but there is no install step that creates or documents such a file.
Install Mechanism
There is no install spec and no remote downloads. The skill is instruction + a small CLI script (Node) — nothing writes arbitrary archives to disk or pulls external code at install-time.
Credentials
The skill does not require any secrets by default. It supports optional COMFYUI_HOST/PORT/USER/PASS and timeout/poll env vars which are reasonable. However the skill metadata and registry list required binaries as node and curl; the included Node script does not call curl, so declaring curl as required is unnecessary and disproportionate. Also the default COMFYUI_HOST is a specific private IP — verify that this default is intended for your environment.
Persistence & Privilege
The skill is not always-enabled and does not request elevated privileges or modify other skills or system-wide settings. It executes as a CLI invoked by the agent and only makes HTTP calls to the configured host/port.
What to consider before installing
This skill's code appears to perform the expected ComfyUI request/poll flow, but the documentation and declared requirements disagree with the implementation. Before installing: (1) confirm you want the default host/port (192.168.179.111:28188) or set COMFYUI_HOST/PORT to your own server; (2) note the SKILL.md says it posts to /run but the code uses /prompt and /history — if your ComfyUI API differs, the skill may fail; (3) the package declares curl as required but the script does not use it — you can remove that requirement or verify why it was declared; (4) if you plan to provide COMFYUI_USER/PASS, ensure credentials are only stored in a secure place; (5) test the CLI in a safe environment against your ComfyUI endpoint to confirm behavior, and consider asking the skill author to correct the documentation or code so endpoints and expectations match.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🧩 Clawdis
Binsnode, curl
latestvk978rssjrnf9h2gnfg88sp1z717zy75a
3kdownloads
2stars
1versions
Updated 2mo ago
v1.0.0
MIT-0

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.

Comments

Loading comments...