From prettycomics
Generates comic-style illustrations from text descriptions. Supports reference images for style consistency across multiple panels. Use when user asks for a comic, illustration, cartoon, manga, or fun image.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prettycomics:prettycomicThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates comic-style illustrations from text descriptions with optional reference images for consistent character/style.
Generates comic-style illustrations from text descriptions with optional reference images for consistent character/style.
Plugin root: ${CLAUDE_PLUGIN_ROOT}
Before anything else, check if ${CLAUDE_PLUGIN_ROOT}/.env exists.
If it does NOT exist, ask the user:
You need a Google Gemini API key for image generation. Get one for free at https://aistudio.google.com/apikey
Then create the .env file:
GEMINI_API_KEY=<their key>
Write this to ${CLAUDE_PLUGIN_ROOT}/.env.
Optionally ask: "Do you also have a Kie.ai API key for fallback rendering? (Enter to skip)"
If yes, append KIE_API_KEY=<key> to .env.
Parse what the user wants:
Run:
cd "${CLAUDE_PLUGIN_ROOT}"
source .venv/bin/activate 2>/dev/null || bash scripts/setup.sh
python generate.py "<scene description>" --style <style> -o output/<slug>.png
With reference image:
python generate.py "<scene description>" --ref <path-to-reference.png> --style <style> -o output/<slug>.png
Open the generated image:
xdg-open "${CLAUDE_PLUGIN_ROOT}/output/<slug>.png"
Share the path with the user and ask if adjustments are needed.
| Style | Description |
|---|---|
comic | Classic colorful comic book / webcomic (default) |
manga | Japanese manga with speed lines, screen tones |
cyberpunk | Dark futuristic with neon colors, glitch effects |
retro | 1960s pop art, halftone dots, bold primary colors |
pixel | 16-bit pixel art, limited color palette |
Pass --ref <path> to maintain visual consistency:
The model will match line weight, coloring technique, and character proportions from the reference.
generate.py "<description>" [options]
--ref PATH Reference image for style consistency
--style STYLE Visual style preset (default: comic)
-o, --output PATH Output path (default: output/comic.png)
--resolution 1K|2K|4K Resolution (default: 2K)
--aspect-ratio Aspect ratio (default: 16:9)
--backend kie|gemini Override backend
GEMINI_API_KEY in ${CLAUDE_PLUGIN_ROOT}/.envKIE_API_KEY optional (fallback)npx claudepluginhub jadefalkner/jadefalkner-plugins --plugin prettycomicsCreates original educational comics with customizable art styles, tones, and panel layouts, including batch image generation.
Creates educational knowledge comics with configurable art styles, tones, and panel layouts. Supports sequential image generation and partial workflow options.