Best fit
- pptx) 演示文稿。Use when 用户需要把一篇论文/文章/大纲做成幻灯片、slides、演示文稿、PPT、deck。Don't use when 只需纯文本总结、生成 Word/PDF、或修改已有 pptx 的单个像素级样式。
bojieli/ai-agent-book
Useful for office productivity workflows; the detail page covers purpose, installation, and practical steps.
npx skills add https://github.com/bojieli/ai-agent-book --skill "chapter2/agent-skills-ppt/skills/pptx"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Limited to facts supported by the pinned source
从论文、大纲或结构化文本生成 PowerPoint (.
npx skills add https://github.com/bojieli/ai-agent-book --skill "chapter2/agent-skills-ppt/skills/pptx"The pinned source contains about 53 English words and 3 usable sections. That evidence supports a source profile, not a complete guide.
53 source words · 3 usable sections
Best fit
What the source actually contains
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
把一份来源文本(论文 / 大纲)转成 8-12 页的演示文稿,按以下步骤:
工具:runskillscript(name="pptx", script="generatepptx.py", payload=)
如需了解版式、配色、python-pptx 的实现细节,或排查生成问题, 再用 readskillfile 读取本 Skill 内的: - reference.md —— 版式、配色与 python-pptx 技术细节 - scripts/generatepptx.py —— 生成器源码本身
Choose a different workflow
Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the u
A separate implementation from K-Dense-AI/scientific-agent-skills; compare its source, maintenance signals, and permission requirements.
Open source detailUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the u
A separate implementation from anthropics/skills; compare its source, maintenance signals, and permission requirements.
Open source detailRead, generate, and adjust PowerPoint slides, layouts, and templates. Useful for executive decks, training material, and product reviews.
A separate implementation from nexu-io/open-design; compare its source, maintenance signals, and permission requirements.
Open source detailFAQ
The source record exposes this install command: npx skills add https://github.com/bojieli/ai-agent-book --skill "chapter2/agent-skills-ppt/skills/pptx". Inspect the command and pinned source before running it.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
Compare before choosing
These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.
Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the u
Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the u
Read, generate, and adjust PowerPoint slides, layouts, and templates. Useful for executive decks, training material, and product reviews.
把一份来源文本(论文 / 大纲)转成 8-12 页的演示文稿,按以下步骤:
scripts/generate_pptx.py
(通过 run_skill_script 工具),传入下面约定的 JSON payload。工具:run_skill_script(name="pptx", script="generate_pptx.py", payload=<JSON字符串>)
payload 的 JSON schema:
{
"title": "演示文稿主标题(通常等于论文标题)",
"subtitle": "副标题,通常是作者或来源,可留空",
"slides": [
{"title": "页标题", "bullets": ["要点1", "要点2", "要点3"]}
]
}
约束:
slides 至少 8 项(加上自动生成的标题页,总页数落在 8-12 页区间)。bullets 建议 3-5 条。如需了解版式、配色、python-pptx 的实现细节,或排查生成问题,
再用 read_skill_file 读取本 Skill 内的:
reference.md —— 版式、配色与 python-pptx 技术细节scripts/generate_pptx.py —— 生成器源码本身