Claude
Skills
Sign in
Back

powerpoint-presentations

Included with Lifetime
$97 forever

Create, modify, and manage PowerPoint presentations.

General

What this skill does


# PowerPoint Presentations

## Quick Reference

| Task | How |
|------|-----|
| Create from scratch | `get_slide_design_reference` → `create_presentation` (PptxGenJS). Read [pptxgenjs.md](pptxgenjs.md). |
| **Create from template** | `get_presentation_layouts` → `delete_slides` (strip content) → `add_slide` → `update_slide_content`. **Do NOT use `create_presentation`**. |
| Edit existing | `analyze_presentation` → `update_slide_content`. Read [editing-guide.md](editing-guide.md). |
| Verify | `preview_presentation_slides` after every change |

## Design Ideas

**Don't create boring slides.** Plain bullets on a white background won't impress anyone.

### Before Starting

- **Pick a bold, content-informed color palette**: The palette should feel designed for THIS topic.
- **Dominance over equality**: One color dominates (60-70% visual weight), with 1-2 supporting tones and one sharp accent. Never give all colors equal weight.
- **Dark/light contrast**: Dark backgrounds for title + conclusion slides, lighter tints for content slides. Or commit to dark throughout for a premium feel.
- **Commit to a visual motif**: Pick ONE distinctive element and repeat it — rounded image frames, icons in colored circles, thick single-side borders.

### Color Palettes

Choose colors that match your topic — don't default to generic blue.

| Theme | Primary | Secondary | Accent |
|-------|---------|-----------|--------|
| **Midnight Executive** | `1E2761` (navy) | `CADCFC` (ice blue) | `FFFFFF` (white) |
| **Teal Trust** | `028090` (teal) | `00A896` (seafoam) | `02C39A` (mint) |
| **Forest & Moss** | `2C5F2D` (forest) | `97BC62` (moss) | `F5F5F5` (cream) |
| **Berry & Cream** | `6D2E46` (berry) | `A26769` (dusty rose) | `ECE2D0` (cream) |
| **Coral Energy** | `F96167` (coral) | `F9E795` (gold) | `2F3C7E` (navy) |
| **Ocean Gradient** | `065A82` (ocean) | `1C7293` (teal) | `21295C` (midnight) |
| **Charcoal Minimal** | `36454F` (charcoal) | `F2F2F2` (off-white) | `212121` (black) |
| **Cherry Bold** | `990011` (cherry) | `FCF6F5` (off-white) | `2F3C7E` (navy) |
| **Sage Calm** | `84B59F` (sage) | `69A297` (eucalyptus) | `50808E` (slate) |
| **Warm Terracotta** | `B85042` (terracotta) | `E7E8D1` (sand) | `A7BEAE` (sage) |

### For Each Slide

**Every slide needs a visual element** — image, chart, icon, or shape. Text-only slides are forgettable.

**Layout options:**
- Two-column (text left, illustration right)
- Icon + text rows (icon in colored circle, bold header, description below)
- 2x2 or 2x3 grid (image one side, content blocks the other)
- Half-bleed image (full left or right) with content overlay

**Data display:**
- Large stat callouts (big numbers 60-72pt with small labels below)
- Comparison columns (before/after, pros/cons, side-by-side options)
- Timeline or process flow (numbered steps, arrows)

**Visual polish:**
- Icons in small colored circles next to section headers
- Italic accent text for key stats or taglines

### Typography

| Header Font | Body Font |
|-------------|-----------|
| Georgia | Calibri |
| Arial Black | Arial |
| Calibri Bold | Calibri Light |
| Cambria | Calibri |
| Trebuchet MS | Calibri |

| Element | Size |
|---------|------|
| Slide title | 36-44pt bold |
| Section header | 20-24pt bold |
| Body text | 14-16pt |
| Captions | 10-12pt muted |

Font pairings: Georgia + Calibri (classic), Arial Black + Arial (modern), Calibri Bold + Calibri Light (corporate). Left-align body text; center only titles and stats.

### Spacing

