ComfyUI Skill Enables AI Agents to Queue and Batch Image Renders via Natural Language

A developer has released a ComfyUI skill that enables AI coding agents to queue, batch, and manage image renders directly from chat. Instead of manually switching to the ComfyUI interface, users can ask their agent to handle workflow construction, job submission, and polling until completion.
How It Works
The skill operates through a specific sequence:
- User asks agent for images
- Agent calls the ComfyUI skill as a tool
- Skill builds workflow JSON from user inputs
- POSTs to local ComfyUI HTTP API
- Polls until render completes
- Returns output path to agent
Natural Language Capabilities
What distinguishes this from a basic API script is the natural language layer. Users can issue commands like:
- "Make 50 variations of this concept with different seeds, save them to my concepts folder"
- "Compare these 4 prompts side by side at 1024x1024"
- "Render all of these at 20, 30, and 40 steps so I can pick the sweet spot"
The agent translates these requests into actual ComfyUI workflow JSON and handles queue management, returning file paths when renders are complete.
Setup and Implementation
The skill is fully local—nothing leaves your machine—and works with whatever you already have loaded in ComfyUI. To implement:
- Drop the skill into your OpenClaw workspace skills/ folder
- Update the endpoint in SKILL.md
- Restart the gateway
The open-source repository is available at: https://github.com/Zambav/comfyui-skill-public
📖 Read the full source: r/openclaw
👀 See Also

ZSE: Open-source LLM inference engine with 3.9-second cold starts
ZSE is an open-source LLM inference engine that reduces 32B model memory requirements from 64GB to 19.3GB VRAM and achieves 3.9-second cold starts for 7B models using a pre-quantized .zse format with memory-mapped weights.

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents
DELIGHT is a local orchestrator that runs multiple hidden ChatGPT browser sessions simultaneously, coordinating them like a team of agents without requiring API keys or GPU resources. It connects to OpenClaw as an action layer to apply changes to real files and run tests.

Publicly Hosted MCP Servers for Health, Academic, and Government Data
A developer has built and publicly hosts 14 MCP servers providing access to CDC datasets, clinical trials, FDA data, academic publications, congressional information, weather data, and other utilities. These servers require no setup, API keys, or local installation.

Dynamic Status Bar for Claude Code Shows Live Updates
A developer has improved their Claude Code status bar from static text to dynamic display with real-time updates showing what Claude is working on. The configuration is available as a GitHub gist.