---
title: Getting Started
description: Install ComfyUI Skills for OpenClaw, connect your first ComfyUI server, upload a workflow, and verify that the skill can generate images.
permalink: /getting-started/
---
Getting Started
This page is the shortest reliable path from cloning the repository to
triggering a real ComfyUI workflow through OpenClaw or the local CLI.
Install the skill, connect ComfyUI, and run your first workflow.
Prerequisites
http://127.0.0.1:8188.Save Image or another downloadable image output.Quick Install
cd ~/.openclaw/workspace/skills
git clone https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git comfyui-skill-openclaw
cd comfyui-skill-openclaw
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r requirements.txt
cp config.example.json config.json
If python3 --version is below 3.10, create the virtual environment with any installed python3.10+ interpreter, for example python3.12 -m venv .venv.
If your macOS Python blocks global package changes, keep everything inside the virtual environment above.
Recommended Flow
./ui/run_ui.sh on macOS or Linux, or ui\run_ui.bat on Windows.http://localhost:18189.Best practice: start with the UI once, then automate later with CLI or agent edits.
CLI Verification
First list the registered workflows:
python scripts/registry.py list
Then run a real generation test:
python scripts/comfyui_client.py \
--workflow local/Default \
--args '{"prompt":"A premium product photo"}'
Successful runs return a prompt_id and one or more local image paths in ./outputs.
Workflow Files
data/local/Default/
workflow.json
schema.json
workflow.json is the ComfyUI API-format export.schema.json exposes only the parameters the agent should be allowed to call.<server_id>/<workflow_id>.