/install comfyui-generator
ComfyUI Generator Skill
Overview
Integration between OpenClaw and ComfyUI for AI media generation.
Features
- Text-to-image generation
- Image style transfer
- Batch processing
- Automated workflow management
- File monitoring and archiving
Installation
Prerequisites
- ComfyUI installed at
C:\ComfyUI - ComfyUI service running on
http://127.0.0.1:8188 - OpenClaw 2026.4.5+
Setup
# Set environment variables
export COMFY_API_KEY="local_comfyui"
export COMFY_BASE_URL="http://127.0.0.1:8188"
# Copy workflow files
cp -r workflows/*.json "C:\ComfyUI\input\workflows\"
Usage
Generate Image
openclaw comfy generate --prompt "a beautiful landscape" --style cyberpunk
Style Transfer
openclaw comfy style --image "path/to/image.jpg" --style "van gogh"
Batch Processing
openclaw comfy batch --input prompts.txt --output output_dir --iterations 5
Configuration
Environment Variables
COMFY_API_KEY="local_comfyui"
COMFY_BASE_URL="http://127.0.0.1:8188"
COMFY_OUTPUT_DIR="C:\ComfyUI\output"
Workflow Configuration
Place workflow JSON files in:
C:\ComfyUI\input\workflows\
Examples
Basic Image Generation
from comfy_client import ComfyUIClient
client = ComfyUIClient()
result = client.generate_image(
prompt="a futuristic city at night",
workflow="image_generation.json"
)
Style Transfer
result = client.style_transfer(
image_path="input.jpg",
style="cyberpunk",
workflow="style_transfer.json"
)
Troubleshooting
Service Not Running
# Check if ComfyUI is running
curl http://127.0.0.1:8188
# Start ComfyUI
python "C:\ComfyUI\main.py" --listen 127.0.0.1 --port 8188
API Connection Issues
- Verify firewall allows port 8188
- Check ComfyUI logs in
C:\ComfyUI\logs\ - Ensure API key is set correctly
Generation Quality
- Use detailed prompts
- Adjust workflow parameters
- Try different models
Files
Core Scripts
scripts/comfy_client.py- API clientscripts/prompt_generator.py- Prompt optimizationscripts/file_monitor.py- Output monitoring
Workflow Files
workflows/image_generation.json- Basic image generationworkflows/style_transfer.json- Style transferworkflows/upscale.json- Image upscaling
Configuration
config/settings.yaml- Skill configurationconfig/prompt_templates.json- Prompt templates
License
MIT License
Support
For issues and questions, please check:
- ComfyUI documentation
- OpenClaw documentation
- Skill logs in
C:\Users\LEI\.openclaw\logs\
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install comfyui-generator - After installation, invoke the skill by name or use
/comfyui-generator - Provide required inputs per the skill's parameter spec and get structured output
What is ComfyUI Generator?
Generate AI images and perform style transfers via ComfyUI with batch processing and automated workflow management through OpenClaw integration. It is an AI Agent Skill for Claude Code / OpenClaw, with 114 downloads so far.
How do I install ComfyUI Generator?
Run "/install comfyui-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ComfyUI Generator free?
Yes, ComfyUI Generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does ComfyUI Generator support?
ComfyUI Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ComfyUI Generator?
It is built and maintained by nl108 (@nl108); the current version is v1.0.0.