commit 1c577ae514199cf86c1adea8dee8b4b9e2af0de7 Author: Morpheus Date: Sat Aug 8 20:35:17 2026 +0000 Initial workflow library structure diff --git a/README.md b/README.md new file mode 100644 index 0000000..6ffdffa --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# ComfyUI Workflows + +Model-organized workflow library for local ComfyUI use. + +## Layout + +- `models/ltx/` - LTX workflows and notes +- `models/flux2klein/` - FLUX.2-klein workflows and notes +- `models/minimax/` - MiniMax workflows and notes +- `models/_incoming/` - temporary holding area when a workflow is still being classified +- `templates/workflow-template/` - starter folder for new workflow imports + +## How workflows are stored + +Each workflow gets its own folder so it can carry: + +- `workflow.json` - the actual ComfyUI workflow file +- `README.md` - what it does, source link, model/version notes, required custom nodes, and any setup quirks +- optional supporting files such as screenshots, example prompts, or helper notes + +Suggested path pattern: + +`models///` + +Example: + +`models/ltx/first-frame-character-lock/` + +## Conventions + +- Organize primarily by model family. +- Prefer one workflow per folder. +- Keep source links in each workflow README. +- Note whether the workflow is `tested`, `imported-only`, or `needs-fixes`. +- Record required custom nodes so the workflow is easier to revive later. + +## Initial model families + +- `ltx` +- `flux2klein` +- `minimax` + +More model families can be added later as needed. diff --git a/models/_incoming/README.md b/models/_incoming/README.md new file mode 100644 index 0000000..21e204d --- /dev/null +++ b/models/_incoming/README.md @@ -0,0 +1,5 @@ +# Incoming Workflows + +Temporary holding area for workflows that have been collected but not yet sorted into a model family. + +Move each workflow into the right `models//` folder once its primary model is clear. diff --git a/models/flux2klein/README.md b/models/flux2klein/README.md new file mode 100644 index 0000000..ec381ef --- /dev/null +++ b/models/flux2klein/README.md @@ -0,0 +1,14 @@ +# FLUX.2-klein Workflows + +Use this folder for `FLUX.2-klein` workflows and LoRA-oriented workflow packs. + +Recommended subcategories to watch for: + +- reference control +- canny / lineart / normal guidance +- identity lock +- compositional control +- edit / inpaint chains +- LoRA showcase packs that include a practical workflow + +Store each workflow in its own subfolder. diff --git a/models/ltx/README.md b/models/ltx/README.md new file mode 100644 index 0000000..5579cbd --- /dev/null +++ b/models/ltx/README.md @@ -0,0 +1,15 @@ +# LTX Workflows + +Use this folder for `LTX` and `LTX 2.3` workflows. + +Recommended subcategories to watch for: + +- first-frame consistency +- multi-reference control +- character sheet / identity lock +- image-to-video +- video-to-video +- audio-reactive or sync workflows +- relighting / subject control + +Store each workflow in its own subfolder. diff --git a/models/minimax/README.md b/models/minimax/README.md new file mode 100644 index 0000000..88752ac --- /dev/null +++ b/models/minimax/README.md @@ -0,0 +1,14 @@ +# MiniMax Workflows + +Use this folder for `MiniMax` workflows, especially `MiniMax H3` when those start showing up in practical local or ComfyUI-adjacent form. + +Recommended subcategories to watch for: + +- text-to-video +- image-to-video +- control / reference workflows +- LoRA-driven variants +- model conversion or loader notes +- benchmark comparisons against `LTX` + +Store each workflow in its own subfolder. diff --git a/templates/workflow-template/README.md b/templates/workflow-template/README.md new file mode 100644 index 0000000..dbe949b --- /dev/null +++ b/templates/workflow-template/README.md @@ -0,0 +1,35 @@ +# Workflow Name + +## Summary + +Short plain-English description of what the workflow does. + +## Model Family + +- `ltx` | `flux2klein` | `minimax` | other + +## Status + +- `imported-only` | `tested` | `needs-fixes` + +## Source + +- Original page: +- Original author: +- Date imported: + +## What is included + +- `workflow.json` +- any screenshots or extra assets + +## Required custom nodes + +- list each required node pack here + +## Notes + +- VRAM expectations +- known issues +- prompt tips +- model / LoRA versions used diff --git a/templates/workflow-template/workflow.json b/templates/workflow-template/workflow.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/templates/workflow-template/workflow.json @@ -0,0 +1 @@ +{}