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

Agents Room: Desktop App for Visualizing Claude Code Agent Teams
Agents Room is an Electron desktop application that scans for .claude/agents/ folders, reads frontmatter, and visualizes agent relationships on a canvas with automatic connection lines. It allows creating/editing agents, skills, and commands directly in the UI instead of editing markdown files.

LocalSynapse MCP Server Enables Claude to Search Local Documents Offline
LocalSynapse is an MCP server that indexes and searches inside local documents (Word, Excel, PowerPoint, PDF) using hybrid BM25 + AI semantic search. Everything runs locally with no cloud or API keys required.

Agent frameworks waste 350,000+ tokens per session resending static files
A benchmark on a local Qwen 3.5 122B setup revealed agent frameworks waste over 350,000 tokens per session by resending static files. A compile-time approach reduced query context from 1,373 tokens to 73, achieving a 95% reduction.

Gullivr Travel App Integrates with Claude via Remote MCP Server
A developer built Gullivr, a travel planning app with a remote MCP server that allows Claude to create and manage trips directly within the app. The integration enables real-time updates while chatting with Claude, eliminating manual copying between tools.