Node graphs are eating the design timeline
If you've been living under a rock, ComfyUI is now the design tool. Not "for AI nerds" — for art directors. Agencies are hiring ComfyUI specialists. The node graph is officially mainstream.
The Setup
ComfyUI is a node-based interface for diffusion pipelines. You wire models, samplers, LoRAs, and post-process steps into a graph and run it. My current Aidxn Design workflow is: ComfyUI for the generative base, then straight into Affinity Designer for typography and layout. The two tools play together like they were always meant to.
{
"3": { "class_type": "KSampler", "inputs": {
"model": ["4", 0], "positive": ["6", 0], "negative": ["7", 0],
"latent_image": ["5", 0], "seed": 42,
"steps": 30, "cfg": 4.5, "sampler_name": "dpmpp_2m", "scheduler": "karras"
}},
"4": { "class_type": "CheckpointLoaderSimple", "inputs": { "ckpt_name": "flux-pro.safetensors" } },
"6": { "class_type": "CLIPTextEncode", "inputs": { "clip": ["4", 1], "text": "brutalist editorial cover" } }
}The Money Pattern
ComfyUI exposes an HTTP API. That's the real unlock — wire your workflow once, then trigger it from anything. I've got Astro endpoints that POST a prompt and pull the resulting image back into the build.
# queue a workflow from the CLI
curl -X POST http://127.0.0.1:8188/prompt \
-H "Content-Type: application/json" \
-d @workflow.json
# then poll the history endpoint for the result
curl http://127.0.0.1:8188/history | jq '.[].outputs'The Catch
Workflows break across version upgrades. You update ComfyUI, half your custom nodes throw deprecation warnings, and that one workflow you spent three hours building no longer loads. Pin your versions. Commit your workflow JSON. Treat it like code, because it is.
The Verdict
If you do any kind of visual work and you haven't tried ComfyUI yet, this is the year. The node-graph mental model maps cleanly onto how designers already think about layered processes. Pair it with Affinity Designer or Figma for the finishing pass and your iteration speed quadruples. Install tonight.