# One-Shot Prompt

**Topic**: AI in Healthcare
**Theme**: Corporate Dark
**Generated**: 2026-04-18
**Model**: Claude 4 Sonnet

## Prompt

Write a complete Node.js script using `pptxgenjs` that generates a professional 15-slide presentation about AI in Healthcare, themed with Corporate Dark visual style.

The deck must feel like it was designed by a senior presentation designer — not a tutorial exercise. Every slide should have visual intention, data where appropriate, and a clear narrative arc.

### Theme: Corporate Dark (Dark Mode)

**Palette**:
- Primary: `1B2A4A` (deep navy)
- Secondary: `2E4A7A` (medium navy)
- Accent: `E8913A` (warm orange)
- Text: `FFFFFF` (white on dark), `2D3436` (dark on light)
- Light text: `B0BEC5` (muted silver)
- Background: `0D1B2A` (near-black navy)
- Light BG: `F5F7FA` (cool white for content slides)
- Dark: `091520` (deepest navy)

**Chart colors**: `2E4A7A`, `E8913A`, `5BA0D9`, `7EC8A0`, `D4556B`

**Background strategy**:
- Title slide: solid `0D1B2A` with accent elements
- Content slides: `F5F7FA` (light) with navy title bars
- Section dividers: gradient from `1B2A4A` to `0D1B2A`
- Closing: match title slide

### Slide Structure (15 SLIDES — MANDATORY)

Every presentation must follow this narrative arc. All 15 slides are required.

| # | Slide Type | Purpose | Content |
|---|-----------|---------|---------|
| 1 | **Title Slide** | Topic title, subtitle, date, "Prepared by [Model Name]" | "AI in Healthcare", "Transforming Medicine Through Intelligence", date, author |
| 2 | **Agenda / Overview** | 4-6 bullet points previewing the deck's sections | The AI Healthcare Revolution, Market Landscape, Key Applications, Challenges & Risks, Future Outlook, Key Takeaways |
| 3 | **Context / Why This Matters** | The problem statement or opportunity, with a key statistic callout | Healthcare costs rising 5.4% annually, 1 in 5 diagnostic errors could be prevented with AI, callout: "$150B potential savings by 2026" |
| 4 | **Key Data Point** | A single dramatic number/stat as a large display | "94% accuracy" — AI diagnostic accuracy in radiology studies (vs 88% human average) |
| 5 | **Market/Landscape Overview** | Bar or column chart with 4-6 data points | Global AI Healthcare market by segment: Medical Imaging ($5.2B), Drug Discovery ($3.8B), Diagnostics ($2.9B), Virtual Assistants ($1.8B), Administrative ($2.1B), Genomics ($1.4B) |
| 6 | **Breakdown / Categories** | Pie or doughnut chart showing composition | AI Investment Distribution: Diagnostics 28%, Imaging 24%, Drug Discovery 19%, Operations 16%, Other 13% |
| 7 | **Timeline / History** | Visual timeline using shapes and connectors | 2016: DeepMind Health founded, 2018: FDA approves first AI diagnostic device, 2020: AI COVID-19 detection deployed, 2022: GPT medical chatbots emerge, 2024: Multi-modal AI systems launch, 2026: Autonomous diagnostic AI trials |
| 8 | **Comparison Table** | Styled table comparing 3-4 items across 4-5 attributes | Compare AI diagnostic tools: IBM Watson Health, Google DeepMind, PathAI, Tempus — across Accuracy, Speed, Cost, Regulatory Status |
| 9 | **Trend Analysis** | Line chart showing trends over time (2-3 series) | AI Adoption Rate (%) in Hospitals: 2019: 15%, 2021: 28%, 2023: 45%, 2025: 67%, 2027 (projected): 84% — compared with Pharma R&D adoption and Administrative adoption |
| 10 | **Case Study / Example** | Real or realistic example with callout boxes | Mayo Clinic AI Cardiology Program: 37% reduction in diagnostic time, 23% improvement in accuracy, callout boxes for Key Metrics |
| 11 | **Challenges & Risks** | Risk matrix or categorized list with color-coded severity | Data Privacy (High Risk), Algorithm Bias (High Risk), Regulatory Gaps (Medium), Integration Costs (Medium), Staff Training (Low) |
| 12 | **Opportunities / Solutions** | 3-4 opportunity cards laid out as shaped boxes | Faster Drug Development (60% reduction in time), Early Disease Detection (cancers caught 2 years earlier), Personalized Treatment Plans, Rural Healthcare Access |
| 13 | **Future Outlook** | Forecast or projection with supporting visuals | 2030 Projections: $188B market size, 40% of clinical decisions AI-assisted, 90% of drug discovery AI-enhanced |
| 14 | **Key Takeaways** | 3-5 numbered takeaways, each with an icon-like shape | 1. AI is transforming diagnostics, 2. Market growing exponentially, 3. Challenges remain around ethics/privacy, 4. Future is collaborative AI + human expertise, 5. Adoption accelerating across all healthcare sectors |
| 15 | **Thank You / Q&A** | Closing slide with contact placeholder and subtle branding | "Questions & Discussion", "Thank you", contact placeholder, subtle design elements |

### Technical Constraints (NON-NEGOTIABLE)

- **Single script**: One `.mjs` file that generates the `.pptx`
- **No external images**: Use PptxGenJS shapes, charts, gradients, and text only — no image paths, no URLs, no base64 images
- **No templates**: Build every slide from scratch programmatically
- **Runnable**: `node generate.mjs` produces the `.pptx` file. Must work first try.
- **ES modules**: Use `import` syntax (`.mjs` extension)

### Visual Quality Bar

This is NOT a text-heavy bullet-point deck. It should feel like a consulting firm produced it.

**Layout craft:**
- No slide should be just a title + bullet list
- Use the full slide canvas
- Consistent margins: 0.5" from edges minimum
- Visual hierarchy: title → subtitle → body → footnote

**Shape-based design:**
- Colored rectangles as section headers, accent bars, and background blocks
- Rounded rectangles as "cards" for key points
- Circles or ellipses as "icon" placeholders
- Lines as dividers and connectors
- Use `rectRadius` for modern rounded corners

**Typography discipline:**
- Title: 28-36pt, bold, theme primary color (or white on dark backgrounds)
- Subtitle: 18-22pt, regular weight, secondary color
- Body: 14-16pt, dark grey or theme text color
- Footnotes/sources: 9-10pt, light grey
- Never more than 3 font sizes on one slide
- Use `fontFace: "Arial"` as the safe default

**Color consistency:**
- Define a `COLORS` object at the top
- Use it everywhere — no hardcoded hex values scattered

### Speaker Notes

Every slide MUST include speaker notes (`slide.addNotes(...)`) with:
- 2-3 talking points per slide
- Transition phrases to the next slide
- Additional context not shown on the slide

## Notes

- Uses PptxGenJS for programmatic PowerPoint generation
- Corporate Dark theme for executive presentation feel
- All data represents realistic 2024-2026 healthcare AI projections
- Charts include: bar chart, pie chart, line chart, comparison table
- Timeline and risk matrix use programmatic shapes
- To run: `npm install pptxgenjs && node generate.mjs`
- Output: `presentation.pptx`
