ppt-generator
Installation
SKILL.md
PPT Generator Skill
专注于 PPT 生成的完整解决方案。
⚠️ 路径解析(每次执行前必须先运行)
此 skill 支持项目级安装(<project>/.claude/skills/)和全局安装(~/.claude/skills/)。执行任何命令前,先确定 SKILLS_DIR:
SKILLS_DIR=$(python3 -c "
from pathlib import Path
cwd = Path.cwd()
for p in [cwd, *cwd.parents]:
s = p / '.claude/skills'
if (s / 'ppt-generator').exists():
print(s); exit()
print(Path.home() / '.claude/skills')
")