Extensions/Wildcard Pipeline
ComfyUI Extension

Wildcard Pipeline

Modular procedural prompt generation — wildcards, fixed values, combines, derivations and constraints resolved in a context pipeline, with a manager UI for a reusable module library.

By DumiFlex·Created 5 months ago·Updated 10 days ago· 9
DumiFlex/ComfyUI-Wildcard-Pipeline
Nodes10
On cloudLocal install
Categorywildcard-pipeline
Stars9
Updated10 days ago
Readme
<h1 align="center"> <img src="public/images/favicon.svg" width="40" align="center" alt=""/> &nbsp;Wildcard Pipeline </h1> <p align="center"> <em>Modular procedural prompt generation for ComfyUI — wildcards, constraints, derivations, loops, and a persistent module library.</em> </p> <p align="center"> <a href="https://github.com/DumiFlex/ComfyUI-Wildcard-Pipeline/actions"><img alt="CI" src="https://img.shields.io/github/actions/workflow/status/DumiFlex/ComfyUI-Wildcard-Pipeline/ci.yml?branch=main&label=ci"></a> <a href="https://github.com/DumiFlex/ComfyUI-Wildcard-Pipeline/releases"><img alt="Release" src="https://img.shields.io/github/v/release/DumiFlex/ComfyUI-Wildcard-Pipeline?include_prereleases"></a> <a href="https://github.com/DumiFlex/ComfyUI-Wildcard-Pipeline/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/DumiFlex/ComfyUI-Wildcard-Pipeline"></a> <a href="https://github.com/DumiFlex/ComfyUI-Wildcard-Pipeline/wiki"><img alt="Wiki" src="https://img.shields.io/badge/docs-wiki-blue"></a> <a href="https://discord.gg/BFYR9WQdVR"><img alt="Discord" src="https://img.shields.io/badge/discord-join-5865F2?logo=discord&logoColor=white"></a> </p> <p align="center"> <img src="public/images/docs/flow-intro.svg" alt="Wildcard, Fixed Values, Combine, Derivation and Constraint modules resolve inside WP Context, which emits named $variables that fill the WP Prompt Assembler template, which CLIP Encode turns into conditioning" /> </p>

What it does

Stock ComfyUI prompt nodes either take a single literal string or pick from a flat wildcard file. Wildcard Pipeline lets each module read what the previous modules picked — so $mood reacts to $weather via a constraint, a combine interpolates $style $subject into $scene, a derivation flips $accent based on $mood, and your final prompt is a coherent multi-element composition instead of a Frankenstein concatenation.

One Generate. One coherent prompt. Re-roll until you stop laughing.

Highlights

  • Module stack inside a Context node — drop in wildcard, fixed_values, combine, derivation, constraint, bundle modules and they each publish a $variable to the chain.
  • Constraints with carriers — re-weight downstream wildcards based on what upstream picked. Matrix + per-option exceptions. Carrier-via-nested-ref so a constraint can reach a wildcard nested inside another wildcard's option.
  • Loops + per-iteration seedsWP Context Loop runs your whole chain N times from a single Generate; WP Seed List pairs N unique sampler seeds with the N prompts so every output is distinct.
  • Persistent library — a manager SPA backed by SQLite stores reusable modules, frozen bundles, prompt templates, and a category tree. Browse / edit / fork / push from the canvas.
  • InspectorWP Debug shows the post-run snapshot, per-module trace, per-wildcard picks, and the conflict-scanner warnings.
  • Type-coercion helpersWP Var → Int / Float / Bool parse typed values out of any $variable so wildcards can drive image width, step count, sampler cfg, conditional switches.
  • Works on both renderers — the legacy canvas and ComfyUI's Nodes 2.0 Vue renderer, including switching between them with a workflow already open.

Installation

ComfyUI Manager (recommended)

  1. Open the ComfyUI Manager in your browser.
  2. Search for Wildcard Pipeline by dumiflex.
  3. Click Install and restart ComfyUI.

Manual installation

  1. Navigate to your ComfyUI custom_nodes directory.

  2. Clone the repository:

    git clone https://github.com/DumiFlex/ComfyUI-Wildcard-Pipeline
    
  3. Install the Python dependencies:

    pip install -e .
    
  4. Build the frontend assets (requires Node.js and pnpm):

    pnpm install
    pnpm run build
    
  5. Restart ComfyUI.

Quick start

  1. Open the Wildcard Pipeline manager (sidebar → Wildcards+ New). Name subject, variable binding $subject, three options: a cat, a dog, a fox at weight 1 each. Save.
  2. On the canvas, drop WP ContextWP Prompt AssemblerCLIP Text EncodeKSampler. Add your wildcard to the context. Type a $subject into the assembler template. Queue.

