Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
使用python-pptx制作科技风PPT,支持多布局、多图文混排及HTML内容嵌入,轻松生成专业演示文稿。
使用python-pptx制作科技风PPT,支持多布局、多图文混排及HTML内容嵌入,轻松生成专业演示文稿。
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
使用 python-pptx 制作精美PPT,支持科技风设计、图文混排、HTML内容嵌入。
🎨 科技风UI设计 📊 多种布局:标题页、内容页、特性网格、对比页 🖼️ 支持插入图片 🔗 支持HTML内容(通过截图或链接)
pip install python-pptx pillow
python ppt_maker.py --title "演示标题" --content "内容1|内容2|内容3" --output demo.pptx
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")
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 - 企业风格(蓝+白)
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.