← Back to Skills Marketplace
mrgoodb

Gamma Presentations

by MrGoodB · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2554
Downloads
1
Stars
11
Active Installs
1
Versions
Install in OpenClaw
/install gamma-presentations
Description
Create presentations, documents, social posts, and websites using Gamma's AI API. Use when asked to create slides, presentations, decks, documents, or web content via Gamma.
README (SKILL.md)

Gamma API Skill

Create presentations and documents programmatically via Gamma's API.

Setup

  1. Get API key from https://developers.gamma.app
  2. Store in environment: export GAMMA_API_KEY=sk-gamma-xxx Or add to TOOLS.md: Gamma API Key: sk-gamma-xxx

Authentication

Base URL: https://public-api.gamma.app/v1.0
Header: X-API-KEY: \x3Cyour-api-key>

Generate Content

curl -X POST https://public-api.gamma.app/v1.0/generations \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: $GAMMA_API_KEY" \
  -d '{
    "inputText": "Your content here",
    "textMode": "generate|condense|preserve",
    "format": "presentation|document|social|webpage"
  }'

Response: {"generationId": "xxx"}

Check Status

curl https://public-api.gamma.app/v1.0/generations/\x3CgenerationId> \
  -H "X-API-KEY: $GAMMA_API_KEY"

Response (completed): {"status": "completed", "gammaUrl": "https://gamma.app/docs/xxx", "credits": {...}}

Poll every 10-20s until status: "completed".

Key Parameters

Parameter Values Notes
textMode generate, condense, preserve generate=expand, condense=summarize, preserve=keep exact
format presentation, document, social, webpage Output type
numCards 1-60 (Pro), 1-75 (Ultra) Number of slides/cards
cardSplit auto, inputTextBreaks Use `\
---\
` in inputText for manual breaks
exportAs pdf, pptx Optional export format

Optional Parameters

{
  "additionalInstructions": "Make titles catchy",
  "imageOptions": {
    "source": "aiGenerated|unsplash|giphy|webAllImages|noImages",
    "model": "imagen-4-pro|flux-1-pro",
    "style": "photorealistic, modern"
  },
  "textOptions": {
    "amount": "brief|medium|detailed|extensive",
    "tone": "professional, inspiring",
    "audience": "tech professionals",
    "language": "en"
  },
  "cardOptions": {
    "dimensions": "fluid|16x9|4x3|1x1|4x5|9x16"
  }
}

Note: textOptions.tone and textOptions.audience are ignored when textMode is preserve.

Other Endpoints

  • GET /themes — List available themes (use themeId in generation)
  • GET /folders — List folders (use folderIds in generation)

Workflow

  1. Check for API key in environment ($GAMMA_API_KEY) or TOOLS.md
  2. Build inputText with content (can include image URLs inline)
  3. POST to /generations → get generationId
  4. Poll /generations/{id} until status: "completed"
  5. Return gammaUrl to user
Usage Guidance
This skill appears to do what it says (call Gamma's public API) but its metadata omits the fact that it needs a GAMMA_API_KEY and it tells the agent to look in or write to TOOLS.md. Before installing or using it: (1) do not store secrets in shared files like TOOLS.md unless you control who can read them — prefer ephemeral environment variables or a secrets manager; (2) ask the publisher to update the skill metadata to declare GAMMA_API_KEY and any config paths so you can review required privileges; (3) verify the API base URL and the developer/source (there is no homepage listed); (4) only provide an API key with the minimum scope required and be cautious about letting the agent autonomously access persistent keys. If you cannot confirm the publisher or the missing metadata, treat this skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: gamma-presentations Version: 1.0.0 The skill bundle is benign. It provides clear instructions for an AI agent to interact with the Gamma API for content generation. All network calls are directed to the legitimate `https://public-api.gamma.app` domain, and the `GAMMA_API_KEY` is used solely for authentication to this service. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, prompt injection attempts against the agent, or obfuscation.
Capability Assessment
Purpose & Capability
The SKILL.md and description match (calling Gamma's API to generate presentations/documents/web pages). However the instructions require an API key (GAMMA_API_KEY) while the skill metadata declares no required environment variables or config paths — the skill's declared requirements do not match what it actually needs to operate.
Instruction Scope
Runtime instructions tell the agent to look for an API key in the environment ($GAMMA_API_KEY) or in TOOLS.md and to POST/poll the Gamma public API. Asking the agent to read or store secrets in TOOLS.md is out-of-band relative to the declared metadata and grants the agent a path to persistent storage of credentials that isn't documented in the registry.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only, so nothing is written to disk by an installer. This is the lowest install risk.
Credentials
The instructions require a single API key (GAMMA_API_KEY), which is reasonable for the stated purpose, but the fact that the registry lists no required env vars is inconsistent. Additionally, suggesting putting the key in TOOLS.md (a persistent file) is disproportionate and risky for secret handling unless clearly documented and secured.
Persistence & Privilege
The skill does not request always:true and has no install, but the guidance to add the API key to TOOLS.md effectively asks for persistent storage of credentials outside the declared config. That increases the blast radius if the file is accessible to other skills or processes.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gamma-presentations
  3. After installation, invoke the skill by name or use /gamma-presentations
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release - create presentations, docs, social posts and webpages via Gamma API
Metadata
Slug gamma-presentations
Version 1.0.0
License
All-time Installs 11
Active Installs 11
Total Versions 1
Frequently Asked Questions

What is Gamma Presentations?

Create presentations, documents, social posts, and websites using Gamma's AI API. Use when asked to create slides, presentations, decks, documents, or web content via Gamma. It is an AI Agent Skill for Claude Code / OpenClaw, with 2554 downloads so far.

How do I install Gamma Presentations?

Run "/install gamma-presentations" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gamma Presentations free?

Yes, Gamma Presentations is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Gamma Presentations support?

Gamma Presentations is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gamma Presentations?

It is built and maintained by MrGoodB (@mrgoodb); the current version is v1.0.0.

💬 Comments