From Presentations
Converts Markdown files into professional presentations (PDF, PPTX, HTML, PNG, JPEG) using Marp CLI. Useful when asked to create slides from markdown.
How this skill is triggered — by the user, by Claude, or both
Slash command
/presentations:marp-presentationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Use when: "презентация", "слайды из markdown", "marp", "slides from markdown"
Use when: "презентация", "слайды из markdown", "marp", "slides from markdown" Free alternative to Gamma. Markdown → PDF/PPTX/HTML slides.
Marp converts Markdown files into professional presentations. Output formats: HTML, PDF, PPTX, PNG, JPEG.
# CLI (one-shot via npx, no install needed)
npx @marp-team/marp-cli slide.md --pdf
# Or install globally
npm install -g @marp-team/marp-cli
# VSCode extension (recommended for preview)
# Install: "Marp for VS Code" (marp-team.marp-vscode)
---
marp: true
theme: default
paginate: true
header: "Company Name"
footer: "2026"
style: |
section {
font-family: 'Arial', sans-serif;
}
h1 {
color: #2563eb;
}
---
# Slide 1 Title
Content for first slide
---
# Slide 2 Title
- Bullet point 1
- Bullet point 2
- Bullet point 3

---
<!-- _class: lead -->
# Big centered text
Subtitle underneath
---
# Code Example
```python
def hello():
print("Hello from Marp!")
Left column
Right column
| Theme | Style |
|---|---|
default | Clean, professional |
gaia | Bold, colorful |
uncover | Minimalist |
<!-- _class: lead --> <!-- Centered large text -->
<!-- _class: invert --> <!-- Dark background -->
<!-- _backgroundColor: #1a1a2e --> <!-- Custom bg -->
<!-- _color: white --> <!-- Text color -->
<!-- _paginate: false --> <!-- Hide page number -->
<!-- _header: "" --> <!-- Remove header for this slide -->
 <!-- Full background -->
 <!-- Split layout -->
 <!-- Left split -->
 <!-- Fit to slide -->
 <!-- Blurred background -->
 <!-- Semi-transparent -->
# Markdown → PDF
npx @marp-team/marp-cli slides.md --pdf
# Markdown → PPTX
npx @marp-team/marp-cli slides.md --pptx
# Markdown → HTML (single file)
npx @marp-team/marp-cli slides.md --html
# Markdown → PNG images (one per slide)
npx @marp-team/marp-cli slides.md --images png
# Watch mode (auto-rebuild on save)
npx @marp-team/marp-cli slides.md --pdf --watch
# Custom theme
npx @marp-team/marp-cli slides.md --pdf --theme ./custom-theme.css
# Server mode (preview in browser)
npx @marp-team/marp-cli slides.md --server --watch
# 1. Claude generates markdown with slide content
# 2. Save as slides.md with Marp frontmatter
# 3. Convert to desired format
# For PDF (best for sharing):
npx @marp-team/marp-cli slides.md --pdf --allow-local-files
# For PPTX (if client needs editable):
npx @marp-team/marp-cli slides.md --pptx
# For HTML (for web hosting):
npx @marp-team/marp-cli slides.md --html
/* custom-theme.css */
@import 'default';
section {
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #e0e0e0;
font-family: 'Inter', sans-serif;
}
h1 {
color: #7c3aed;
border-bottom: 2px solid #7c3aed;
padding-bottom: 0.3em;
}
h2 {
color: #a78bfa;
}
code {
background: rgba(124, 58, 237, 0.2);
color: #c4b5fd;
}
--- separates slides (standard Markdown horizontal rule)$E = mc^2$:rocket: → 🚀npx claudepluginhub jhamidun/claude-code-config-pack --plugin presentationsBuilds a throwaway prototype to answer a design question about UI appearance or state/logic behavior. Guides you through two branches: interactive terminal app for logic validation, or multiple UI variations for visual exploration.