← 返回 Skills 市场
Gamma
作者
Lucas Synnott
· GitHub ↗
· v1.0.0
3537
总下载
3
收藏
10
当前安装
1
版本数
在 OpenClaw 中安装
/install gamma
功能描述
Generate AI-powered presentations, documents, and social posts using Gamma.app API. Use when user asks to create a presentation, pitch deck, slide deck, document, or social media carousel. Triggers on requests like "create a presentation about X", "make a pitch deck", "generate slides", or "create a Gamma about X".
使用说明 (SKILL.md)
Gamma.app API
Generate beautiful presentations, documents, and social posts with AI.
Setup
export GAMMA_API_KEY="sk-gamma-xxxxx"
Quick Commands
# Generate a presentation
{baseDir}/scripts/gamma.sh generate "Your content or topic here"
# Generate with options
{baseDir}/scripts/gamma.sh generate "Content" --format presentation --cards 12
# Check generation status
{baseDir}/scripts/gamma.sh status \x3CgenerationId>
# List recent generations (if supported)
{baseDir}/scripts/gamma.sh list
Script Usage
Generate
{baseDir}/scripts/gamma.sh generate "\x3Ccontent>" [options]
Options:
--format presentation|document|social (default: presentation)
--cards Number of cards/slides (default: 10)
--instructions Additional instructions for styling/tone
--amount concise|detailed (default: detailed)
--tone e.g., "professional", "casual", "technical"
--audience e.g., "investors", "developers", "general"
--image-source aiGenerated|web|none (default: aiGenerated)
--image-style illustration|photo|mixed (default: illustration)
--wait Wait for completion and return URL
Examples
# Simple presentation
{baseDir}/scripts/gamma.sh generate "The future of AI automation" --wait
# Pitch deck with specific styling
{baseDir}/scripts/gamma.sh generate "$(cat pitch.md)" \
--format presentation \
--cards 15 \
--instructions "Make it a professional pitch deck for investors" \
--tone "professional" \
--audience "investors" \
--wait
# Social carousel
{baseDir}/scripts/gamma.sh generate "5 tips for productivity" \
--format social \
--cards 5 \
--wait
# Document/report
{baseDir}/scripts/gamma.sh generate "Q4 2025 Performance Report" \
--format document \
--amount detailed \
--wait
API Reference
Endpoint
POST https://public-api.gamma.app/v1.0/generations
Headers
X-API-KEY: \x3Cyour-api-key>
Content-Type: application/json
Request Body
{
"inputText": "Your content (1-750,000 chars)",
"textMode": "generate",
"format": "presentation|document|social",
"numCards": 10,
"additionalInstructions": "Styling instructions",
"textOptions": {
"amount": "concise|detailed",
"tone": "professional",
"audience": "target audience"
},
"imageOptions": {
"source": "aiGenerated|web|none",
"model": "flux-kontext-pro",
"style": "illustration|photo"
},
"cardOptions": {
"dimensions": "fluid|16x9|4x3|1x1|4x5|9x16"
}
}
Response
Initial response:
{"generationId": "abc123"}
Poll for status:
GET https://public-api.gamma.app/v1.0/generations/\x3CgenerationId>
Completed response:
{
"generationId": "abc123",
"status": "completed",
"gammaUrl": "https://gamma.app/docs/xxxxx",
"credits": {"deducted": 150, "remaining": 7500}
}
Format Options
| Format | Dimensions | Use Case |
|---|---|---|
| presentation | fluid, 16x9, 4x3 | Pitch decks, slide shows |
| document | fluid, pageless, letter, a4 | Reports, docs |
| social | 1x1, 4x5, 9x16 | Instagram, LinkedIn carousels |
Notes
- Generation typically takes 1-3 minutes
- Credits are deducted per generation (~150-300 per deck)
- Input text can be markdown formatted
- Use
--waitflag to block until completion and get URL directly
安全使用建议
This skill appears to be a straightforward Gamma.app integration, but review the following before installing: 1) The included script uses curl and jq but the manifest does not declare these required binaries — ensure your environment has them or the script will fail. 2) The only secret required is GAMMA_API_KEY; provide a scoped or limited API key if Gamma supports that, and avoid using high-privilege keys. 3) The script sends content to https://public-api.gamma.app — confirm you trust that endpoint and the skill's unknown owner. 4) Because the skill contains an executable script and can be invoked by the agent, consider running it in a sandbox (or inspect/execute locally) first. 5) If the skill came from an official Gamma source or repository, that would reduce risk; absence of a homepage/known owner increases uncertainty.
功能分析
Type: OpenClaw Skill
Name: gamma
Version: 1.0.0
The skill is classified as suspicious due to its capability to read arbitrary local files and send their content to the Gamma.app API. While the `SKILL.md` documentation provides an example `$(cat pitch.md)` for a legitimate use case, this mechanism could be abused by a prompt-injected agent to read sensitive local files (e.g., `~/.ssh/id_rsa`) and transmit them to `public-api.gamma.app`. Although the destination is the intended service, sending unintended sensitive data to any third-party service constitutes a potential data leak, representing a risky capability without clear malicious intent from the skill developer.
能力评估
Purpose & Capability
Name/description, API endpoint (public-api.gamma.app), and the single required environment variable (GAMMA_API_KEY) align with a Gamma.app presentation-generation skill. However, the package metadata claims no required binaries while the included script clearly depends on curl and jq—this mismatch is unexplained.
Instruction Scope
SKILL.md and the script instruct only to send user-provided content to Gamma.app and poll for status. There are no instructions to read unrelated system files, other environment variables, or to send data to endpoints other than Gamma's public API.
Install Mechanism
There is no install specification (instruction-only), which is low risk, but the repository includes an executable script that will be run. Because the script has runtime dependencies (curl, jq) that are not declared or installed, users may run it without realizing those binaries are required; this is an operational/integrity mismatch.
Credentials
Only GAMMA_API_KEY is required. That is proportional to calling Gamma.app's API. The skill does not request other unrelated secrets or access to config paths.
Persistence & Privilege
The skill does not request always:true, does not attempt to modify other skills or agent-wide configuration, and is user-invocable. Normal autonomous invocation is allowed by default but not combined here with extra privileges.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gamma - 安装完成后,直接呼叫该 Skill 的名称或使用
/gamma触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Generate AI-powered presentations, documents, and social posts via Gamma.app API
元数据
常见问题
Gamma 是什么?
Generate AI-powered presentations, documents, and social posts using Gamma.app API. Use when user asks to create a presentation, pitch deck, slide deck, document, or social media carousel. Triggers on requests like "create a presentation about X", "make a pitch deck", "generate slides", or "create a Gamma about X". 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 3537 次。
如何安装 Gamma?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gamma」即可一键安装,无需额外配置。
Gamma 是免费的吗?
是的,Gamma 完全免费(开源免费),可自由下载、安装和使用。
Gamma 支持哪些平台?
Gamma 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Gamma?
由 Lucas Synnott(@lucassynnott)开发并维护,当前版本 v1.0.0。
推荐 Skills