PQ Simple (Incr.) / 增量简易
The incremental prompt queue with the clutter removed
- clip
- positive
- prompt_text
If PQ (Incremental) is the full toolkit, PQ Simple (Incr.) is the same tool with the screwdriver drawer welded shut. It's literally the StylePromptQueue class with the preset save/delete inputs stripped out - the code inherits from it and calls the parent's logic. You keep everything that matters for daily generation, lose the stuff you only touch when organizing, and get a smaller, calmer node.
What you get
Same core behavior: feed it a clip, type a list of prompts into 多行文本 (one per line), and it emits one CONDITIONING per run, advancing a persistent counter stored in the pack's state.json so it resumes where it left off. Prompt assembly is the same chain - 全局前缀, 画师风格提示词, the current line, 提示词后缀 - joined with commas. Bump the KSampler's batch_size above 1 and you get multiple images of the same prompt, which is the intended "pick the best one" workflow.
The one thing the Simple node keeps from the preset system is the 预设模板 dropdown. It still lists all your saved templates (plus the built-in Pony, Nova, NoobAI, and Nai4-hot ones) and applies them, so you can keep using presets you saved with the full node - you just can't create or delete them from here. That's a deliberate split: full nodes manage presets, Simple nodes consume them.
The one field to learn: 索引设置
Same semantics as the full node, so if you've used that one you're done:
-1(default) - memory mode, resume where you left off.0- start from line 1 and auto-advance.5- run only line 5, no advancing.2,8,35- cycle through just those lines.
Outputs are positive CONDITIONING and prompt_text (the assembled prompt as a string - wire it to a ShowText node to see what actually got encoded, since the node shows you nothing otherwise).
Install and notes
Same pack, same nothing-to-install story: pure Python on your existing torch, no extra pip packages, no model downloads.
cd ComfyUI/custom_nodes
git clone https://github.com/cyan9977/ComfyUI_PromptQueue.git
Restart and grab PQ Simple (Incr.) / 增量简易 from the PromptQueue category. Parameter labels are Chinese-only, so if you don't read the language, keep this article (or the README) handy for the 索引设置 meanings. And remember: it can use presets but not create them - if you need to save or delete, that's the full StylePromptQueue node's job.
Honestly, for most people this is the one to reach for on the default tab. The full node's preset-management fields are almost always set-and-forget, and this version gets them out of your face.
Inputs (10)
| Name | Type | Default | Description |
|---|---|---|---|
| clip | CLIP | — | |
| 全局前缀 | STRING | — | |
| 画师风格提示词 | STRING | — | |
| 多行文本 | STRING | A cat A dog | — |
| 提示词后缀 | STRING | — | |
| 使用文件 | BOOLEAN | false | — |
| 提示词文件夹 | STRING | — | |
| 文件名 | STRING | — | |
| 索引设置 | STRING | -1 | — |
| 预设模板 | COMBO | None | 11 options: None, Pony, Pony_realistic, Nova, NovaFurry, NoobAI, +5 |
Outputs (2)
| Name | Type | Description |
|---|---|---|
| positive | CONDITIONING | — |
| prompt_text | STRING | — |