工作报告PPT生成技能
生成工作汇报PPT。使用python-pptx库创建演示文稿,用于生成工作周报、月报、项目汇报等。第一页标题用宋体48号,内容页标题36号,正文18号,总页数控制在10页以内,最后一页为"谢谢观看"。
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 84 · 0 current installs · 0 all-time installs
by@xwzai
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name, description, SKILL.md, and the included script all match: they generate a work-report PPT with specified fonts/sizes and a max page count. No unrelated capabilities (cloud access, system administration, etc.) are requested.
Instruction Scope
Runtime instructions only invoke the included Python script with CLI args and open a local file. The script reads only its arguments and writes a PPTX into the user's ~/Documents (or a provided --output). It does not read other system files, environment variables, or contact external endpoints.
Install Mechanism
There is no install spec (lowest-risk), but the SKILL.md and script assume a Python 3 interpreter and the python-pptx package. The skill does not declare or automate installing that dependency—users should ensure python3 and python-pptx are present.
Credentials
The skill requires no environment variables, credentials, or config paths. The script writes only to the user's Documents folder (or a specified output) which is proportionate to its purpose.
Persistence & Privilege
The skill is not always-enabled and does not request persistent elevated privileges or modify other skills or global settings. It runs only when invoked.
Assessment
This skill appears coherent and local-only: it generates PPTX files using python-pptx and saves them to ~/Documents by default. Before installing/use: (1) ensure you have Python 3 and the python-pptx package installed, (2) confirm you are comfortable the script will write files to your Documents folder or any --output path you provide (it can overwrite an explicitly passed path), and (3) verify the skill source if you obtained it from an untrusted location—run the script in a sandbox or inspect it (it's short and readable) if you have any doubt. No network access or credentials are requested by the skill.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Work Report PPT Generator
使用 Python python-pptx 库生成工作汇报演示文稿。
输出文件
PPT 保存到:~/Documents/工作汇报_<日期>.pptx
使用方法
基本命令
python3 ~/Desktop/github/openclaw/skills/work-report/scripts/generate_ppt.py \
--title "本周工作汇报" \
--sections "项目进展:完成了用户登录功能开发|问题与挑战:后端接口响应慢|下周计划:优化接口性能" \
--output ~/Documents/my_report.pptx
参数说明
--title: 汇报标题(必填)--sections: 内容板块,格式为"板块名:内容|板块名:内容"--output: 输出文件路径(可选,默认 ~/Documents/工作汇报_日期.pptx)
内容格式
板块名1:板块内容的第一段|板块名1:板块内容的第二段
板块名2:板块内容
用 | 分隔同一板块的多段内容,用 : 分隔板块名和内容。
示例
生成周报
python3 ~/Desktop/github/openclaw/skills/work-report/scripts/generate_ppt.py \
--title "第12周工作汇报" \
--sections "本周完成:完成了用户管理模块的开发|本周完成:修复了5个已知bug|遇到问题:测试环境数据库连接不稳定|下周计划:完成订单管理模块开发|下周计划:准备UAT测试"
生成项目汇报
python3 ~/Desktop/github/openclaw/skills/work-report/scripts/generate_ppt.py \
--title "XX项目进度汇报" \
--sections "项目概况:项目总进度60%,团队5人|本周进展:完成核心功能开发,进入测试阶段|风险评估:人员紧张,可能影响进度|后续安排:增加资源,确保按期交付"
直接打开生成的PPT
open ~/Documents/工作汇报_2026-03-12.pptx
PPT 格式规范
- 首页: 标题居中,宋体48号,加粗
- 内容页: 标题36号,正文18号
- 页数: 最多10页(首页 + 内容页 + 谢谢观看页)
- 布局: 标题+内容的简单布局
在 OpenClaw 中使用
直接告诉 OpenClaw:
- "帮我生成一份本周工作汇报PPT"
- "创建一个项目进度汇报"
- "生成月度工作总结演示文稿"
OpenClaw 会调用此 skill 生成 PPT。
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
