Anima Saved Prompt Loader T8
52 saved Anima prompts in one dropdown — the pack's style library as a node
- POSITIVE
- NEGATIVE
- STYLE
- WIDTH
- HEIGHT
- STEPS
- CFG
The biggest chunk of work in comfyui-anima-t8 is its style library: 52 pre-built, Pony-compatible prompt presets organized into 15 categories - quality, medium, camera, lighting, season, era, mood, and so on. Anima Saved Prompt Loader T8 is how that library becomes a node. You pick a preset from a dropdown and it hands you the full prompt set, plus the recommended dimensions and sampler settings, so a workflow can start from "anime default" or "winter, soft lighting" instead of a blank text box.
How it works. The only input is prompt, a dropdown of the 52 presets. Under the hood each entry is labeled title|||id, and the node looks the id up in the pack's SQLite style library (stored at data/anima_t8.sqlite in the pack folder). It outputs POSITIVE, NEGATIVE, and STYLE as strings, plus four more ports you don't see on most prompt nodes: WIDTH, HEIGHT, STEPS, and CFG. Those aren't decorative - they're wired straight into your sampler setup. WIDTH and HEIGHT go to EmptyLatentImage, STEPS and CFG go to the KSampler, and POSITIVE/NEGATIVE go to the two CLIPTextEncode nodes. If a preset has no stored settings, the node falls back to a sensible 896×1088, 30 steps, CFG 5.5.
A couple of behaviors make this node nicer than a static JSON dump. It marks pinned and favorited presets in the dropdown with 📌 and ⭐. And its IS_CHANGED method returns the current time, which is a deliberate trick: it forces ComfyUI to re-read the database on every queue. Edit a preset in the pack's style-library panel and the node picks it up without a restart, and without you hunting for a refresh button.
What you actually do with it. Think of it as a starting point node, not your editing surface. The presets are seed data - the pack deliberately seeds them by title so that upgrades add new presets without overwriting anything you've edited. If you want to tweak, do it in the style-library panel and save; the node then loads your version. The takeaway: this is the node you drop in when you want a full Anima workflow assembled in seconds, then hand the strings off to Anima Prompt T8 if you want a stable editing layer on top.
Installing. Same pack, same steps as everything else here:
cd ComfyUI/custom_nodes
git clone https://github.com/T8mars/comfyui-anima-t8
cd comfyui-anima-t8
pip install -r requirements.txt
Restart, or use ComfyUI Manager and search comfyui-anima-t8. requests is the only extra dependency - the presets ship inside the pack, so no model or database download is required to use the node. On first launch the pack seeds the SQLite library and starts a background thread to pull the artist caches, so the very first run can look busy for a few seconds. That's normal.
Gotchas. The preset titles are in Chinese - "动漫默认" (anime default), "Pony 默认", "冬日温柔" (winter, gentle), and so on. If you can't read them, treat the dropdown as a blind tasting: the category names in the style library tell you what each preset targets, and the previews plus a test generation will teach you faster than a translation. One structural limitation worth knowing: this node is a loader, not a router - one dropdown, no way to switch presets mid-queue - so it suits the "pick your starting point once" pattern. And remember the STYLE output is separate from POSITIVE for a reason: wire it to Anima Prompt T8's style box if you want the style layer kept distinct, or merge it if you want everything in one conditioning.
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| prompt | COMBO | 52 options: 📌 动漫默认|||7624e269081b49b8ad651aafbdeaf0c1, 📌 Pony 默认|||5fa0d743bb0c4b82a5cdf961eb6bca17, 维多利亚复古|||2390a9163cda414383cf07e955171b2f, 中世纪奇幻|||4f65356215c24226a916b771139d873b, 民国旗袍|||68bb0bdfe2064e69aedb1dff166958ad, 冬雪温柔|||677f783249914dac854c21f36c286931, +46 |
Outputs (7)
| Name | Type | Description |
|---|---|---|
| POSITIVE | STRING | — |
| NEGATIVE | STRING | — |
| STYLE | STRING | — |
| WIDTH | INT | — |
| HEIGHT | INT | — |
| STEPS | INT | — |
| CFG | FLOAT | — |