Usage
Command Syntax
# Auto-select type and style based on content
/baoyu-article-illustrator path/to/article.md
# Specify type
/baoyu-article-illustrator path/to/article.md --type infographic
# Specify style
/baoyu-article-illustrator path/to/article.md --style blueprint
# Combine type and style
/baoyu-article-illustrator path/to/article.md --type flowchart --style notion
# Specify density
/baoyu-article-illustrator path/to/article.md --density rich
# Generate up to 4 images in parallel after prompts are saved
/baoyu-article-illustrator path/to/article.md --batch-size 4
# Direct content input (paste mode)
/baoyu-article-illustrator
[paste content]Options
| Option | Description |
|---|---|
--type <name> | Illustration type (see Type Gallery in SKILL.md) |
--style <name> | Visual style (see references/styles.md) |
--preset <name> | Shorthand for type + style combo (see references/style-presets.md) |
--density <level> | Image count: minimal / balanced / rich |
--batch-size <n> | Temporary generation batch size for this run. Default: generation_batch_size from EXTEND.md, otherwise 4. Clamp to 1-8. |
Input Modes
| Mode | Trigger | Output Directory |
|---|---|---|
| File path | path/to/article.md | Use default_output_dir preference, or ask if not set |
| Paste content | No path argument | illustrations/{topic-slug}/ |
Output Directory Options
| Value | Path |
|---|---|
same-dir | {article-dir}/ |
illustrations-subdir | {article-dir}/illustrations/ |
independent | illustrations/{topic-slug}/ |
Configure in EXTEND.md: default_output_dir: illustrations-subdir
Examples
Technical article with data:
/baoyu-article-illustrator api-design.md --type infographic --style blueprintSame thing with preset:
/baoyu-article-illustrator api-design.md --preset tech-explainerPersonal story:
/baoyu-article-illustrator journey.md --preset storytellingTutorial with steps:
/baoyu-article-illustrator how-to-deploy.md --preset tutorial --density richOpinion article with poster style:
/baoyu-article-illustrator opinion.md --preset opinion-piecePreset with override:
/baoyu-article-illustrator article.md --preset tech-explainer --style notion