[](LICENSE)
[](https://github.com/comfyanonymous/ComfyUI)
[](https://python.org)
Powerful standalone ComfyUI custom nodes for managing multiple LoRAs in a single, dynamic interface
A complete replacement for rgthree’s Power Lora Loader with zero dependencies and two specialized versions to fit any workflow.
🎛️ Dynamic Interface – Add unlimited LoRA slots with a single click
🔄 Easy Management – Toggle, reorder, and remove LoRAs with intuitive controls
💪 Dual Versions – Choose between full functionality or model-only optimization
📊 Visual Feedback – Clean, wide interface with clear status indicators
⚡ Performance – Efficient loading and processing of multiple LoRAs
🔧 No Dependencies – Standalone implementation, works with any ComfyUI installation
“`bash
cd ComfyUI/custom_nodes/
git clone https://github.com/ShmuelRonen/multi-lora-stack.git
“`
loaders category:| Feature | Multi LoRA Stack | Multi LoRA Stack (Model Only) |
|———|———————|———————————-|
| Inputs | MODEL + CLIP | MODEL only |
| Outputs | MODEL + CLIP | MODEL only |
| Best For | Style LoRAs, Character LoRAs, Complex workflows | Flux LoRAs, Performance-focused workflows |
| Interface | 4 connection points | 2 connection points |
| Performance | Standard | Optimized |
Choose Multi LoRA Stack (Full):
Choose Multi LoRA Stack (Model Only):
multi-lora-stack/
├── __init__.py # Node registration
├── multi_lora_stack.py # Full version backend
├── multi_lora_stack_model_only.py # Model-only backend
└── web/
├── multi_lora_stack.js # Full version UI
└── multi_lora_stack_model_only.js # Model-only UI
LoRA configurations are stored as JSON:
[
{
"on": true,
"lora": "flux/style_lora.safetensors",
"strength": 1.0
},
{
"on": false,
"lora": "character_lora.safetensors",
"strength": 0.8
}
]
LoraLoader() for MODEL + CLIP processingLoraLoaderModelOnly() for optimized model-only processingcd ComfyUI/custom_nodes/
git clone https://github.com/yourusername/multi-lora-stack.git
ComfyUI/custom_nodes/multi-lora-stack/Create the directory structure and copy files:
mkdir -p ComfyUI/custom_nodes/multi-lora-stack/web/
# Copy each file to its respective location
models/loras/ directoryweb/ subdirectory| Feature | Multi LoRA Stack | rgthree Power Lora Loader |
|———|———————|——————————-|
| Dependencies | ✅ None (standalone) | ❌ Requires rgthree framework |
| Installation | ✅ Simple (drop-in) | ❌ Complex (dependencies) |
| Versions | ✅ Two optimized versions | ⚪ Single version |
| Compatibility | ✅ Any ComfyUI installation | ❌ Requires rgthree ecosystem |
| Updates | ✅ Independent updates | ❌ Dependent on rgthree updates |
| Interface | ✅ Wide, clean design | ⚪ Compact design |
Contributions are welcome! Please:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)# Clone the repo
git clone https://github.com/ShmuelRonen/multi-lora-stack.git
cd multi-lora-stack
# Make changes and test in ComfyUI
# Follow the installation instructions above for testing
This project is licensed under the MIT License – see the LICENSE file for details.
⭐ If this project helps your workflow, please give it a star!
Made with ❤️ for the ComfyUI community