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

Qwen3.5-9B-Claude-4.6-Opus-Uncensored-v2 Model Released with LM Studio Configuration
A merged uncensored model combining Qwen3.5-9B architecture with Claude 4.6 Opus training data is now available, with specific LM Studio 0.4.7 settings provided for optimal performance including temperature 0.7 and top K sampling 20.

TruthGuard: Shell Script Hooks That Catch AI Coding Agent Lies
TruthGuard is an open-source tool that uses shell script hooks to verify what Claude Code and Gemini CLI actually do versus what they claim. It catches phantom edits, exit code lies, dangerous shortcuts, and blocks commits when tests fail.

AbsolutelySkilled Registry Adds 156 Production-Ready Skills for Claude Code
A developer has created AbsolutelySkilled, a registry of 156 structured skill modules for Claude Code that persist across sessions. Each skill includes trigger conditions, reference files, test cases, and anti-patterns in SKILL.md files.

Flavian: A WordPress Development Framework with 24 Specialized Claude Code Agents
Flavian is an open-source WordPress development framework built around Claude Code, featuring 24 specialized agents for tasks like frontend development, security audits, and Figma-to-WordPress conversion. The creator found domain-specific agents significantly outperform general-purpose ones for WordPress development.