← All skills
Tencent SkillHub · Developer Tools

PPT制作

使用python-pptx制作科技风PPT,支持多布局、多图文混排及HTML内容嵌入,轻松生成专业演示文稿。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

使用python-pptx制作科技风PPT,支持多布局、多图文混排及HTML内容嵌入,轻松生成专业演示文稿。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
ppt_maker.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

ppt-maker

使用 python-pptx 制作精美PPT,支持科技风设计、图文混排、HTML内容嵌入。

功能

🎨 科技风UI设计 📊 多种布局:标题页、内容页、特性网格、对比页 🖼️ 支持插入图片 🔗 支持HTML内容(通过截图或链接)

安装依赖

pip install python-pptx pillow

命令行

python ppt_maker.py --title "演示标题" --content "内容1|内容2|内容3" --output demo.pptx

Python API

from ppt_maker import PresentationBuilder builder = PresentationBuilder() builder.add_title_slide("标题", "副标题") builder.add_content_slide("章节标题", ["要点1", "要点2", "要点3"]) builder.add_feature_grid([("特性1", "描述1"), ("特性2", "描述2")]) builder.save("output.pptx")

示例:OpenClaw 介绍

from ppt_maker import PresentationBuilder, Theme prs = PresentationBuilder(theme=Theme.TECH) # 封面 prs.add_title_slide("OpenClaw", "您的跨平台AI个人助理") # 内容页 prs.add_content_slide("什么是 OpenClaw?", [ "开源免费的自托管 AI 网关", "连接 WhatsApp、Telegram、Discord 等多平台", "数据完全掌控在自己手中" ], icon="🤖") # 特性网格 prs.add_feature_grid([ ("多通道网关", "一个 Gateway 同时连接多个平台"), ("插件扩展", "支持 Mattermost 等更多插件"), ("多 Agent 路由", "隔离的会话空间"), ("移动节点", "配对 iOS/Android 设备") ]) # 保存 prs.save("OpenClaw介绍.pptx")

主题

Theme.TECH - 科技风(深蓝+青色) Theme.MODERN - 现代简约(黑白灰) Theme.CORPORATE - 企业风格(蓝+白)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • ppt_maker.py Scripts