Home · Skills · Development
Debugging renders with run-to-node
Debug a WRONG or imperfect render (not a hard error) by inspecting inputs and intermediate steps with run-to-node.
How to install
- Setup differs for this server — follow the Installation part of the README below.
- Claude Code:
claude mcp add <name> -- <command>. - Claude Desktop / Cursor: add it under
mcpServersin the MCP config file.
npx degit artokun/comfyui-mcp/plugin/skills/debug-render#main ~/.claude/skills/debug-renderFor one project only, change the path to .claude/skills/debug-render.
This one runs on your machine and can reach your files. Read the README below before you connect it.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Show the full text111 lines
Debugging renders with run-to-node
When a final asset looks wrong (not when it errors), don't re-roll the whole graph and hope. Localize the fault. Render only as far as one stage and look at what that stage actually produces. The wrong-looking output is downstream of a first bad step. Find that step, fix it there, and everything after it follows.
The tool for this is panel_run with to_node_id ("run to node"), which uses
ComfyUI's native partial execution. Only the target output node plus
everything upstream of it renders; every other branch is skipped. That makes each
probe fast and cheap, and the output is delivered to you automatically, same
as any run. Don't poll.
When to reach for this
- A final image/video is wrong: artifacts, wrong subject/pose/composition, off color, soft/blurry, melted hands, wrong style.
- A conditioner isn't "taking" (ControlNet, IPAdapter, a mask, an inpaint, a LoRA) and you can't tell if the input to it is wrong or the node is wrong.
- A multi-stage pipeline (base → refiner, txt2img → upscale, decode → post) degrades, and you need to see which stage introduces the problem.
- You only want to test one branch of a multi-output graph without paying for the others.
If instead the run fails (red error, OOM, missing node, black image from a crash), use the troubleshooting skill. This skill is for outputs that complete but look wrong.
The one hard rule: to_node_id must be an OUTPUT node
ComfyUI can only run to an output node: SaveImage, PreviewImage, SaveVideo,
SaveAudio, etc. (these show is_output: true in panel_query_graph detail rows). A bare
KSampler / VAEDecode / preprocessor is not an output node, so you can't target
it directly. To inspect a point that isn't already an output, add a preview
tap there:
| You want to see… | Wire type | Tap to add | Wiring |
|---|---|---|---|
| An intermediate image (post-process, refiner stage, composite) | IMAGE | PreviewImage |
image → PreviewImage.images |
| A latent (after a sampler, before/after upscale) | LATENT | VAEDecode → PreviewImage |
latent → VAEDecode.samples; reuse the graph's VAE → VAEDecode.vae; then → PreviewImage |
| A mask (inpaint, segmentation, attention) | MASK | MaskToImage → PreviewImage |
mask → MaskToImage.mask → PreviewImage |
| A ControlNet/preprocessor map (depth/pose/canny) | usually IMAGE already | PreviewImage |
the preprocessor's IMAGE output → PreviewImage.images |
| The actual prompt/conditioning | CONDITIONING | (can't preview as an image) | inspect widget values / the text node feeding it instead |
Build a tap with panel_add_node + panel_connect, run to it, inspect, then
panel_remove_node the tap when you're done (unless the user wants to keep it).
The loop
- Read the graph.
panel_graph_outline(thenpanel_query_graphfor specifics). Note node ids, the output nodes (is_output: true), and every node's mode. A node inbypass/muteon the path is OFF and is a top cause of wrong renders. Fix modes first withpanel_set_node_modebefore you blame anything else. - Pick a probe point roughly in the middle of the suspect chain (bisect).
- Get an output there. Target an existing output node, or add a preview tap (table above).
panel_run(to_node_id = that output node). Only that branch renders.- Look at what's delivered. Is this stage already wrong, or still fine?
- Still fine: move the probe downstream; the fault is later.
- Already wrong: move the probe upstream; the fault is earlier.
- Repeat until you find the first stage whose output is bad. That node (or
its inputs/widgets) is what to fix, via
panel_set_widget,panel_set_node_mode, a rewire, or a different model. Then run-to-node there again to confirm the fix before running the full graph. - Clean up temporary preview taps (
panel_remove_node) and do a final fullpanel_runto produce the real saved asset.
Symptom → where to probe first
- Whole image wrong subject/style. Preview the conditioning's source (the text/prompt node, the sampler's positive input via a decode of its latent).
- ControlNet ignored / wrong structure. Preview the preprocessor map (the depth/pose/canny IMAGE going into the ControlNet). A blank or wrong map means the problem is the preprocessor or its input, not the sampler.
- IPAdapter/reference not taking. Preview the reference image after any resize/crop the IPAdapter chain applies.
- Inpaint/outpaint bleeding.
MaskToImage-preview the mask actually reaching the sampler (mask misalignment is the usual culprit). - Refiner/upscale degrades it. Preview the base latent (VAEDecode tap) before the refiner vs after. If the base is good and the result is bad, the refiner/upscale stage is at fault.
- Right content, bad quality only. The fault is late (sampler steps/cfg, VAE, post), so probe near the end first.
Gotchas
- Output-node only. If you target a non-output node, the run is rejected with a message saying so. Add a preview tap instead.
- Modes matter. A bypassed/muted node on the probed path silently changes what renders. Check modes in step 1.
- Auto-delivery. The probe's output node fires an
executedevent and the image is delivered to you inline, including PreviewImage taps, which arrive labeled as a preview (temporary, not a saved file). Don't poll; just end the turn and read the delivered image. A preview tap with no SaveImage means "no saved output ran", which is expected for a probe. - Shared queue. Each run-to-node queues a real (small) job. Don't stack probes. Run one, read it, then the next.
- Subgraphs. Output nodes nested inside a subgraph can't be targeted yet. Probe at the root graph (add the tap outside the subgraph, fed by an exposed output rail).
Sources
- Official: comfyui-mcp
panel_runto_node_id product behavior (this repo). - Empirical: probe-point recipes from observed wrong-render cases.
| 1 | |
| 2 | name debug-render |
| 3 | description Debug a WRONG or imperfect render (not a hard error) by inspecting inputs and intermediate steps with run-to-node. Render one branch up to an output, preview-tap latents/masks/preprocessor maps, localize the first bad stage, then fix. Use when a final image/video completes but looks wrong, such as artifacts, wrong subject/pose/composition/color, blur, a ControlNet/IPAdapter/mask/LoRA not taking, or a two-stage refiner or upscale degrading the result. For errors/OOM/missing nodes use the troubleshooting skill. |
| 4 | |
| 5 | |
| 6 | # Debugging renders with run-to-node |
| 7 | |
| 8 | When a final asset looks wrong (not when it errors), don't re-roll the whole |
| 9 | graph and hope. Localize the fault. Render only as far as one stage and look |
| 10 | at what that stage actually produces. The wrong-looking output is downstream of a |
| 11 | *first* bad step. Find that step, fix it there, and everything after it follows. |
| 12 | |
| 13 | The tool for this is `panel_run` with `to_node_id` ("run to node"), which uses |
| 14 | ComfyUI's native partial execution. Only the target output node plus |
| 15 | everything upstream of it renders; every other branch is skipped. That makes each |
| 16 | probe fast and cheap, and the output is delivered to you automatically, same |
| 17 | as any run. Don't poll. |
| 18 | |
| 19 | ## When to reach for this |
| 20 | |
| 21 | A final image/video is wrong: artifacts, wrong subject/pose/composition, off |
| 22 | color, soft/blurry, melted hands, wrong style. |
| 23 | A conditioner isn't "taking" (ControlNet, IPAdapter, a mask, an inpaint, a |
| 24 | LoRA) and you can't tell if the *input* to it is wrong or the *node* is wrong. |
| 25 | A multi-stage pipeline (base → refiner, txt2img → upscale, decode → post) |
| 26 | degrades, and you need to see which stage introduces the problem. |
| 27 | You only want to test one branch of a multi-output graph without paying for |
| 28 | the others. |
| 29 | |
| 30 | If instead the run fails (red error, OOM, missing node, black image from a |
| 31 | crash), use the troubleshooting skill. This skill is for outputs that |
| 32 | *complete* but look wrong. |
| 33 | |
| 34 | ## The one hard rule: `to_node_id` must be an OUTPUT node |
| 35 | |
| 36 | ComfyUI can only run *to* an output node: SaveImage, PreviewImage, SaveVideo, |
| 37 | SaveAudio, etc. (these show `is_output: true` in `panel_query_graph` detail rows). A bare |
| 38 | KSampler / VAEDecode / preprocessor is not an output node, so you can't target |
| 39 | it directly. To inspect a point that isn't already an output, add a preview |
| 40 | tap there: |
| 41 | |
| 42 | | You want to see… | Wire type | Tap to add | Wiring | |
| 43 | |---|---|---|---| |
| 44 | | An intermediate image (post-process, refiner stage, composite) | IMAGE | `PreviewImage` | image → `PreviewImage.images` | |
| 45 | | A latent (after a sampler, before/after upscale) | LATENT | `VAEDecode` → `PreviewImage` | latent → `VAEDecode.samples`; reuse the graph's VAE → `VAEDecode.vae`; then → `PreviewImage` | |
| 46 | | A mask (inpaint, segmentation, attention) | MASK | `MaskToImage` → `PreviewImage` | mask → `MaskToImage.mask` → `PreviewImage` | |
| 47 | | A ControlNet/preprocessor map (depth/pose/canny) | usually IMAGE already | `PreviewImage` | the preprocessor's IMAGE output → `PreviewImage.images` | |
| 48 | | The actual prompt/conditioning | CONDITIONING | (can't preview as an image) | inspect widget values / the text node feeding it instead | |
| 49 | |
| 50 | Build a tap with `panel_add_node` + `panel_connect`, run to it, inspect, then |
| 51 | `panel_remove_node` the tap when you're done (unless the user wants to keep it). |
| 52 | |
| 53 | ## The loop |
| 54 | |
| 55 | **Read the graph.** `panel_graph_outline` (then `panel_query_graph` for specifics). Note node ids, the output nodes |
| 56 | (`is_output: true`), and every node's mode. A node in `bypass`/`mute` on |
| 57 | the path is OFF and is a top cause of wrong renders. Fix modes first with |
| 58 | `panel_set_node_mode` before you blame anything else. |
| 59 | **Pick a probe point** roughly in the middle of the suspect chain (bisect). |
| 60 | **Get an output there.** Target an existing output node, or add a preview tap |
| 61 | (table above). |
| 62 | **`panel_run(to_node_id = that output node)`.** Only that branch renders. |
| 63 | **Look at what's delivered.** Is *this* stage already wrong, or still fine? |
| 64 | Still fine: move the probe downstream; the fault is later. |
| 65 | Already wrong: move the probe upstream; the fault is earlier. |
| 66 | Repeat until you find the first stage whose output is bad. That node (or |
| 67 | its inputs/widgets) is what to fix, via `panel_set_widget`, `panel_set_node_mode`, |
| 68 | a rewire, or a different model. Then run-to-node there again to confirm the fix |
| 69 | before running the full graph. |
| 70 | **Clean up** temporary preview taps (`panel_remove_node`) and do a final full |
| 71 | `panel_run` to produce the real saved asset. |
| 72 | |
| 73 | ## Symptom → where to probe first |
| 74 | |
| 75 | **Whole image wrong subject/style.** Preview the conditioning's source (the |
| 76 | text/prompt node, the sampler's positive input via a decode of its latent). |
| 77 | **ControlNet ignored / wrong structure.** Preview the preprocessor map |
| 78 | (the depth/pose/canny IMAGE going into the ControlNet). A blank or wrong map means |
| 79 | the problem is the preprocessor or its input, not the sampler. |
| 80 | **IPAdapter/reference not taking.** Preview the reference image after any |
| 81 | resize/crop the IPAdapter chain applies. |
| 82 | **Inpaint/outpaint bleeding.** `MaskToImage`-preview the mask actually reaching |
| 83 | the sampler (mask misalignment is the usual culprit). |
| 84 | **Refiner/upscale degrades it.** Preview the base latent (VAEDecode tap) |
| 85 | *before* the refiner vs after. If the base is good and the result is bad, the |
| 86 | refiner/upscale stage is at fault. |
| 87 | **Right content, bad quality only.** The fault is late (sampler steps/cfg, VAE, |
| 88 | post), so probe near the end first. |
| 89 | |
| 90 | ## Gotchas |
| 91 | |
| 92 | **Output-node only.** If you target a non-output node, the run is rejected with |
| 93 | a message saying so. Add a preview tap instead. |
| 94 | **Modes matter.** A bypassed/muted node on the probed path silently changes what |
| 95 | renders. Check modes in step 1. |
| 96 | **Auto-delivery.** The probe's output node fires an `executed` event and the |
| 97 | image is delivered to you inline, including PreviewImage taps, which arrive |
| 98 | labeled as a *preview* (temporary, not a saved file). Don't poll; just end the |
| 99 | turn and read the delivered image. A preview tap with no SaveImage means "no |
| 100 | saved output ran", which is expected for a probe. |
| 101 | **Shared queue.** Each run-to-node queues a real (small) job. Don't stack |
| 102 | probes. Run one, read it, then the next. |
| 103 | **Subgraphs.** Output nodes nested inside a subgraph can't be targeted yet. |
| 104 | Probe at the root graph (add the tap outside the subgraph, fed by an exposed |
| 105 | output rail). |
| 106 | |
| 107 | ## Sources |
| 108 | |
| 109 | **Official:** comfyui-mcp `panel_run` to_node_id product behavior (this repo). |
| 110 | **Empirical:** probe-point recipes from observed wrong-render cases. |
| 111 |