Each Generate rolls a fresh subject. Full walkthrough: Quick Start wiki page.

The nodes

| Node | What it does | |---|---| | WP Context | Holds a module stack, emits a resolved $variable context. | | WP Context Loop | Runs the downstream chain N times in one click; emits per-iteration $iteration + $iteration_total. | | WP Context Injector | Lifts any ComfyUI node output (multiline String, INT, etc.) into a named $variable. | | WP Seed List | Emits a list of N derived seeds — one per loop iteration — so every (prompt, seed) pair is unique. | | WP Prompt Assembler | Fills $var placeholders in a template string. Supports {a\|b\|c} inline picks + missing-var detection. | | WP Prompt Cleaner | Rule-based prompt cleanup: whitespace, punctuation, exact + fuzzy dedupe, blocklist. | | WP Debug | Read-only inspector — Snapshot / Trace / Picks / Warnings tabs. | | WP Var → Int / Float / Bool | Parse typed values out of any $variable to drive ComfyUI INT / FLOAT / BOOLEAN inputs. |

Full node reference: Nodes wiki page.

The modules

| Module | Writes | Role | |---|---|---| | Wildcard | $<name> | Weighted random pick from a pool. The core building block. | | Fixed Values | $<name> (× N) | Static name → value bindings — style, quality boosters, negative-prompt fragments. | | Combine | $<name> | Templated string that interpolates earlier $vars into a single output $var. | | Derivation | $<name> | IF / ELIF / ELSE rules that read picked $vars and rewrite others. | | Constraint | (none) | One-shot re-weight of a downstream wildcard's pool based on an upstream pick. | | Bundle | (group) | Frozen group of modules — drop into any Context as a reusable unit. | | Template | (asm side) | Saved Prompt Assembler template string in the library. |

Full module reference: Modules wiki page.

Looping a chain — one click, N coherent prompts

<p align="center"> <img src="public/images/docs/flow-loop.svg" alt="WP Context Loop drives WP Context and the Prompt Assembler; CLIP Encode turns each prompt into conditioning for KSampler, while WP Seed List supplies the matching seed directly" /> </p>

Drop WP Context Loop before your WP Context and pair it with WP Seed List for distinct sampler seeds. Both lists fan out in lockstep so iteration N's prompt always pairs with seed N. Each iteration carries its own $iteration / $iteration_total for in-template labelling (frame 1 of 4 — a fox). See Concepts → Seeds and loops.

The manager (SPA)

A dedicated single-page app for browsing + editing the library. Open it from the ComfyUI sidebar.

<p align="center"> <img src="public/images/docs/spa_manager.png" alt="Wildcard Pipeline manager — Dashboard view with module counts, Quick Create row, and a list of recently opened library entries" /> </p>
  • Library — wildcards / fixed values / combines / derivations / constraints / bundles / templates / categories. Filter, search, bulk-tag, favorite.
  • Test Runner — resolve any module against the engine N times and inspect per-rule fire rates / per-option pick rates.
  • Import / Export — versioned JSON exports with conflict resolution (rename / overwrite / skip per row).
  • Cascade impact dialog — deleting a module shows you every bundle + constraint + combine that references it before you confirm.
  • Documentation tab — full in-app docs covering every node + module + concept, with worked examples.

Inspecting a run

Wire a WP Debug node off any Context output. After Generate it fills with a tabbed snapshot of what flowed through that point:

  • Snapshot — final $variable → value map.
  • Trace — per-module execution log: what each ran, what it wrote, where the seed came from.
  • Picks — which wildcard option was picked, its weight, its sub-category.
  • Warnings — runtime warnings (constraint never fired, missing variable, etc.).

See Nodes → WP Debug.

Documentation

  • 📖 GitHub Wiki — Home / Quick Start / Nodes / Modules / Concepts
  • 🖥️ In-app docs — sidebar → Documentation tab inside the manager SPA (every concept, every module, every node, with worked examples)
  • 💬 Discord — chat, show-and-tell, fastest path to a response
  • 💭 GitHub Discussions — long-form questions, ideas, design threads
  • 🐛 Issue tracker — bug reports + feature requests

Status

Active development. Versioned releases with semantic-release — every merged commit on main either ships a release or stays as next until the next breaking / feature change rolls one. Bundle-size + test gates run on every branch push and PR.

Contributing

PRs welcome. See CONTRIBUTING.md for the dev loop (pnpm installpnpm dev for the extension watcher, pnpm test for vitest, pytest for the engine, ruff check . for lint).

License

GPL-3.0-or-later. Free to use, modify, fork. If you ship modifications, ship the source too.