Install
openclaw skills install skill-ppt-generatorGenerate PowerPoint (.pptx) files from Markdown input. Use when user requests a PPT to be created or exported.
openclaw skills install skill-ppt-generatorAutomatically generate PowerPoint presentations from structured Markdown.
✅ USE this skill when:
This skill uses a Python script (generate_ppt.py) that leverages the python-pptx library to parse Markdown and create slides.
The input Markdown should use --- to separate slides.
# Slide 1 Title
- Bullet point 1
- Bullet point 2
---
## Slide 2 Title
This is a paragraph.
The skill will call:
python generate_ppt.py --input <input_md_file> --output <output_pptx_file>
python-pptx (must be installed in the environment)generate_ppt.py script must be in the same directory.