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

Exploiting LLM Hidden Agency Signal (Â) for Better Tool Calling
A developer discovered that LLMs have a linearly separable hidden state direction called  that predicts tool calls with AUC > 0.94. Using this signal to force tool calls improved Qwen3-1.7B performance from 26.7% to 85% (+58% gain) and reduced no-tool failures from 43% to 2.6%.

Open Source Vigil Tool Addresses Agent Identity Problem in OpenClaw Ecosystem
An OpenClaw user building a web service discovered agent traffic indistinguishable from human users, prompting development of Vigil - an open source identity layer based on W3C DID that provides cryptographic credentials and behavioral history for agents.
UI and Server for Anthropic's Natural Language Autoencoders on llama.cpp
A custom llama.cpp server and Mikupad UI for Anthropic's open-weight Natural Language Autoencoders, supporting activation extraction, explanation, reconstruction, and steering via explanation editing.

Meta Ads MCP OAuth Works But Most Ad Accounts Not Enabled Yet
Meta Ads MCP OAuth flow works and loads 29 tools, but ads_get_ad_accounts returns is_ads_mcp_enabled: false with a message that the feature is gradually rolling out.