skills$openclaw/md-slides
lijie4204613406.8k

by lijie420461340

md-slides – OpenClaw Skill

md-slides is an OpenClaw Skills integration for writing workflows. Create presentations from Markdown using Marp - simple syntax, professional output

6.8k stars9.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namemd-slides
descriptionCreate presentations from Markdown using Marp - simple syntax, professional output OpenClaw Skills integration.
ownerlijie420461340
repositorylijie420461340/md-slides
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lijie420461340/md-slides
last updatedFeb 7, 2026

Maintainer

lijie420461340

lijie420461340

Maintains md-slides in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
278 B
SKILL.md
2.2 KB
SKILL.md

name: md-slides description: Create presentations from Markdown using Marp - simple syntax, professional output author: claude-office-skills version: "1.0" tags: [presentation, marp, markdown, pdf, pptx] models: [claude-sonnet-4, claude-opus-4] tools: [computer, code_execution, file_operations] library: name: marp url: https://github.com/marp-team/marp stars: 3.1k

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 2

Themes

---
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

![width:500px](image.png)
![bg](background.jpg)
![bg left:40%](sidebar.jpg)

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.com

CLI 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

Resources

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install md-slides?

Run openclaw add @lijie420461340/md-slides in your terminal. This installs md-slides into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lijie420461340/md-slides. Review commits and README documentation before installing.