원클릭으로
pptx-generator
生成 PowerPoint (PPTX) 演示文稿。支持创建多页幻灯片、标题页、内容页、图片页、表格页、图表页。用户需要制作 PPT/演示文稿时使用此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
生成 PowerPoint (PPTX) 演示文稿。支持创建多页幻灯片、标题页、内容页、图片页、表格页、图表页。用户需要制作 PPT/演示文稿时使用此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate images using Qwen Image API (Alibaba Cloud DashScope). Use when users request image generation with Chinese prompts or need high-quality AI-generated images from text descriptions.
Transform agents from task-followers into proactive partners.
Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.
自动生成短视频。支持图文轮播、文字动画、卡片风格和 AI 视频大模型生成等多种视频类型。用户需要生成视频时使用此技能。
Process multiple items with progress tracking, checkpointing, and failure recovery.
增强版浏览器自动化。基于 Playwright 实现完整浏览器操作,包括基础导航、截图、点击、表单填写、内容提取、文件上传/下载、多标签页管理。支持反检测和高级自动化。
| name | pptx-generator |
| description | 生成 PowerPoint (PPTX) 演示文稿。支持创建多页幻灯片、标题页、内容页、图片页、表格页、图表页。用户需要制作 PPT/演示文稿时使用此技能。 |
| triggers | null |
| version | 1.0.0 |
| status | stable |
| updated | "2026-03-15T00:00:00.000Z" |
| provides | ["pptx_generator"] |
| os | ["darwin","linux","win32"] |
| clawdbot | {"emoji":"📊","category":"tools","priority":"medium"} |
生成专业的 PowerPoint 演示文稿。
# 健康检查
python3 scripts/check.py
# 从 JSON 描述生成 PPT
python3 scripts/pptx_tool.py generate --input slides.json --output presentation.pptx
# 从 Markdown 生成 PPT(每个 ## 标题成为一页)
python3 scripts/pptx_tool.py from-markdown --input content.md --output presentation.pptx
# 添加单页到已有 PPT
python3 scripts/pptx_tool.py add-slide --file existing.pptx --title "新页面" --content "内容"
{
"title": "演示文稿标题",
"author": "作者",
"slides": [
{
"layout": "title",
"title": "欢迎",
"subtitle": "副标题"
},
{
"layout": "content",
"title": "要点",
"bullets": ["第一点", "第二点", "第三点"]
},
{
"layout": "table",
"title": "数据对比",
"headers": ["指标", "A方案", "B方案"],
"rows": [["性能", "95%", "88%"], ["成本", "低", "高"]]
}
]
}
$OPENCLAW_HOME/workspace/output/pptx/
pip3 install python-pptx)