
Md Slides
- 3 installs
- 6 repo stars
- Updated January 30, 2026
- claude-office-skills/skills-hub
This is a copy of md-slides by claude-office-skills - installs and ranking accrue to the original listing.
Helps with ai & agent building tasks.
About
md-slides is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- md-slides
- AI & Agent Building
- AI-coding skill
Md Slides by the numbers
- 3 all-time installs (skills.sh)
- Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/claude-office-skills/skills-hub --skill md-slidesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 6 |
| Last updated | January 30, 2026 |
| Repository | claude-office-skills/skills-hub ↗ |
What it does
Helps with ai & agent building tasks.
Files
Markdown Slides Skill
Overview
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.
How to Use
1. Write or provide Markdown content 2. I'll format it for Marp with proper directives 3. Export to your preferred format (PDF/PPTX/HTML)
Example prompts:
- "Convert my notes to a presentation"
- "Create slides from this markdown"
- "Build a pitch deck using markdown"
- "Generate PDF slides from this outline"
Domain Knowledge
Basic Syntax
---
marp: true
---
# First Slide
Content here
---
# Second Slide
- Bullet 1
- Bullet 2Themes
---
marp: true
theme: default # default, gaia, uncover
---Directives
---
marp: true
theme: gaia
class: lead # Centered title
paginate: true # Page numbers
header: 'Header' # Header text
footer: 'Footer' # Footer text
backgroundColor: #fff
---Images


Columns
<div class="columns">
<div>
## Left
Content
</div>
<div>
## Right
Content
</div>
</div>Example
---
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!
questions@company.comCLI Usage
# 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