comfyui-rb-bridge
A collection of pause-and-edit nodes for ComfyUI that let you interrupt workflow execution, inspect and modify values, then continue.
Nodes (5)
Flip one switch mid-run and keep going
Nudge the denoise or LoRA strength without restarting
Change the number mid-run, not after a restart
Park the run and look before you burn more GPU
Rewrite the prompt between two halves of a run
ComfyUI Bridge
A collection of pause-and-edit nodes for ComfyUI that let you interrupt workflow execution, inspect and modify values, then continue.

Nodes
Bridge Nodes (editable)
These nodes pause execution and allow you to edit the value before continuing. The input port is optional — if unconnected, the edit widget value is used as the default.
| Node | Type | Input | Edit Widget | Output | |------|------|-------|-------------|--------| | RB String Bridge | STRING | optional | multiline text | text | | RB Int Bridge | INT | optional | number input | number | | RB Float Bridge | FLOAT | optional | number input | number | | RB Bool Bridge | BOOLEAN | optional | toggle | boolean |
RB Pause (passthrough)
A pure passthrough node that pauses execution without editing. Useful for inspecting intermediate results at any point in the workflow. Accepts and outputs any type (*).
| Input | Type | Description |
|-------|------|-------------|
| any | * | Any value to pass through |
| force_pause | BOOLEAN | When true, forces the node to pause on every run, even if the input hasn't changed |
Parameters
All nodes share the timeout parameter:
| timeout | Behavior |
|-----------|----------|
| -1 | Infinite wait until Continue is clicked (default) |
| 0 | Skip pause, pass through immediately |
| >0 | Auto-continue after N seconds |
How It Works
- Execution reaches the node — the workflow pauses and the backend sends an event to the frontend
- Buttons activate — Continue and Cancel become clickable
- Edit (Bridge nodes only) — modify the value in the
value_edit/text_editwidget directly on the node - Continue — click Continue to resume with the edited value
- Cancel — click Cancel to interrupt the entire workflow
Installation
cd ComfyUI/custom_nodes
git clone https://github.com/itribs/comfyui-rb-bridge.git
License
MIT