Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Generate professional slide deck images from content with 9 visual style presets and configurable slide counts.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/config/preferences-schema.md
1# EXTEND.md Schema23Structure for user preferences in `.baoyu-skills/baoyu-slide-deck/EXTEND.md`.45## Full Schema67```yaml8# Slide Deck Preferences910## Defaults11style: blueprint # Preset name OR "custom"12audience: general # beginners | intermediate | experts | executives | general13language: auto # auto | en | zh | ja | etc.14review: true # true = review outline before generation15preferred_image_backend: auto # auto | ask | <backend-id>1617## Custom Dimensions (only when style: custom)18dimensions:19texture: clean # clean | grid | organic | pixel | paper20mood: professional # professional | warm | cool | vibrant | dark | neutral21typography: geometric # geometric | humanist | handwritten | editorial | technical22density: balanced # minimal | balanced | dense2324## Custom Styles (optional)25custom_styles:26my-style:27texture: organic28mood: warm29typography: humanist30density: minimal31description: "My custom warm and friendly style"32```3334## Field Descriptions3536### Defaults3738| Field | Type | Default | Description |39|-------|------|---------|-------------|40| `style` | string | `blueprint` | Preset name, `custom`, or custom style name |41| `audience` | string | `general` | Default target audience |42| `language` | string | `auto` | Output language (auto = detect from input) |43| `review` | boolean | `true` | Show outline review before generation |44| `preferred_image_backend` | string | `auto` | Image backend selection. `auto` = prefer runtime-native tool, fall back to the only installed backend, ask if multiple non-native are present. `ask` = always confirm on every run. `<backend-id>` (e.g., `codex-imagegen`, `baoyu-imagine`, `image_generate`) = pin this backend when available; fall back to `auto` when it isn't. Absent = `auto`. Resolution logic is documented in `SKILL.md`'s `## Image Generation Tools` section. |4546### Custom Dimensions4748Only used when `style: custom`. Defines dimension values directly.4950| Field | Options | Default |51|-------|---------|---------|52| `texture` | clean, grid, organic, pixel, paper | clean |53| `mood` | professional, warm, cool, vibrant, dark, neutral | professional |54| `typography` | geometric, humanist, handwritten, editorial, technical | geometric |55| `density` | minimal, balanced, dense | balanced |5657### Custom Styles5859Define reusable custom dimension combinations.6061```yaml62custom_styles:63style-name:64texture: <texture>65mood: <mood>66typography: <typography>67density: <density>68description: "Optional description"69```7071Then use with: `/baoyu-slide-deck content.md --style style-name`7273## Minimal Examples7475### Just change default style7677```yaml78style: sketch-notes79```8081### Prefer no reviews8283```yaml84review: false85```8687### Custom default dimensions8889```yaml90style: custom91dimensions:92texture: organic93mood: professional94typography: humanist95density: minimal96```9798### Define reusable custom style99100```yaml101custom_styles:102brand-style:103texture: clean104mood: vibrant105typography: editorial106density: balanced107description: "Company brand style"108```109110## File Locations111112Priority order (first found wins):1131141. `.baoyu-skills/baoyu-slide-deck/EXTEND.md` (project)1152. `$HOME/.baoyu-skills/baoyu-slide-deck/EXTEND.md` (user)116117## First-Time Setup118119When no EXTEND.md exists, the skill prompts for initial preferences:1201211. Preferred style (preset or custom)1222. Default audience1233. Language preference1244. Review preference1255. Save location (project or user)126127Creates EXTEND.md at chosen location.128