- 0.5" minimum margins from edges
- 0.3-0.5" between content blocks
- 0.5"+ breathing room below titles

### Avoid (Common Mistakes)

- **Plain bullets on white background** — always fill slides with a palette color
- **Default PowerPoint blue (#4472C4)** — signals "auto-generated"
- **Don't repeat the same layout** — vary columns, cards, and callouts across slides
- **Don't center body text** — left-align paragraphs; center only titles and stats
- **Don't skimp on size contrast** — titles need 36pt+ to stand out from 14-16pt body
- **Don't mix spacing randomly** — choose 0.3" or 0.5" gaps and use consistently
- **Don't style one slide and leave the rest plain** — commit fully or keep it simple throughout
- **Don't create text-only slides** — add shapes, icons, charts, or accent elements
- **Don't forget text box padding** — set `margin: 0` when aligning text with shapes at same x-position
- **Don't use low-contrast elements** — text AND icons need strong contrast against background
- **NEVER use accent lines under titles** — use whitespace or background color instead
- **Don't overcrowd slides** — max 4 bullets; split to multiple slides or use 2x2/3-column grid

See [design-guide.md](design-guide.md) for visual element code patterns (accent bars, icon circles, side stripes, cards).

---

## Workflow

### A. Create from scratch (no template)
1. Call `get_slide_design_reference` for palette and layout ideas
2. Call `create_presentation` with `slides` parameter (PptxGenJS). Read [pptxgenjs.md](pptxgenjs.md) for the full API.

### B. Create from a template (user uploaded a .pptx template)
**Do NOT use `create_presentation`** — that ignores the template entirely and recreates from scratch.

Instead, use the template file as the base:
1. `get_presentation_layouts("template-name")` — see available layout names
2. `preview_presentation_slides` — inspect visual style (colors, logo, footer, chrome elements)
3. `delete_slides("template-name", [indices of all content slides], "working-name")` — strip example content, keep masters/layouts
4. `add_slide("working-name", layout_name, position, "working-name-v2")` — add slides using the template's own layouts (inherits background, logo, footer automatically)
5. `update_slide_content(...)` — fill in text and images

This preserves the template's slide master, theme, logo, footer, and background — things `create_presentation` cannot replicate.

### C. Edit existing presentation
Read [editing-guide.md](editing-guide.md) for detailed workflows. Then: `analyze_presentation` → identify element IDs → `update_slide_content`.

### Verify
Call `preview_presentation_slides` after any modification. Assume there are problems — inspect carefully.

**When continuing a deck across conversation turns**: Do NOT re-preview existing slides just to check the design system. The palette, fonts, and layout decisions from the previous turn are already in the conversation history — use that. Only re-preview if you need to verify the visual state after a modification.

## Rules

- Batch all edits in ONE `update_slide_content` call. Parallel calls cause data loss.
- `output_name` must differ from `presentation_name`.
- All slide indices are 0-based EXCEPT `preview_presentation_slides` which uses 1-based `slide_numbers`.
- Filenames: letters, numbers, hyphens only.

---

## QA (Required)

**Assume there are problems. Your job is to find them.**

Your first render is almost never perfect. Approach QA as a bug hunt, not a confirmation step.

### Visual QA

Call `preview_presentation_slides` and visually inspect the screenshots. Look for:

- Overlapping elements (text through shapes, lines through words)
- Text overflow or cut off at edges
- Elements too close (< 0.3" gaps) or cards nearly touching
- Uneven gaps (large empty area in one place, cramped in another)
- Insufficient margin from slide edges (< 0.5")
- Columns or similar elements not aligned consistently
- Low-contrast text (light text on light background, dark text on dark background)
- Low-contrast icons without a contrasting background circle
- Text boxes too narrow causing excessive wrapping
- Inconsistent font sizes or styles across similar elements

### Verification Loop

1. Generate → `preview_presentation_slides` → inspect screenshots
2. List issues found (if none found, look again more critically)
3. Fix with `update_slide_content`
4. Re-verify affected slides — one fix often creates another problem
5. Repeat until a full pass reveals no new is

Related in General