chore: Various QoL updates of nodes display names, descriptions and categories (CORE-190, CORE-191)#13830
Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughThis PR updates only node UI schema metadata across many files: nodes are moved from custom or generic groups (e.g., sampling/custom_sampling/*, mask, detection, image/postprocessing) into standardized categories (sampling/schedulers, sampling/samplers, sampling/guiders, sampling/sigmas, sampling/noise, image/filters, image/mask, image/detection, image, training/dataset). Several nodes received or had display_name or DESCRIPTION strings adjusted. No execution logic, public signatures, algorithms, or exported node lists were modified. 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@comfy_extras/nodes_mask.py`:
- Around line 198-200: The node schema was renamed by changing node_id from
"SolidMask" to "CreateSolidMask", which breaks backward compatibility; restore
node_id to "SolidMask" and keep the new UI label by setting display_name="Create
Solid Mask" while leaving node_id="SolidMask" unchanged (update wherever the
node is defined—look for the schema that currently lists
node_id="CreateSolidMask" and display_name="Create Solid Mask" and swap to
node_id="SolidMask" with display_name="Create Solid Mask").
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 0b324eb1-e241-47c2-a29f-a76f899473b4
📒 Files selected for processing (20)
comfy_extras/nodes_advanced_samplers.pycomfy_extras/nodes_align_your_steps.pycomfy_extras/nodes_ar_video.pycomfy_extras/nodes_canny.pycomfy_extras/nodes_custom_sampler.pycomfy_extras/nodes_flux.pycomfy_extras/nodes_gits.pycomfy_extras/nodes_images.pycomfy_extras/nodes_lt.pycomfy_extras/nodes_mask.pycomfy_extras/nodes_morphology.pycomfy_extras/nodes_nop.pycomfy_extras/nodes_optimalsteps.pycomfy_extras/nodes_post_processing.pycomfy_extras/nodes_rtdetr.pycomfy_extras/nodes_sam3.pycomfy_extras/nodes_sdpose.pycomfy_extras/nodes_video_model.pycomfy_extras/nodes_void.pynodes.py
…m/Comfy-Org/ComfyUI into alexis/nodes-categories-and-names
|
@drozbay you're correct, I noticed this while doing my tests as well. The frontend has an automated process to localize nodes names so that's why they're not immediately visible when testing. I don't have a better option right now. I am just using this command line to recheck once in a while before frontend gets updated in stable: |

This pull request reorganizes the categorization of several nodes to improve clarity and consistency in the contextual menu. The main changes involve moving nodes from subcategories to more general categories, and updating display names for clarity.
Category reorganization for samplers, schedulers, and sigmas:
categoryfield for all sampler nodes (e.g.,SamplerLCMUpscale,SamplerARVideo, and multiple classes innodes_custom_sampler.py) fromsampling/custom_sampling/samplerstosampling/samplersfor better organization and discoverability. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15]categoryfield for all scheduler nodes (e.g.,AlignYourStepsScheduler,BasicScheduler,KarrasScheduler, etc.) fromsampling/custom_sampling/schedulerstosampling/schedulers. [1] [2] [3] [4] [5] [6] [7] [8] [9]categoryfor all sigma-related nodes fromsampling/custom_sampling/sigmastosampling/sigmasfor consistency. [1] [2] [3] [4] [5] [6]Image processing node improvements:
image/preprocessorsandimage/postprocessorsto group them into a single categoryimage/filters.categoryof theCannynode fromimage/preprocessorstoimage/filters, and updated itsdisplay_namefrom "Canny" to "Detect Canny Edges" for improved clarity and user searchability.Mask category
maskcategory underimagecategory since mask are always used in combination with images.Save Image Nodes
imagecategory, for consistency with other save nodes.These changes help standardize node organization, making it easier for users and developers to find and maintain nodes in the codebase.