with one click
comfyui-zimage
// Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed. Trigger words: Hojo, Satoshi, manga, generate image, portrait.
// Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed. Trigger words: Hojo, Satoshi, manga, generate image, portrait.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | comfyui-zimage |
| description | Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed. Trigger words: Hojo, Satoshi, manga, generate image, portrait. |
⚠️ Do not use ToolSearch! Run scripts directly with Bash.
| User Says | Meaning | Script to Use |
|---|---|---|
| high quality, masterpiece, professional | Good Prompt quality | *_quick.py |
| high-res, upscale, 4K, large image | High resolution | *_highres.py or upscale_*.py |
| default (no specification) | Quick preview | *_quick.py |
| Priority | Keyword | Route | Description |
|---|---|---|---|
| 1 (Highest) | Riko | riko | Always use riko route when "Riko" is mentioned! |
| 2 | Hojo, Tsukasa Hojo | manga | Pure manga style |
| 3 | Satoshi, Urushihara | manga | Pure manga style |
"Riko in Hojo style" = riko route + Hojo LoRA overlay
Riko's fixed appearance (hairstyle, facial features) and outfit definitions only exist in generate_riko_*.py.
If you use generate_manga_*.py, you'll lose Riko's characteristics!
When user requests "Extract prompt from this image, then generate in Riko style":
Only extract these elements for --scene parameter:
Must discard these elements (Riko has fixed definitions):
DIR=/path/to/your/comfyui-zimage-skill
# Pure Riko (realistic style)
python3 $DIR/generate_riko_quick.py \
--outfit_type school_uniform \
--scene "[scene description]"
# Riko + Hojo style (black and white manga-style Riko)
python3 $DIR/generate_riko_quick.py \
--outfit_type school_uniform \
--scene "[scene description]" \
--lora "Z-image\\z-image-hojo.safetensors" \
--style_trigger "Zanshou_kin_Hojo, monochrome, greyscale"
# Riko + Satoshi style (90s anime-style Riko)
python3 $DIR/generate_riko_quick.py \
--outfit_type school_uniform \
--scene "[scene description]" \
--lora "Z-image\\z-image-satoshi.safetensors" \
--style_trigger "sato, 90s anime style" \
--style_tags "shiny skin, sparkle"
Outfit options: school_uniform (JK uniform) | maid (maid outfit)
View options: --view_type full (full body) | --view_type upper (upper body)
# Hojo style
python3 $DIR/generate_manga_quick.py \
--lora "Z-image\\z-image-hojo.safetensors" \
--prompt "[full prompt]"
# Satoshi style
python3 $DIR/generate_manga_quick.py \
--lora "Z-image\\z-image-satoshi.safetensors" \
--prompt "[full prompt]"
Replace *_quick.py with *_highres.py, requires timeout=300000
<a href="[image_url]"><img src="[image_url]" width="350"></a>
Save image_url for later upscaling!
When user says "upscale" for an already generated image:
# Riko image upscale (no LoRA needed)
python3 $DIR/upscale_riko.py --image_url "[image_url]"
# Manga image upscale (needs original LoRA)
python3 $DIR/upscale_manga.py --image_url "[image_url]" --lora "[original LoRA]"
| User Request | Route | Script | LoRA |
|---|---|---|---|
| Draw Riko | riko | generate_riko_quick.py | None |
| Riko in Hojo style | riko | generate_riko_quick.py | hojo + style_trigger |
| Riko in Satoshi style | riko | generate_riko_quick.py | satoshi + style_trigger |
| Mecha girl in Hojo style | manga | generate_manga_quick.py | hojo |
| Cyberpunk in Satoshi style | manga | generate_manga_quick.py | satoshi |
\\timeout=300000