zhigangliu-bot

GordenPPTSkill — AI skill for Claude Code

AI community

AI-friendly PPT builder skill: 17 hand-polished Chinese PPTX templates + non-destructive text-only editing tools (python-pptx based).

How to install GordenPPTSkill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open zhigangliu-bot/GordenPPTSkill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What GordenPPTSkill does

AI-friendly PPT builder skill: 17 hand-polished Chinese PPTX templates + non-destructive text-only editing tools (python-pptx based). Pick a template, write edits.json, build a real .pptx with the layout intact. Personal/research use only.

Alternatives in AI

  • Guizang Ppt Skill — AI-agent Skill for generating polished HTML slide decks: editorial magazine and Swiss layouts, image prompts 24.9k ★
  • Repomix — 📦 Repomix is a powerful tool that packs your entire repository into a single, AI-friendly file 22.7k ★
  • Paritok 4b V1 — Non-destructive compression gateway for AI coding agents 1.4k ★

README

Gorden PPT Skill

史上最强原生PPT Skill,更适合中国宝宝。生成的效果不让你震惊,你来打我。

⚠️ **非商业使用**:本仓库及内置模板**仅供个人学习与研究**,禁止任何商业用途。

**支持定制私有化模板**:如果你想要Agent能按你公司的PPT模板来生成PPT,可以加我微信**duge360**定制。

交流群

加我微信duge360,拉你进PPT Skill交流群,AI话题也可以讨论。

几大特色

1、能生成信息密度高、排版复杂、看起来高大上的PPT,也支持生成简约、商务风格的PPT。适合国企、互联网大厂使用。

2、兼容所有模型,DeepSeek、小米Mimo、Claude、GPT均实测过,国产模型也能完成的非常好。

3、技能自动更新机制:如果我更新了可选用的PPT模板,使用技能时会自动更新技能。技能像软件一样可以更新

效果展示

以下是用本 Skill 生成的实际页面(信息密度高、排版复杂、商务质感):

效果展示 1 - 战略定位分析

效果展示 2 - 价值冰山模型

效果展示 3 - 产品化闭环

使用方法

极其简单,把这段提示词发给你的Agent即可:

安装这个Skill:https://github.com/GordenSun/GordenPPTSkill 然后使用这个Skill做一个复杂、豪华的PPT,读取本地XXX文件,来介绍XXX项目

谁要看这个

  • 想给自己用的 AI 助手装一个"做 PPT"技能的人:请读 SKILL.md
  • 想看本项目目录怎么组织:继续往下看本文件
  • 想理解模板分类 / 推荐:请读 templates/INDEX.md

快速开始(命令行)

# 1. 确认依赖
python3 -c "import pptx; print(pptx.__version__)"   # python-pptx 1.0+
soffice --version    # LibreOffice (仅渲染预览时需要)
which pdftoppm       # poppler   (仅渲染预览时需要)

# 2. 选定模板 + 写 edits.json,跑构建
python3 scripts/build_pptx.py \
    templates/minimal-business-summary/template.pptx \
    edits.json \
    out/final.pptx \
    --detail templates/minimal-business-summary/detail.json

# 3. (可选) 渲染最终预览图
python3 scripts/render_slides.py out/final.pptx out/preview --dpi 144

字体环境

模板大量使用 `微软雅黑`。如果你的机器没装它,配 `~/.config/fontconfig/fonts.conf` 加一条 alias:


  微软雅黑
  
    WenQuanYi Micro Hei
    DengXian
    Noto Sans SC
    PingFang SC
  

(`brew install --cask font-noto-sans-sc`,或下载 WenQuanYi Micro Hei 放进 `~/Library/Fonts/` 并 `fc-cache -f`。)

目录速览

SKILL.md         # AI 入口文档
VER