claude-office-skills/md-slides
>
npx skills add https://github.com/claude-office-skills/skills --skill md-slides
This skill enables creation of presentations from pure Markdown using Marp. Write slides in familiar Markdown syntax and export to PDF, PPTX, or HTML with professional themes.
Example prompts:
---
marp: true
---
# First Slide
Content here
---
# Second Slide
- Bullet 1
- Bullet 2
---
marp: true
theme: default # default, gaia, uncover
---
---
marp: true
theme: gaia
class: lead # Centered title
paginate: true # Page numbers
header: 'Header' # Header text
footer: 'Footer' # Footer text
backgroundColor: #fff
---



<div class="columns">
<div>
## Left
Content
</div>
<div>
## Right
Content
</div>
</div>
---
marp: true
theme: gaia
paginate: true
---
<!-- _class: lead -->
# Project Update
Q4 2024 Review
---
# Highlights
- Revenue: +25%
- Users: +50%
- NPS: 72
---
# Roadmap
| Q1 | Q2 | Q3 | Q4 |
|----|----|----|-----|
| MVP | Beta | Launch | Scale |
---
<!-- _class: lead -->
# Thank You!
[email protected]
# Install
npm install -g @marp-team/marp-cli
# Convert
marp slides.md -o presentation.pdf
marp slides.md -o presentation.pptx
marp slides.md -o presentation.html
Take claude-office-skills/md-slides from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm.
Without those the skill loads but fails at the first command.