Convert a Private Equity deal memo into a fully designed, board-ready Gamma presentation in minutes — no PowerPoint, no manual formatting. This page contains everything you need to replicate the system from scratch.

How It Works

Deal Memo (.md file)  →  Node.js Script  →  Gamma API  →  Polished Pitchdeck
  1. Write your deal thesis as a Markdown file (Instructions below on converting file to MD file)
  2. Drop it into the input_memos/ folder
  3. Run one command — the script sends it to Gamma AI and polls until complete
  4. You get a clickable link to a fully designed presentation

Benchmark: 50 distinct deal memos → 50 complete Gamma presentations in under 1 hour, completely hands-free.


Prerequisites


Project Structure

pe-pitchdeck-automation/
├── pe-gamma-generator.js      ← Main automation script
├── package.json               ← Node.js project config
├── .env                       ← Your Gamma API key (never commit this)
├── input_memos/               ← Drop your .md deal memos here
│   └── project-atlas-deal-memo.md
├── output_decks/              ← Auto-created on first run
│   ├── generation-report.md
│   ├── generation-report.json
│   └── processed-memos.json
├── PE-Gamma-Claude-Skill.md   ← Claude system prompt for converting raw docs
└── Gamma-PE-Pitchdeck-Workflow.md

Quick Start

Step 1 — Create the project folder

mkdir pe-pitchdeck-automation
cd pe-pitchdeck-automation
mkdir input_memos output_decks