Skill Ppt Generator

v1.0.0

Generate PowerPoint (.pptx) files from Markdown input. Use when user requests a PPT to be created or exported.

0· 323·3 current·3 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for mlnmg2020/skill-ppt-generator.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Skill Ppt Generator" (mlnmg2020/skill-ppt-generator) from ClawHub.
Skill page: https://clawhub.ai/mlnmg2020/skill-ppt-generator
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install skill-ppt-generator

ClawHub CLI

Package manager switcher

npx clawhub@latest install skill-ppt-generator
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description match the implementation: a small Python script using python-pptx to convert Markdown slides (separated by '---') into a PPTX. No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md explicitly instructs running the included script with an input Markdown file and an output PPTX file. The instructions only reference those files and the python-pptx dependency; they do not ask the agent to read other files, environment variables, or send data externally.
Install Mechanism
There is no automated install spec (instruction-only). This minimizes install risk. The only dependency is python-pptx, which must be installed in the environment manually; no remote downloads or extract steps are included in the skill bundle.
Credentials
The skill requires no environment variables, credentials, or config paths. This is proportionate to the simple file-processing task the skill performs.
Persistence & Privilege
The skill does not request persistent/always-on presence and does not modify system or other-skill settings. It runs the included script on demand and writes only the specified output file.
Assessment
This skill appears internally consistent and low-risk, but before installing: review the included generate_ppt.py (which you have), ensure python-pptx is installed in a controlled environment, and only run the script on Markdown files you trust (it will read any file path you pass and write the specified output). Note the script performs simple parsing (split on '---') and does not fetch remote resources or handle images—expect limited Markdown feature support.

Like a lobster shell, security has layers — review code before you run it.

latestvk972bwbsnc22cw55g5fxjdp4cn839zcn
323downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

PPT Generator Skill

Automatically generate PowerPoint presentations from structured Markdown.

When to Use

USE this skill when:

  • "Create a PPT for me"
  • "Export this as a PowerPoint"
  • "Generate a .pptx file"
  • User provides content and expects a downloadable PPT

Implementation

This skill uses a Python script (generate_ppt.py) that leverages the python-pptx library to parse Markdown and create slides.

Markdown Format

The input Markdown should use --- to separate slides.

# Slide 1 Title

- Bullet point 1
- Bullet point 2

---

## Slide 2 Title

This is a paragraph.

Commands

The skill will call:

python generate_ppt.py --input <input_md_file> --output <output_pptx_file>

Dependencies

  • python-pptx (must be installed in the environment)
  • Python 3.7+

Notes

  • This is a custom skill and must be installed manually.
  • The generate_ppt.py script must be in the same directory.

Comments

Loading comments...