Agent Skills
› viralcode/openwhale
› comfyui-runner
comfyui-runner
GitHub用于本地 ComfyUI 实例的生命周期管理,支持启动、停止及状态检查。通过环境变量配置连接信息,调用 API 执行操作并返回结果,适用于 AI 图像生成服务的运维控制。
Trigger Scenarios
需要启动或重启 ComfyUI 服务
检查 ComfyUI 服务是否正常运行
停止正在运行的 ComfyUI 实例
Install
npx skills add viralcode/openwhale --skill comfyui-runner -g -y
SKILL.md
Frontmatter
{
"name": "comfyui-runner",
"metadata": {
"clawdbot": {
"emoji": "🧩",
"entry": "bin\/cli.js",
"requires": {
"bins": [
"node",
"curl"
]
}
}
},
"description": "Start\/stop\/status for a ComfyUI instance."
}
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.
These can be set via environment variables or a .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 uses curl to ping the /health endpoint.
Version History
- 238a4b1 Current 2026-08-20 08:21


