ComfyUI-LoRA-Manager
SkillAI & modelsAuthor ComfyUI-LoRA-Manager nodes from the panel. Use when adding a LoRA Manager loader, stacker, prompt, or text node, or when panel_add_node refuses AUTOCOMPLETE_TEXT_LORAS / AUTOCOMPLETE_TEXT_PROMPT after waiting for a widget.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the ComfyUI-LoRA-Manager skill
What this skill tells your AI
The instructions your AI receives, as published by artokun/comfyui-mcp in plugin/skills/lora-manager/SKILL.md and read by ahel’s review.
ComfyUI-LoRA-Manager (willmiao)
registers Vue autocomplete widgets via getCustomWidgets(). Those widgets
are healthy in the ComfyUI menu, and drag-from-palette works, but panel_add_node
cannot add the nodes that require them.
The add-node guard polls app.widgets for a constructor. ComfyUI 1.49+ stores
getCustomWidgets() results in the frontend widget store, not on app.widgets.
The wait always expires after 5s. Reload, panel_refresh_nodes, and retry
cannot clear it. That refusal is not a missing pack.
Which nodes panel_add_node will actually add
| Works | Refuses (AUTOCOMPLETE_TEXT_*) |
|---|---|
LoRA Text Loader (LoraManager) | Lora Loader (LoraManager) |
core LoraLoader | Lora Stacker (LoraManager) |
core LoraLoaderModelOnly | WanVideo Lora Select (LoraManager) |
Text (LoraManager) | |
Prompt (LoraManager) |
LoRA Text Loader (LoraManager) is the same backend as Lora Loader (LoraManager) (MODEL / CLIP / trigger_words / loaded_loras). The difference
is the LoRA input: lora_syntax is a STRING socket (forceInput), so a
regular string node or panel_set_widget can drive it.
Syntax (spaces or punctuation between entries):
<lora:lora_name:strength>
<lora:lora_name:model_strength:clip_strength>
Recipe — stack a LoRA from the panel
panel_add_node(class_type="LoRA Text Loader (LoraManager)"). Do not addLora Loader (LoraManager); it will wait 5s and refuse.- Wire
MODEL(andCLIPif you have one) through it. - Drive
lora_syntaxwithpanel_set_widgetor a wired STRING, e.g.<lora:style/foo.safetensors:0.8>. - Put the node's
trigger_wordsoutput into the prompt if the sidecar has any.
If LoRA Manager is not installed, use core LoraLoader and set lora_name /
strength_model / strength_clip as usual.
Gotchas
- The refusal names a tab reload. Do not follow that. The constructor will
never appear on
app.widgets. panel_set_widgetontextafter a refused add never runs, because nothing was created. The working widget name islora_syntax.- A freshly added Text Loader still needs
lora_syntaxwritten; an empty string loads no LoRA.
Sources
- Official: https://github.com/willmiao/ComfyUI-Lora-Manager for node class names and the
lora_syntaxformat from the pack; no vendor panel-authoring guide exists. - Empirical: the
panel_add_nodeAUTOCOMPLETE_TEXT_* refusal, which nodes add cleanly, and the widget-store explanation from observed panel behavior in this repo.
Signals
- GitHub stars
- 744
- Forks
- 122
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
lora-manager- Source
- github.com/artokun/comfyui-mcp