Web & Frontend DevelopmentDocumentedScanned
comfyui-runner
Start/stop/status for a ComfyUI instance.
Share:
Installation
npx clawhub@latest install comfyui-runnerView the full skill documentation and source below.
Documentation
comfyui-runner
Purpose
Start, stop, and check the status of a local ComfyUI instance.Configuration
COMFYUI_HOST: Host/IP of the ComfyUI server (default192.168.179.111).COMFYUI_PORT: Port of the ComfyUI server (default28188).COMFYUI_USER: Optional username for basic auth.COMFYUI_PASS: Optional password for basic auth.
.env file in the skill directory.
Usage
{
"action": "run" | "stop" | "status"
}
run: Starts the ComfyUI server if not already running.stop: Stops the ComfyUI server.status: Returns whether the server is reachable.
Example
{"action": "status"}
Notes
This skill assumes the ComfyUI binary is available in the system PATH or in the same directory as the skill. It usescurl to ping the /health endpoint.