원클릭으로
ppt-generator-skill
智能 PPT 生成器。支持 7 种视觉风格(乐高/波普/黏土/黑白/商务/学术/科技),具备根据内容自动推荐风格、生成大纲、绘制配图并组装成片的全自动能力。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
智能 PPT 生成器。支持 7 种视觉风格(乐高/波普/黏土/黑白/商务/学术/科技),具备根据内容自动推荐风格、生成大纲、绘制配图并组装成片的全自动能力。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Knowledge comic creator supporting multiple styles (Logicomix/Ligne Claire, Ohmsha manga guide). Creates original educational comics with detailed panel layouts and sequential image generation. Use when user asks to create "知识漫画", "教育漫画", "biography comic", "tutorial comic", or "Logicomix-style comic".
Smart article illustration skill. Analyzes article content and generates illustrations at positions requiring visual aids with multiple style options. Use when user asks to "add illustrations to article", "generate images for article", or "illustrate article".
Generate elegant cover images for articles. Analyzes content and creates eye-catching hand-drawn style cover images with multiple style options. Use when user asks to "generate cover image", "create article cover", or "make a cover for article".
Generate professional slide deck images from content. Creates comprehensive outlines with style instructions, then generates individual slide images. Use when user asks to "create slides", "make a presentation", "generate deck", or "slide deck".
Cross-platform image compression skill. Converts images to WebP by default with PNG-to-PNG support. Uses system tools (sips, cwebp, ImageMagick) with Sharp fallback.
Image generation skill using Gemini Web. Generates images from text prompts via Google Gemini. Also supports text generation. Use as the image generation backend for other skills like cover-image, xhs-images, article-illustrator.
| name | PPT Generator Skill |
| description | 智能 PPT 生成器。支持 7 种视觉风格(乐高/波普/黏土/黑白/商务/学术/科技),具备根据内容自动推荐风格、生成大纲、绘制配图并组装成片的全自动能力。 |
本技能将“内容创作”与“视觉设计”合二为一,只需提供一段文字资料,即可全自动生成一份高质量、有设计感的 PPT。
适合:教育科普、创意营销、个人品牌、轻松话题
适合:汇报路演、学术报告、技术发布 5. 🎓 学术深蓝 (Academic Blue) * 视觉:纯白底 + 深蓝标题 + 红色强调,严谨的框架图。 * 适用:医疗、科研、学术论文汇报。 6. 👔 经典商务 (Corporate Navy) * 视觉:深海蓝底 + 金色衬线体,高端大气。 * 适用:融资计划书、高管汇报、年度总结。 7. 🔬 原力科技 (Tech Future) * 视觉:黑底 + 霓虹线条,数据可视化风格。 * 适用:AI 产品发布、互联网技术分享。
用户提供原始文本,Agent 自动分析调性并推荐风格。
用户:“帮我把这篇关于 AI 代理的文章做成 PPT。” Agent:“这篇文章讲的是无需人工介入的未来工作流,比较前卫。推荐使用 [🔬 原力科技风] 展现未来感,或者 [🧱 乐高风格] 来拆解 Agent 是如何像搭积木一样工作的。您选哪个?”
选定风格后,Agent 调用对应的 Prompt Template (位于 templates/),让 LLM 生成结构化的 JSON 内容(包含每页标题、正文、配图提示词)。
Agent 自动调用绘图工具(如 Imagen/Midjourney),根据 JSON 中的提示词批量生成每一页的配图。
运行 generate_styled_ppt.py,将文字与生成的图片自动组装成最终的 .pptx 文件。
.agent/skills/ppt-generator/
├── SKILL.md # 技能说明书
├── generate_styled_ppt.py # 通用组装脚本 (支持 JSON -> PPTX)
├── templates/ # 高阶提示词模版
│ ├── lego_style_prompt.md
│ ├── vintage_pop_art_prompt.md
│ ├── clay_style_prompt.md
│ └── dan_koe_style_prompt.md
├── styles/ # 样式配置文件 (颜色、字体)
│ ├── academic_blue_style.json
│ └── yuanli_style.json
└── prompts/ # 旧版提示词存档
# 组装 PPT (当 JSON 和图片都准备好后)
python3 .agent/skills/ppt-generator/generate_styled_ppt.py \
--input "presentation_content.json" \
--output "final_presentation.pptx"