| 日本語 | English |
|---|
Manga Generation is a Codex skill for planning and generating colorful manga pages from story drafts, character references, and style notes. It expands a draft into page beats, selects bundled manga page templates, writes panel-by-panel briefs, and uses $imagegen to render each completed manga page as one full page instead of separate panel images or code-composited layouts.
- Plans manga pages from a draft, script, or story premise.
- Supports three expansion modes:
Original,Slight Expansion, andExpansion. - Selects from bundled blank manuscript bases and numbered manga panel layouts.
- Produces page plans with template choice, page purpose, continuity notes, drawing briefs, dialogue, sound effects, and balloon placement.
- Guides
$imagegento create complete full-color manga pages with preserved panel borders and gutters. - Uses templates and user-provided images as role-labeled references for image generation, not as pasted or Python-composited assets.
- Keeps generated manga pages under
output/manga-pages/, which is ignored by Git.
The skill bundles reusable manga page templates under skills/manga-generation/assets/Manga_Panel_Layout_Template/.
The demo_image/ directory shows a sample prompt image and generated outputs so users can understand the expected workflow and visual result quality.
Prompt image:
Generated outputs:
- Codex with skill support.
$imagegenavailability when generating final manga page images.- Python 3 with Pillow available only when regenerating template PNGs with
generate_manga_templates.py.
No API keys, credentials, or environment variables are defined by this repository.
Clone this repository, then drop the included skill folder into your Codex skills directory:
skills/manga-generation/ -> ~/.codex/skills/manga-generation/
The required skill entry point is:
skills/manga-generation/SKILL.md
Invoke the skill from Codex with a story draft and any relevant reference images:
Use $manga-generation to make a 5-page colorful manga from my draft and references.
You can also specify an expansion mode:
Use $manga-generation in Slight Expansion mode for this story draft.
By default, the skill uses:
- Expansion mode:
Original - Maximum pages/images:
5 - Template folder:
assets/Manga_Panel_Layout_Template/relative to the skill directory - Output folder:
output/manga-pages/relative to the active workspace or repository root
The skill plans each page before generation. Each $imagegen request should generate one complete colorful manga page containing all panels, borders, speech balloons, dialogue, sound effects, and page composition.
Template PNGs are only references for page geometry. Final pages should be drawn by imagegen from the template, story plan, and user reference images rather than assembled with Python or pasted source images.
Regenerate deterministic blank manuscript bases, generated panel templates, and template_manifest.json with:
python3 skills/manga-generation/scripts/generate_manga_templates.pyThe script writes to:
skills/manga-generation/assets/Manga_Panel_Layout_Template/
Keep the skill self-contained under skills/manga-generation/ so users can install it by copying that folder.
.
├── demo_image/
│ ├── prompt-image.jpg
│ ├── generated-image1.jpeg
│ ├── generated-image2.jpeg
│ └── generated-image3.jpeg
├── skills/
│ └── manga-generation/
│ ├── SKILL.md
│ ├── agents/openai.yaml
│ ├── assets/Manga_Panel_Layout_Template/
│ ├── references/
│ └── scripts/generate_manga_templates.py
├── AGENTS.md
├── LICENSE
└── README.md
This skill stores no credentials and defines no external service integration. Manga drafts, reference images, generated page plans, and output images stay in the active Codex workspace unless the user explicitly shares them elsewhere.
This repository is licensed under the MIT License. See LICENSE.




