Install
openclaw skills install @chrisliu95/comfyui-fluxGenerate images locally using ComfyUI + Flux.1 Dev model. Zero API cost, strong text rendering. Use when: generating images locally, creating slides/PPT graphics, or when user says 'local image', '本地生图', 'flux', 'comfyui'. Requires ComfyUI running at localhost:8188. For face-consistent selfies, prefer wanx-image-generation skill instead.
openclaw skills install @chrisliu95/comfyui-fluxGenerate images locally via ComfyUI API + Flux.1 Dev. No API cost, excellent text rendering.
ComfyUI must be running (default port 8200):
# 启动
bash /Users/chrisliu/ComfyUI/start.sh
# 关闭
bash /Users/chrisliu/ComfyUI/stop.sh
Override URL via env: COMFYUI_URL=http://127.0.0.1:8200
Models (already installed):
flux1-dev.safetensors (diffusion model)t5xxl_fp8_e4m3fn.safetensors + clip_l.safetensors (text encoders)ae.safetensors (VAE)python3 {baseDir}/scripts/flux_generate.py --prompt "PROMPT" [OPTIONS]
python3 {baseDir}/scripts/flux_generate.py \
--prompt "A professional presentation slide with title 'AI Revolution' in bold white text on dark gradient background"
python3 {baseDir}/scripts/flux_generate.py \
--prompt "..." \
--width 1344 --height 768
| Parameter | Default | Description |
|---|---|---|
--prompt | (required) | Image description |
--negative | "" | Negative prompt |
--width | 1024 | Image width |
--height | 1024 | Image height |
--steps | 20 | Sampling steps (more = better but slower) |
--cfg | 1.0 | CFG scale (Flux works best at 1.0) |
--seed | random | Reproducibility seed |
--output | auto | Output path (default: generated-images/flux-{ts}.png) |
--timeout | 600 | Max wait seconds |
| Use Case | Size | Flag |
|---|---|---|
| Square | 1024×1024 | (default) |
| PPT 16:9 | 1344×768 | --width 1344 --height 768 |
| Portrait | 768×1344 | --width 768 --height 1344 |
| Landscape | 1344×768 | --width 1344 --height 768 |
Generate images with a reference face using PuLID-Flux (zero API cost, zero censorship):
python3 {baseDir}/scripts/pulid_generate.py \
--prompt "PROMPT" \
--ref-image path/to/face.jpg [OPTIONS]
python3 {baseDir}/scripts/pulid_generate.py \
--prompt "a girl sitting in a cafe, warm afternoon light, casual outfit" \
--ref-image avatars/kimi.jpg
python3 {baseDir}/scripts/pulid_generate.py \
--prompt "a girl on the beach at sunset, wearing a sundress" \
--ref-image avatars/kimi.jpg \
--width 1024 --height 1024 \
--weight 1.2
| Parameter | Default | Description |
|---|---|---|
--prompt | (required) | Image description |
--ref-image | (required) | Reference face image path |
--negative | "" | Negative prompt |
--width | 768 | Image width |
--height | 1024 | Image height (portrait default) |
--steps | 10 | Sampling steps (PuLID works well with fewer) |
--cfg | 3.5 | Guidance scale |
--seed | random | Reproducibility seed |
--weight | 1.0 | Face similarity weight (0.0-5.0, higher = more similar) |
--start-at | 0.0 | PuLID start timestep |
--end-at | 1.0 | PuLID end timestep |
--output | auto | Output path (default: generated-images/pulid-{ts}.png) |
--timeout | 600 | Max wait seconds |
--weight 1.0 is balanced; increase to 1.2-1.5 for stronger likeness--steps 10 is enough for PuLID; increase to 20 for more detailPrints MEDIA:<path> — auto-attached to chat reply. Default saves to generated-images/.
If ComfyUI is not running, the script exits with an error and prints startup instructions.