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/confirmation.md
1# Confirmation Questions23Concrete option copy for the confirmation steps. SKILL.md lists which questions to ask — this file gives the verbatim options used in Claude Code. Adapt copy to the runtime's native user-input tool; the intent matters more than the exact wording.45## Round 1 (Always)67Batch all five questions in a single `AskUserQuestion` call.89### Q1: Style1011```yaml12header: Style13question: Which visual style for this deck?14options:15- label: "{recommended_preset} (Recommended)"16description: Best match based on content analysis17- label: "{alternative_preset}"18description: "{alternative style description}"19- label: Custom dimensions20description: Choose texture, mood, typography, density separately21```2223### Q2: Audience2425```yaml26header: Audience27question: Who is the primary reader?28options:29- label: General readers (Recommended)30description: Broad appeal, accessible content31- label: Beginners/learners32description: Educational focus, clear explanations33- label: Experts/professionals34description: Technical depth, domain knowledge35- label: Executives36description: High-level insights, minimal detail37```3839### Q3: Slide Count4041```yaml42header: Slides43question: How many slides?44options:45- label: "{N} slides (Recommended)"46description: Based on content length47- label: "Fewer ({N-3} slides)"48description: More condensed, less detail49- label: "More ({N+3} slides)"50description: More detailed breakdown51```5253### Q4: Review Outline5455```yaml56header: Outline57question: Review outline before generating prompts?58options:59- label: Yes, review outline (Recommended)60description: Review slide titles and structure61- label: No, skip outline review62description: Proceed directly to prompt generation63```6465### Q5: Review Prompts6667```yaml68header: Prompts69question: Review prompts before generating images?70options:71- label: Yes, review prompts (Recommended)72description: Review image generation prompts73- label: No, skip prompt review74description: Proceed directly to image generation75```7677## Round 2 — Custom Dimensions7879Triggered only when Q1 of Round 1 = "Custom dimensions". Batch all four dimension questions.8081### Texture8283```yaml84header: Texture85question: Which visual texture?86options:87- label: clean88description: Pure solid color, no texture89- label: grid90description: Subtle grid overlay, technical91- label: organic92description: Soft textures, hand-drawn feel93- label: pixel94description: Chunky pixels, 8-bit aesthetic95```9697`paper` is also valid — accept via "Other".9899### Mood100101```yaml102header: Mood103question: Which color mood?104options:105- label: professional106description: Cool-neutral, navy/gold107- label: warm108description: Earth tones, friendly109- label: cool110description: Blues, grays, analytical111- label: vibrant112description: High saturation, bold113- label: macaron114description: Pastel blocks on cream115```116117`dark`, `neutral` valid via "Other".118119### Typography120121```yaml122header: Typography123question: Which typography style?124options:125- label: geometric126description: Modern sans-serif, clean127- label: humanist128description: Friendly, readable129- label: handwritten130description: Marker/brush, organic131- label: editorial132description: Magazine style, dramatic133```134135`technical` valid via "Other".136137### Density138139```yaml140header: Density141question: Information density?142options:143- label: balanced (Recommended)144description: 2-3 key points per slide145- label: minimal146description: One focus point, maximum whitespace147- label: dense148description: Multiple data points, compact149```150151## Outline Review (Step 4)152153```yaml154header: Confirm155question: Ready to generate prompts?156options:157- label: Yes, proceed (Recommended)158description: Generate image prompts159- label: Edit outline first160description: I'll modify outline.md before continuing161- label: Regenerate outline162description: Create new outline with different approach163```164165## Prompt Review (Step 6)166167```yaml168header: Confirm169question: Ready to generate slide images?170options:171- label: Yes, proceed (Recommended)172description: Generate all slide images173- label: Edit prompts first174description: I'll modify prompts before continuing175- label: Regenerate prompts176description: Create new prompts with different approach177```178179## Existing Content (Step 1.3)180181```yaml182header: Existing183question: Existing content found. How to proceed?184options:185- label: Regenerate outline186description: Keep images, regenerate outline only187- label: Regenerate images188description: Keep outline, regenerate images only189- label: Backup and regenerate190description: Backup to {slug}-backup-{timestamp}, then regenerate all191- label: Exit192description: Cancel, keep existing content unchanged193```194