Ppt generation
Skill yrris/pro-agent/cognition/runtime/skills/ppt-generation
多智能体应用与任务执行平台
npx -y skills add yrris/pro-agent --skill ppt-generationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 23 stars23 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
生成可下载的演示文稿(.pptx)或独立 HTML 文档(Markdown 转网页)。
SKILL.md
1.0 KB, as published. Nobody here has run it
文稿生成(PPT / HTML 文档)
把整理好的内容产出为可交付文件。两个脚本按需选:
1. PPT(build_pptx.py)
script_runner(
skill="ppt-generation",
script="build_pptx.py",
script_args={
"title": "季度业务汇报",
"subtitle": "2026 Q2",
"slides": [
{"title": "市场概览", "bullets": ["要点一", "要点二"]},
{"title": "数据结论", "bullets": ["同比 +12%", "环比 +3%"]}
]
}
)
产出 presentation.pptx。每页 3-6 个要点为宜,内容须来自对话中已确认的信息。
2. HTML 文档(md_to_html.py)
script_runner(
skill="ppt-generation",
script="md_to_html.py",
script_args={"title": "调研报告", "markdown": "# 标题\n\n正文……"}
)
产出 document.html(自包含样式的独立网页,浏览器可直接打开/打印)。