{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gamma-presentations",
    "name": "Gamma Presentations",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/MrGoodB/gamma-presentations",
    "canonicalUrl": "https://clawhub.ai/MrGoodB/gamma-presentations",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gamma-presentations",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gamma-presentations",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gamma-presentations"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gamma-presentations",
    "agentPageUrl": "https://openagent3.xyz/skills/gamma-presentations/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gamma-presentations/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gamma-presentations/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Gamma API Skill",
        "body": "Create presentations and documents programmatically via Gamma's API."
      },
      {
        "title": "Setup",
        "body": "Get API key from https://developers.gamma.app\nStore in environment: export GAMMA_API_KEY=sk-gamma-xxx\nOr add to TOOLS.md: Gamma API Key: sk-gamma-xxx"
      },
      {
        "title": "Authentication",
        "body": "Base URL: https://public-api.gamma.app/v1.0\nHeader: X-API-KEY: <your-api-key>"
      },
      {
        "title": "Generate Content",
        "body": "curl -X POST https://public-api.gamma.app/v1.0/generations \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-KEY: $GAMMA_API_KEY\" \\\n  -d '{\n    \"inputText\": \"Your content here\",\n    \"textMode\": \"generate|condense|preserve\",\n    \"format\": \"presentation|document|social|webpage\"\n  }'\n\nResponse: {\"generationId\": \"xxx\"}"
      },
      {
        "title": "Check Status",
        "body": "curl https://public-api.gamma.app/v1.0/generations/<generationId> \\\n  -H \"X-API-KEY: $GAMMA_API_KEY\"\n\nResponse (completed): {\"status\": \"completed\", \"gammaUrl\": \"https://gamma.app/docs/xxx\", \"credits\": {...}}\n\nPoll every 10-20s until status: \"completed\"."
      },
      {
        "title": "Key Parameters",
        "body": "ParameterValuesNotestextModegenerate, condense, preservegenerate=expand, condense=summarize, preserve=keep exactformatpresentation, document, social, webpageOutput typenumCards1-60 (Pro), 1-75 (Ultra)Number of slides/cardscardSplitauto, inputTextBreaksUse \\n---\\n in inputText for manual breaksexportAspdf, pptxOptional export format"
      },
      {
        "title": "Optional Parameters",
        "body": "{\n  \"additionalInstructions\": \"Make titles catchy\",\n  \"imageOptions\": {\n    \"source\": \"aiGenerated|unsplash|giphy|webAllImages|noImages\",\n    \"model\": \"imagen-4-pro|flux-1-pro\",\n    \"style\": \"photorealistic, modern\"\n  },\n  \"textOptions\": {\n    \"amount\": \"brief|medium|detailed|extensive\",\n    \"tone\": \"professional, inspiring\",\n    \"audience\": \"tech professionals\",\n    \"language\": \"en\"\n  },\n  \"cardOptions\": {\n    \"dimensions\": \"fluid|16x9|4x3|1x1|4x5|9x16\"\n  }\n}\n\nNote: textOptions.tone and textOptions.audience are ignored when textMode is preserve."
      },
      {
        "title": "Other Endpoints",
        "body": "GET /themes — List available themes (use themeId in generation)\nGET /folders — List folders (use folderIds in generation)"
      },
      {
        "title": "Workflow",
        "body": "Check for API key in environment ($GAMMA_API_KEY) or TOOLS.md\nBuild inputText with content (can include image URLs inline)\nPOST to /generations → get generationId\nPoll /generations/{id} until status: \"completed\"\nReturn gammaUrl to user"
      }
    ],
    "body": "Gamma API Skill\n\nCreate presentations and documents programmatically via Gamma's API.\n\nSetup\nGet API key from https://developers.gamma.app\nStore in environment: export GAMMA_API_KEY=sk-gamma-xxx Or add to TOOLS.md: Gamma API Key: sk-gamma-xxx\nAuthentication\nBase URL: https://public-api.gamma.app/v1.0\nHeader: X-API-KEY: <your-api-key>\n\nGenerate Content\ncurl -X POST https://public-api.gamma.app/v1.0/generations \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-API-KEY: $GAMMA_API_KEY\" \\\n  -d '{\n    \"inputText\": \"Your content here\",\n    \"textMode\": \"generate|condense|preserve\",\n    \"format\": \"presentation|document|social|webpage\"\n  }'\n\n\nResponse: {\"generationId\": \"xxx\"}\n\nCheck Status\ncurl https://public-api.gamma.app/v1.0/generations/<generationId> \\\n  -H \"X-API-KEY: $GAMMA_API_KEY\"\n\n\nResponse (completed): {\"status\": \"completed\", \"gammaUrl\": \"https://gamma.app/docs/xxx\", \"credits\": {...}}\n\nPoll every 10-20s until status: \"completed\".\n\nKey Parameters\nParameter\tValues\tNotes\ntextMode\tgenerate, condense, preserve\tgenerate=expand, condense=summarize, preserve=keep exact\nformat\tpresentation, document, social, webpage\tOutput type\nnumCards\t1-60 (Pro), 1-75 (Ultra)\tNumber of slides/cards\ncardSplit\tauto, inputTextBreaks\tUse \\n---\\n in inputText for manual breaks\nexportAs\tpdf, pptx\tOptional export format\nOptional Parameters\n{\n  \"additionalInstructions\": \"Make titles catchy\",\n  \"imageOptions\": {\n    \"source\": \"aiGenerated|unsplash|giphy|webAllImages|noImages\",\n    \"model\": \"imagen-4-pro|flux-1-pro\",\n    \"style\": \"photorealistic, modern\"\n  },\n  \"textOptions\": {\n    \"amount\": \"brief|medium|detailed|extensive\",\n    \"tone\": \"professional, inspiring\",\n    \"audience\": \"tech professionals\",\n    \"language\": \"en\"\n  },\n  \"cardOptions\": {\n    \"dimensions\": \"fluid|16x9|4x3|1x1|4x5|9x16\"\n  }\n}\n\n\nNote: textOptions.tone and textOptions.audience are ignored when textMode is preserve.\n\nOther Endpoints\nGET /themes — List available themes (use themeId in generation)\nGET /folders — List folders (use folderIds in generation)\nWorkflow\nCheck for API key in environment ($GAMMA_API_KEY) or TOOLS.md\nBuild inputText with content (can include image URLs inline)\nPOST to /generations → get generationId\nPoll /generations/{id} until status: \"completed\"\nReturn gammaUrl to user"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MrGoodB/gamma-presentations",
    "publisherUrl": "https://clawhub.ai/MrGoodB/gamma-presentations",
    "owner": "MrGoodB",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gamma-presentations",
    "downloadUrl": "https://openagent3.xyz/downloads/gamma-presentations",
    "agentUrl": "https://openagent3.xyz/skills/gamma-presentations/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gamma-presentations/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gamma-presentations/agent.md"
  }
}