Skip to main content Skills Marketplace Discover and explore AI skills built by the community.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Copy promptShow prompt details A direct command skips the review prompt. Inspect the source before running it.
npx skills add https://github.com/fabioc-aloha/Alex_Plug_In --skill gamma-presentationsThe command stays on one line. Scroll horizontally to inspect it before copying.
Prefer a local copy? Download the files currently available to SkillsMP.
Download Zip Downloading... More from this repository name gamma-presentations description tier standard Generate professional presentations using the Gamma API with expert storytelling consulting based on Duarte methodology. applyTo **/*presentation*,**/*slides*,**/*deck*,**/*gamma*,**/*pitch*
Gamma Presentations Skill
Generate professional presentations with expert storytelling consulting based on Duarte methodology.
⚠️ Staleness Watch (Last validated: Mar 2026 — API v1.0 GA): Check developers.gamma.app for endpoint changes and pricing updates.
Slide Break Rules
When using cardSplit: "inputTextBreaks", each \n---\n marks a card break :
# Title Slide
Content
---
# Second Slide
More content
cardSplit: "inputTextBreaks" — Gamma uses --- breaks (ignores numCards)
cardSplit: "auto" (default) — Gamma uses numCards (ignores --- breaks)
Prerequisites
Gamma account (all plans have API access)
API key from
Environment variable: GAMMA_API_KEY
Pricing Tiers Plan Price Max Cards Credits/mo Free $0 10 400 Plus $9/mo 20 1,000 Pro $18/mo 60 4,000 Ultra $90/mo 75 20,000
Rate limit: 50 requests/hour.
API Quick Reference Base URL: https://public-api.gamma.app
Auth: X-API-KEY: <your-api-key>
Endpoint Method Description /v1.0/generationsPOST Generate from text /v1.0/generations/from-templatePOST Create from template (beta) /v1.0/generations/{id}GET Check status, get URLs /v1.0/themesGET List themes /v1.0/foldersGET List folders
Generate Parameters
Required Parameter Type Description inputTextstring Content (max 100k tokens) textModeenum generate, condense, preserve
Format Options Parameter Default Values formatpresentationpresentation, document, social, webpagenumCards10 1-10 (Free), 1-20 (Plus), 1-60 (Pro), 1-75 (Ultra) cardSplitautoauto, inputTextBreaksadditionalInstructionsFree text, 1-2000 chars themeIdTheme ID from /v1.0/themes folderIdsArray of folder IDs
Text Options "textOptions" : {
"amount" : "medium" ,
"tone" : "professional" ,
"audience" : "executives" ,
"language" : "en"
}
Image Options "imageOptions" : {
"source" : "aiGenerated" ,
"model" : "flux-2-pro" ,
"style" : "modern, minimal"
}
Card Options "cardOptions" : {
"dimensions" : "16x9" ,
"headerFooter" : {
"topRight" : { "type" : "image" , "source" : "themeLogo" , "size" : "sm" } ,
"bottomRight" : { "type" : "cardNumber" } ,
"bottomLeft" : { "type" : "text" , "value" : "© 2026 Company" } ,
"hideFromFirstCard" : true ,
"hideFromLastCard" : true
}
}
Positions: topLeft, topRight, topCenter, bottomLeft, bottomRight, bottomCenter
Types: text (+ value), image (+ source, size), cardNumber
Sharing Options "sharingOptions" : {
"workspaceAccess" : "view" ,
"externalAccess" : "noAccess" ,
"emailOptions" : {
"recipients" : [ "user@example.com" ] ,
"access" : "comment"
}
}
Export
AI Image Models
Free Tier (2-10 cr) Model API Value Credits Flux 2 Fast flux-2-klein2 Flux Kontext Fast flux-kontext-fast2 Imagen 3 Fast imagen-3-flash2 Luma Photon Flash luma-photon-flash-12 Qwen Image Fast qwen-image-fast3 Ideogram 3 Turbo ideogram-v3-turbo10
Plus Tier (3-34 cr) Model API Value Credits Qwen Image qwen-image3 Flux 2 Pro flux-2-pro8 Imagen 4 Fast imagen-4-fast10 Luma Photon luma-photon-110 Recraft V4 recraft-v412 Leonardo Phoenix leonardo-phoenix15 Gemini 2.5 Flash gemini-2.5-flash-image20 Nano Banana 2 Mini gemini-3.1-flash-image-mini34
Pro Tier (20-50 cr) Model API Value Credits Flux 2 Flex flux-2-flex20 Flux 2 Max flux-2-max20 Flux Kontext Pro flux-kontext-pro20 Ideogram 3 ideogram-v320 Imagen 4 imagen-4-pro20 Recraft V3 recraft-v320 Gemini 3 Pro Image gemini-3-pro-image20 GPT Image gpt-image-1-medium30 DALL-E 3 dall-e-333 Recraft V3 Vector recraft-v3-svg40 Recraft V4 Vector recraft-v4-svg40 Nano Banana 2 gemini-3.1-flash-image50
Ultra Tier (30-125 cr) Model API Value Credits Imagen 4 Ultra imagen-4-ultra30 Ideogram 3 Quality ideogram-v3-quality45 Gemini 3 Pro Image HD gemini-3-pro-image-hd70 Nano Banana 2 HD gemini-3.1-flash-image-hd75 GPT Image Detailed gpt-image-1-high120 Recraft V4 Pro recraft-v4-pro125
Video Models (Ultra only) Model API Value Credits Leonardo Motion 2 Fast leonardo-motion-2-fast98 Luma Ray 2 Flash luma-ray-2-flash120 Leonardo Motion 2 leonardo-motion-2195 Veo 3.1 Fast veo-3.1-fast300 Luma Ray 2 luma-ray-2350 Veo 3.1 veo-3.1800
Deprecated (auto-redirect) Old New flux-1-quickflux-2-kleinflux-1-proflux-2-proflux-1-ultraflux-2-maxflux-kontext-maxflux-2-flexplayground-3flux-2-proimagen-3-proimagen-4-pro
Create from Template (Beta) POST /v1.0/generations/from-template
Parameter Required Description gammaIdYes Template Gamma ID promptYes Fill instructions themeIdNo Override theme folderIdsNo Save to folders exportAsNo pptx or pdf
Response Handling
POST Response { "generationId" : "gen_abc123" , "status" : "pending" }
GET Completed {
"generationId" : "gen_abc123" ,
"status" : "completed" ,
"gammaUrl" : "https://gamma.app/docs/xyz" ,
"pptxUrl" : "https://..." ,
"pdfUrl" : "https://..." ,
"creditsUsed" : 45
}
Polling Pattern async function waitForGeneration (generationId, apiKey ) {
const maxAttempts = 30 ;
const delayMs = 2000 ;
for (let i = 0 ; i < maxAttempts; i++) {
const res = await fetch (`https://public-api.gamma.app/v1.0/generations/${generationId} ` ,
{ headers : { 'X-API-KEY' : apiKey } });
const data = await res.json ();
if (data.status === 'completed' ) return data;
if (data.status === 'failed' ) throw new Error (data.error );
await new Promise (r => setTimeout (r, delayMs));
}
throw new Error ('Generation timeout' );
}
Example Request curl -X POST https://public-api.gamma.app/v1.0/generations \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: sk-gamma-xxx' \
-d '{
"inputText": "Our startup solves remote collaboration with AI-powered async video.",
"textMode": "generate",
"format": "presentation",
"numCards": 12,
"textOptions": { "tone": "confident, visionary", "audience": "investors" },
"imageOptions": { "source": "aiGenerated", "model": "flux-2-pro" },
"cardOptions": { "dimensions": "16x9" },
"exportAs": "pptx"
}'
MCP Integration Gamma provides a hosted MCP server (Claude, Make, Zapier, Workato, N8N).
Tool Capability generate_contentCreate presentations, docs, webpages, social browse_themesSearch theme library organize_foldersSave to folders
Troubleshooting Problem Solution Insufficient credits Check gamma.app/settings/billing 401 Unauthorized Verify API key Timeout Increase polling (2-3 min images, 10 min video) Token limit Max 100k tokens; use condense mode
CLI Script Location: .github/muscles/gamma-generator.cjs
node .github/muscles/gamma-generator.cjs -f README.md -e pptx --open -n 12 -d 16x9
node .github/muscles/gamma-generator.cjs -t "AI Ethics" --draft --open
node .github/muscles/gamma-generator.cjs -f exports/ai-ethics-draft.md -e pptx --open -n 12 -d 16x9
⚠️ Critical : For file-based generation, always pass both --slides and --dimensions 16x9. Without --slides, Gamma can condense multiple sections into fewer slides. Without --dimensions, Gamma may default to fluid layout.
Option Short Description --topic-tTopic to generate --file-fPath to content file --formatpresentation, document, social, webpage --slides-nNumber of slides (1-75) --toneTone description --audienceTarget audience --language-lLanguage code --image-modelAI model --image-styleImage style --dimensions-dCard dimensions --export-epptx, pdf --output-oOutput directory --openAuto-open result --draftGenerate template only
Related Based on SOC occupation classification