/SKILL.md
Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed. Trigger words: Hojo, Satoshi, manga, generate image, portrait.
npx skillsauth add monggiiiii/comfyui-zimage-skill comfyui-zimageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
⚠️ 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=300000tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.