Install
openclaw skills install openclaw-ppt-generatorGenerate PPT documents using Python and python-pptx. No third-party API calls, fully open source.
openclaw skills install openclaw-ppt-generatorGenerate PPT documents using open-source Python library (python-pptx). No third-party API calls required.
scripts/generate_ppt.py - Main script to generate PPT from content# Generate PPT with title and content
python3 scripts/generate_ppt.py --title "My Presentation" --content "Slide 1 content|Slide 2 content"
# Generate PPT with bullet lists
python3 scripts/generate_ppt.py --title "Project Report" --content "Introduction|Features:Feature A,Feature B,Feature C|Conclusion"
# Specify output path
python3 scripts/generate_ppt.py --title "Meeting Notes" --content "Agenda|Discussion|Action Items" --output "meeting.pptx"
scripts/generate_ppt.py with parameters| to separate slides: to separate slide title from bullet list, to separate bullet itemsExample: "Title|Slide1:Item1,Item2,Item3|Slide2:Content"
{
"status": "success",
"ppt_path": "output.pptx"
}