ComfyUI Workflows 2026: How to Load, Edit and Share Node Graphs
ComfyUI's node graphs intimidate beginners. This guide shows the workflow file format, where to find them, and how to edit without breaking everything.
💡 What You Will Learn
ComfyUI's node graphs intimidate beginners. This guide shows the workflow file format, where to find them, and how to edit without breaking everything.
📜 Table of Contents
What a ComfyUI Workflow Actually Is
ComfyUI (127,299 stars, 2026-08-14) is the node-based image generation tool, and a 'workflow' is a JSON file describing the graph: nodes, connections, and saved values. Load it, press Run, and the graph executes. The superpower: workflows are shareable text - one file contains an entire pipeline (checkpoint, prompt, ControlNet, upscale).
The Workflow File Format
A .json workflow contains three parts: 1. Nodes - each with a type (CheckpointLoader, KSampler, CLIPTextEncode...) and position. 2. Links - connections between node outputs and inputs (arrays of [link_id, from_node, from_slot, to_node, to_slot]). 3. Values - widget inputs like prompts and steps.
You rarely edit the JSON by hand - you edit visually and export.
Where to Find Workflows
- civitai.com - the biggest library: images often include the workflow; download and drag into ComfyUI.
- comfyworkflows.com - dedicated workflow sharing with search.
- GitHub - repos like cubiq/ComfyUI_Workflows (846 stars) collect tested workflows.
- Reddit r/comfyui - the community posts workflow JSONs in threads.
How to Load One
- Download the .json (or copy from an image's metadata).
- Open ComfyUI, drag the file into the browser window.
- Press 'Queue Prompt'. Missing models will show as red nodes - install them via the Manager.
Editing Without Breaking It
- Change only widget values (prompt, steps, seed) first - lowest risk.
- Add nodes by right-click > Add Node; connect matching types (check output/input colors).
- Missing nodes after loading = missing custom nodes - install via ComfyUI Manager (the 'Install Missing Custom Nodes' button).
- Always save a copy before big edits.
The Beginner Stack
- Install ComfyUI + Manager.
- Load a popular SDXL or Flux workflow from civitai.
- Change the prompt; run; see the pipeline work end to end.
- Study the graph: which node controls style, which controls seed, which upsamples.
FAQ
Do I need to understand every node? No - start with prompt, steps, and seed; learn nodes as you touch them.
Why are my nodes red? Missing models or custom nodes - the Manager installs them.
Can I share my workflow? Yes - Export the workflow JSON (or embed it in the PNG metadata) and post it.
Is there a version that's easier? ComfyUI now has a 'Workflow' vs 'Node' mode toggle - the simplified mode hides the graph for beginners.
