# Send PPT制作 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dragon-ppt-maker",
    "name": "PPT制作",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dragon015/dragon-ppt-maker",
    "canonicalUrl": "https://clawhub.ai/dragon015/dragon-ppt-maker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dragon-ppt-maker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dragon-ppt-maker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ppt_maker.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dragon-ppt-maker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T20:43:37.624Z",
      "expiresAt": "2026-05-13T20:43:37.624Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dragon-ppt-maker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dragon-ppt-maker",
        "contentDisposition": "attachment; filename=\"dragon-ppt-maker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dragon-ppt-maker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dragon-ppt-maker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dragon-ppt-maker",
    "downloadUrl": "https://openagent3.xyz/downloads/dragon-ppt-maker",
    "agentUrl": "https://openagent3.xyz/skills/dragon-ppt-maker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dragon-ppt-maker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dragon-ppt-maker/agent.md"
  }
}
```
## Documentation

### 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 - 企业风格（蓝+白）
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dragon015
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T20:43:37.624Z
- Expires at: 2026-05-13T20:43:37.624Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dragon-ppt-maker)
- [Send to Agent page](https://openagent3.xyz/skills/dragon-ppt-maker/agent)
- [JSON manifest](https://openagent3.xyz/skills/dragon-ppt-maker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dragon-ppt-maker/agent.md)
- [Download page](https://openagent3.xyz/downloads/dragon-ppt-maker)