What problem does it solve? Running ComfyUI image and video generation programmatically requires managing API-format workflows, verifying that models and custom nodes are installed, and handling local versus Comfy Cloud endpoint differences, which is error-prone when done manually. ## Core Features & Use Cases - Workflow Execution: Run API-format ComfyUI workflows (SD1.5, SDXL, Flux, AnimateDiff, Wan video) with prompt and parameter injection via run_workflow.py. - Dependency Checking: Verify required custom nodes, models, and embeddings against a running server with check_deps.py, and auto-install missing pieces with auto_fix_deps.py. - Parameter Discovery: Extract controllable parameters (prompt, seed, steps, cfg, dimensions) from any workflow using extract_schema.py. - Use Case: A user wants to generate a 1024x1024 SDXL image from a text prompt; the skill validates the workflow, checks the checkpoint is installed, executes it through the ComfyUI API, and returns image URLs with seed and dimension metadata. ## Quick Start Ask the agent to generate an image from a text prompt using the sdxl_txt2img workflow, optionally specifying seed, steps, and output directory.