Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Analyze articles and generate contextual illustrations using Type × Style two-dimension approach across multiple AI providers.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/usage.md
1# Usage23## Command Syntax45```bash6# Auto-select type and style based on content7/baoyu-article-illustrator path/to/article.md89# Specify type10/baoyu-article-illustrator path/to/article.md --type infographic1112# Specify style13/baoyu-article-illustrator path/to/article.md --style blueprint1415# Combine type and style16/baoyu-article-illustrator path/to/article.md --type flowchart --style notion1718# Specify density19/baoyu-article-illustrator path/to/article.md --density rich2021# Generate up to 4 images in parallel after prompts are saved22/baoyu-article-illustrator path/to/article.md --batch-size 42324# Direct content input (paste mode)25/baoyu-article-illustrator26[paste content]27```2829## Options3031| Option | Description |32|--------|-------------|33| `--type <name>` | Illustration type (see Type Gallery in SKILL.md) |34| `--style <name>` | Visual style (see references/styles.md) |35| `--preset <name>` | Shorthand for type + style combo (see [references/style-presets.md](references/style-presets.md)) |36| `--density <level>` | Image count: minimal / balanced / rich |37| `--batch-size <n>` | Temporary generation batch size for this run. Default: `generation_batch_size` from EXTEND.md, otherwise 4. Clamp to 1-8. |3839## Input Modes4041| Mode | Trigger | Output Directory |42|------|---------|------------------|43| File path | `path/to/article.md` | Use `default_output_dir` preference, or ask if not set |44| Paste content | No path argument | `illustrations/{topic-slug}/` |4546## Output Directory Options4748| Value | Path |49|-------|------|50| `same-dir` | `{article-dir}/` |51| `illustrations-subdir` | `{article-dir}/illustrations/` |52| `independent` | `illustrations/{topic-slug}/` |5354Configure in EXTEND.md: `default_output_dir: illustrations-subdir`5556## Examples5758**Technical article with data**:59```bash60/baoyu-article-illustrator api-design.md --type infographic --style blueprint61```6263**Same thing with preset**:64```bash65/baoyu-article-illustrator api-design.md --preset tech-explainer66```6768**Personal story**:69```bash70/baoyu-article-illustrator journey.md --preset storytelling71```7273**Tutorial with steps**:74```bash75/baoyu-article-illustrator how-to-deploy.md --preset tutorial --density rich76```7778**Opinion article with poster style**:79```bash80/baoyu-article-illustrator opinion.md --preset opinion-piece81```8283**Preset with override**:84```bash85/baoyu-article-illustrator article.md --preset tech-explainer --style notion86```87