feat: initial ComfyUI workflow templates extension

- 40 workflow templates (text-to-image, image-to-video, image-to-image,
  text-to-music, upscaling, advanced, nsfw)
- Color-coded placeholder preview images using Pillow
- Template-only extension (no custom nodes)
- Preview generation script for future workflow additions

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-26 09:16:45 +01:00
commit d6dfdd72e2
86 changed files with 43550 additions and 0 deletions

12
__init__.py Normal file
View File

@@ -0,0 +1,12 @@
"""
ComfyUI Extras - Workflow Templates
A collection of production-ready workflow templates for ComfyUI.
Templates are automatically discovered from the example_workflows/ directory.
"""
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']
__version__ = "0.1.0"