comfyui-workflowslisted
Install: claude install-skill seanwinslow28/code-brain
# ComfyUI Workflows
## Purpose
Design, debug, and automate ComfyUI workflows for image generation. This skill covers the workflow JSON format, common node patterns, API integration for queuing/polling, LoRA and ControlNet configuration, batch generation, and workflow templating. Complements `ai-creative-tools` (which handles tool orchestration across ComfyUI, ElevenLabs, and HF) by going deep on ComfyUI specifically.
## When to Use
- Building a new ComfyUI workflow from scratch
- Debugging a workflow that produces bad results or errors
- Adding LoRA, ControlNet, or IPAdapter to an existing workflow
- Automating batch generation via the ComfyUI API
- Converting a UI-built workflow to a reusable JSON template
- Managing custom nodes and model files
## Examples
**Example 1: Build a Character Generation Workflow**
```
User: "Create a ComfyUI workflow for generating character poses with a style LoRA"
Claude: [Uses comfyui-workflows]
Workflow: character_pose_lora.json
Node graph:
CheckpointLoader → KSampler → VAEDecode → SaveImage
↓ ↑
LoraLoader ──→ CLIP ──→ CLIPTextEncode (positive)
──→ CLIPTextEncode (negative)
Settings:
- Checkpoint: sd_xl_base_1.0.safetensors
- LoRA: character_style_v2.safetensors (weight: 0.8)
- Sampler: euler_ancestral, 25 steps, cfg: 7.0
- Resolution: 1024x1024
Saving workflow JSON...
```
**Example 2: Debug Poor Generation Quality**
```
User: "My ComfyUI outputs look blurry and washed out"
Claude: [