Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create educational and knowledge comics with multiple art styles (manga, ligne-claire, ink-brush) and tone combinations.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/partial-workflows.md
1# Partial Workflows23Options to run specific parts of the workflow.45## Options Summary67| Option | Steps Executed | Output |8|--------|----------------|--------|9| `--storyboard-only` | 1-3 | `storyboard.md` + `characters/` |10| `--prompts-only` | 1-5 | + `prompts/*.md` |11| `--images-only` | 7-9 | + images + PDF |12| `--regenerate N` | 7 (partial) | Specific page(s) + PDF |1314---1516## Using `--storyboard-only`1718Generate storyboard and characters without prompts or images:1920```bash21/baoyu-comic content.md --storyboard-only22```2324**Workflow**: Steps 1-3 only (stop after storyboard + characters)2526**Output**:27- `analysis.md`28- `storyboard.md`29- `characters/characters.md`3031**Use case**: Review and edit the storyboard before generating images. Useful for:32- Getting feedback on the narrative structure33- Making manual adjustments to panel layouts34- Defining custom characters3536---3738## Using `--prompts-only`3940Generate storyboard, characters, and prompts without images:4142```bash43/baoyu-comic content.md --prompts-only44```4546**Workflow**: Steps 1-5 (generate prompts, skip images)4748**Output**:49- `analysis.md`50- `storyboard.md`51- `characters/characters.md`52- `prompts/*.md`5354**Use case**: Review and edit prompts before image generation. Useful for:55- Fine-tuning image generation prompts56- Ensuring visual consistency before committing to generation57- Making style adjustments at the prompt level5859---6061## Using `--images-only`6263Generate images from existing prompts (starts at Step 7):6465```bash66/baoyu-comic comic/topic-slug/ --images-only67```6869**Workflow**: Skip to Step 7, then 8-97071**Prerequisites** (must exist in directory):72- `prompts/` directory with page prompt files73- `storyboard.md` with style information74- `characters/characters.md` with character definitions7576**Output**:77- `characters/characters.png` (if not exists)78- `NN-{cover|page}-[slug].png` images79- `{topic-slug}.pdf`8081**Use case**: Re-generate images after editing prompts. Useful for:82- Recovering from failed image generation83- Trying different image generation settings84- Regenerating after manual prompt edits8586---8788## Using `--regenerate`8990Regenerate specific pages only:9192```bash93# Single page94/baoyu-comic comic/topic-slug/ --regenerate 39596# Multiple pages97/baoyu-comic comic/topic-slug/ --regenerate 2,5,89899# Cover page100/baoyu-comic comic/topic-slug/ --regenerate 0101```102103**Workflow**:1041. Read existing prompts for specified pages1052. Regenerate images only for those pages1063. Regenerate PDF107108**Prerequisites** (must exist):109- `prompts/NN-{cover|page}-[slug].md` for specified pages110- `characters/characters.png` (for reference)111112**Output**:113- Regenerated `NN-{cover|page}-[slug].png` for specified pages114- Updated `{topic-slug}.pdf`115116**Use case**: Fix specific pages without regenerating entire comic. Useful for:117- Fixing a single problematic page118- Iterating on specific visuals119- Regenerating pages after prompt edits120121**Page numbering**:122- `0` = Cover page123- `1-N` = Content pages124