comfyui
Send a workflow request to ComfyUI and return image results.
Setup & Installation
Install command
clawhub install xtopher86/comfyui-requestIf the CLI is not installed:
Install command
npx clawhub@latest install xtopher86/comfyui-requestOr install with OpenClaw CLI:
Install command
openclaw skills install xtopher86/comfyui-requestor paste the repo link into your assistant's chat
Install command
https://github.com/openclaw/skills/tree/main/skills/xtopher86/comfyui-requestWhat This Skill Does
Sends a JSON workflow to a running ComfyUI server and returns the generated image as a URL or base64 string. Connects over HTTP using configurable host, port, and optional basic auth credentials.
Lets agents drive ComfyUI image generation without manual UI interaction, making it composable with other automated steps.
When to Use It
- Triggering image generation from an AI agent conversation
- Automating batch image workflows without opening the ComfyUI UI
- Integrating ComfyUI output into a larger multi-step pipeline
- Testing workflow JSON changes programmatically
- Retrieving generated images for downstream processing or storage
View original SKILL.md file
# 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
```json
{
"action": "run",
"workflow": { ... } // JSON workflow object
}
```
The skill will POST to `http://{host}:{port}/run` and return the response JSON.
## Example
```json
{
"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.
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: Triggering image generation from an AI agent conversation
- 1Triggering image generation from an AI agent conversation
- 2Automating batch image workflows without opening the ComfyUI UI
- 3Integrating ComfyUI output into a larger multi-step pipeline
- 4Testing workflow JSON changes programmatically
- 5Retrieving generated images for downstream processing or storage
Send a workflow request to ComfyUI and return image results.
Security Audits
These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.