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>16generation_batch_size: 4 # 1-8, used when backend/runtime supports batch or parallel slide generation1718## Custom Dimensions (only when style: custom)19dimensions:20texture: clean # clean | grid | organic | pixel | paper21mood: professional # professional | warm | cool | vibrant | dark | neutral22typography: geometric # geometric | humanist | handwritten | editorial | technical23density: balanced # minimal | balanced | dense2425## Custom Styles (optional)26custom_styles:27my-style:28texture: organic29mood: warm30typography: humanist31density: minimal32description: "My custom warm and friendly style"33```3435## Field Descriptions3637### Defaults3839| Field | Type | Default | Description |40|-------|------|---------|-------------|41| `style` | string | `blueprint` | Preset name, `custom`, or custom style name |42| `audience` | string | `general` | Default target audience |43| `language` | string | `auto` | Output language (auto = detect from input) |44| `review` | boolean | `true` | Show outline review before generation |45| `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-image-gen`, `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. |46| `generation_batch_size` | int | 4 | Number of slide images to dispatch per batch when the backend has native batch support or the runtime can issue parallel generation calls. Clamp invalid values to 1-8. Current user request overrides this value. |4748### Custom Dimensions4950Only used when `style: custom`. Defines dimension values directly.5152| Field | Options | Default |53|-------|---------|---------|54| `texture` | clean, grid, organic, pixel, paper | clean |55| `mood` | professional, warm, cool, vibrant, dark, neutral | professional |56| `typography` | geometric, humanist, handwritten, editorial, technical | geometric |57| `density` | minimal, balanced, dense | balanced |5859### Custom Styles6061Define reusable custom dimension combinations.6263```yaml64custom_styles:65style-name:66texture: <texture>67mood: <mood>68typography: <typography>69density: <density>70description: "Optional description"71```7273Then use with: `/baoyu-slide-deck content.md --style style-name`7475## Minimal Examples7677### Just change default style7879```yaml80style: sketch-notes81```8283### Prefer no reviews8485```yaml86review: false87```8889### Custom default dimensions9091```yaml92style: custom93dimensions:94texture: organic95mood: professional96typography: humanist97density: minimal98```99100### Define reusable custom style101102```yaml103custom_styles:104brand-style:105texture: clean106mood: vibrant107typography: editorial108density: balanced109description: "Company brand style"110```111112## File Locations113114Priority order (first found wins):1151161. `.baoyu-skills/baoyu-slide-deck/EXTEND.md` (project)1172. `$HOME/.baoyu-skills/baoyu-slide-deck/EXTEND.md` (user)118119## First-Time Setup120121When no EXTEND.md exists, the skill prompts for initial preferences:1221231. Preferred style (preset or custom)1242. Default audience1253. Language preference1264. Review preference1275. Save location (project or user)128129Creates EXTEND.md at chosen location.130