gamma-core-workflow-b

Featured

Generate from templates, retrieve exports, and manage sharing via Gamma API. Use when creating content from template gammas, downloading PDF/PPTX/PNG exports, or configuring sharing and folder organization. Trigger: "gamma template", "gamma export", "gamma download PDF", "gamma PPTX", "gamma sharing", "gamma from template".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Gamma Core Workflow B: Templates & Export ## Overview Use Gamma's template-based generation (`POST /v1.0/generations/from-template`) and export retrieval (`GET /v1.0/generations/{id}/files`) endpoints. Template generation lets you replicate a single-page gamma template across multiple variations. Export retrieval gives you downloadable PDF, PPTX, and PNG files. ## Prerequisites - Completed `gamma-core-workflow-a` - A template gamma with exactly one page (created in the Gamma app) - Understanding of the generate-poll-retrieve pattern ## Key Concepts - **Template gamma**: A regular gamma with exactly one page, used as a repeatable template - **gammaId**: Found in the gamma URL or copied from the app - **Export URLs**: Temporary download links returned after generation — download promptly as they expire ## Instructions ### Step 1: Create from Template ```typescript import { createGammaClient, pollUntilDone } from "./lib/gamma"; const gamma = createGammaClient({ apiKey: process.env.GAMMA_API_KEY! }); // POST /v1.0/generations/from-template // The template gamma MUST have exactly one page async function generateFromTemplate( templateGammaId: string, prompt: string, options: { themeId?: string; exportAs?: "pdf" | "pptx" | "png"; imageStyle?: string; } = {} ) { const { generationId } = await gamma.generateFromTemplate({ gammaId: templateGammaId, prompt, themeId: options.themeId, exportAs: options.exportAs, imageOptions: options....

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

gamma-core-workflow-a

Generate presentations, documents, and webpages via Gamma API. Use when creating content from text prompts, configuring themes, image styles, text modes, and output formats. Trigger: "gamma generate", "gamma presentation from text", "gamma AI slides", "gamma create deck", "gamma content generation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

gamma-hello-world

Generate your first Gamma presentation via the API. Use when learning the generate-poll-retrieve workflow, testing API connectivity, or creating a minimal example. Trigger: "gamma hello world", "gamma quick start", "first gamma presentation", "gamma example", "gamma test".

2,266 Updated today
jeremylongshore
AI & Automation Featured

gamma-sdk-patterns

Reusable patterns for the Gamma REST API (no SDK exists). Use when building typed wrappers, generation helpers, template factories, or error handling for Gamma. Trigger: "gamma patterns", "gamma client wrapper", "gamma best practices", "gamma API helper", "gamma code structure".

2,266 Updated today
jeremylongshore
AI & Automation Featured

gamma-migration-deep-dive

Deep dive into migrating to Gamma from other presentation platforms. Use when migrating from PowerPoint, Google Slides, Canva, or other presentation tools to Gamma. Trigger with phrases like "gamma migration", "migrate to gamma", "gamma import", "gamma from powerpoint", "gamma from google slides".

2,266 Updated today
jeremylongshore
AI & Automation Featured

gamma-webhooks-events

Handle Gamma webhooks and events for real-time updates. Use when implementing webhook receivers, processing events, or building real-time Gamma integrations. Trigger with phrases like "gamma webhooks", "gamma events", "gamma notifications", "gamma real-time", "gamma callbacks".

2,266 Updated today
jeremylongshore