Claude Code / Codex skills for end-to-end consulting-quality presentations.
Tip
Clone this repo anywhere you keep your skills, then symlink each skill into your agent's skills directory.
git clone <repo-url> ~/skills/presentation
cd ~/skills/presentation
# Claude Code
for s in consultant brand-system deck-design-pdf deck-design-ppt; do
ln -s "$(pwd)/$s" ~/.claude/skills/$s
done
# Codex
for s in consultant brand-system deck-design-pdf deck-design-ppt; do
ln -s "$(pwd)/$s" ~/.codex/skills/$s
doneImportant
Three skills include rendering engines with their own node_modules/. Install after cloning:
cd brand-system && npm install
cd ../deck-design-pdf && npm install
cd ../deck-design-ppt && npm install| Skill | What it does |
|---|---|
| consultant | Strategic analysis and storyboarding — McKinsey, BCG, or Bain methodology |
| brand-system | Color palette, font pairing, and style direction — produces identity.js |
| deck-design-pdf | Pixel-perfect PDF decks via HTML/Tailwind/Playwright |
| deck-design-ppt | Editable PPTX decks via pptxgenjs |
graph LR
A[consultant] -->|storyboard| B[brand-system]
B -->|identity.js| C[deck-design-pdf]
B -->|identity.js| D[deck-design-ppt]
A:::skill
B:::skill
C:::skill
D:::skill
classDef skill fill:#f8f9fa,stroke:#333,stroke-width:1px
Each skill also works independently.
Note
vendor/ folders (fonts, icons, chart libs) are committed. They enable offline rendering with zero network dependency at build time.
node_modules/ folders are gitignored. Run npm install per skill after cloning.
MIT
🤖 Checkout linux.do for more fun stuff about AI!