rgthree

Configure rgthree-comfy nodes including Fast Groups toggles and Power Lora Loader in ComfyUI workflows.

715|111|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/artokun/comfyui-mcp --skill rgthree
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rgthree
Source: https://github.com/artokun/comfyui-mcp/tree/main/plugin/skills/rgthree
Command: npx skills add https://github.com/artokun/comfyui-mcp --skill rgthree

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

rgthree-comfy nodes appear in a large share of community ComfyUI workflows, but three of their behaviors cause silent agent failures: some nodes are frontend-only and absent from /object_info, they are configured through properties rather than widgets, and Fast Groups nodes enumerate groups by title instead of taking wiring. This Skill documents the correct configuration model so agents stop misdiagnosing these nodes.

Core Features & Use Cases

  • Fast Groups Bypasser/Muter setup: Create stage toggles by grouping nodes with prefixed titles, setting the matchTitle regex property, and verifying toggle lists rebuild correctly.
  • Power Lora Loader stacking: Create lora_N rows programmatically with JSON object strings and edit individual fields via dotted sub-field addressing like lora_1.strength.
  • Frontend-only node handling: Know which seven rgthree types panel_add_node accepts via the allowlist and which it refuses by design.
  • Use Case: A user asks to make each stage of a multi-stage image pipeline toggleable. The Skill guides creating prefixed groups, adding a Fast Groups Bypasser, anchoring matchTitle to ^STAGE, setting alphanumeric sort, and verifying bypass states with panel_graph_outline.

Quick Start

Add a Fast Groups Bypasser node to my workflow and configure it to toggle all groups whose titles start with STAGE.

Frequently Asked Questions about rgthree

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a Fast Groups Bypasser toggle in ComfyUI?

Add the node with panel_add_node, leave its output unwired, then set the matchTitle property to an anchored regex like ^STAGE using panel_set_property. The node renders one toggle per matching group, so groups must exist and be named first.

How do I stack multiple LoRAs in one rgthree node?

Use the Power Lora Loader and create rows by writing lora_1, lora_2, and so on with panel_set_widget, passing a JSON object string with on, lora, strength, and strengthTwo fields. Edit single fields later with dotted addressing like lora_1.strength.

Why does an rgthree node not appear in ComfyUI /object_info?

Some rgthree nodes are frontend-only, registered by JavaScript with no Python class, so they are absent from /object_info by design. Seven types like Fast Groups Bypasser and Reroute are allowlisted for panel_add_node; others like Bookmark are refused.

Why does panel_set_widget fail with has no widget matchTitle?

Fast Groups nodes store matchTitle, toggleRestriction, and sort in node properties, not widgets. Use panel_set_property instead; the refusal message listing available widgets confirms you are on the wrong path.

What is the difference between bypass and mute in ComfyUI?

A bypassed node (mode 4) is skipped and passes its input through, while a muted node (mode 2) does not execute and kills everything downstream. Prefer the Bypasser for optional stages; use the Muter only to stop a branch entirely.

Why does the Fast Groups toggle list not update after setting matchTitle?

Fast Groups nodes do not implement onPropertyChanged; the toggle list rebuilds on a service tick and can stall with leftover rows. Set matchTitle immediately after adding the node, re-read it, and set matchTitle again if stale rows remain.