{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gif",
    "name": "GIF",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/gif",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/gif",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gif",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif",
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/gif"
    },
    "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/gif",
    "agentPageUrl": "https://openagent3.xyz/skills/gif/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gif/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gif/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": "Requirements",
        "body": "Required for creating GIFs:\n\nffmpeg — video to GIF conversion\n\nOptional:\n\ngifsicle — post-optimization (reduces size 30-50%)\nGIPHY_API_KEY — for Giphy search API\nTENOR_API_KEY — for Tenor search API"
      },
      {
        "title": "Where to Find GIFs",
        "body": "SiteBest forAPIGiphyGeneral, trendingYes (key required)TenorMessaging appsYes (key required)ImgurViral/communityYesReddit r/gifsNiche, uniqueNo"
      },
      {
        "title": "Creating GIFs with FFmpeg",
        "body": "Always use palettegen (without it, colors look washed out):\n\nffmpeg -ss 0 -t 5 -i input.mp4 \\\n  -filter_complex \"fps=10,scale=480:-1:flags=lanczos,split[a][b];[a]palettegen[p];[b][p]paletteuse\" \\\n  output.gif\n\nSettingValueWhyfps8-12Higher = much larger filescale320-4801080p GIFs are massivelanczosAlwaysBest scaling quality"
      },
      {
        "title": "Post-Optimization",
        "body": "If gifsicle is available:\n\ngifsicle -O3 --lossy=80 --colors 128 input.gif -o output.gif\n\nReduces size 30-50% with minimal quality loss."
      },
      {
        "title": "Video Alternative",
        "body": "For web, use video instead of large GIFs (80-90% smaller):\n\n<video autoplay muted loop playsinline>\n  <source src=\"animation.webm\" type=\"video/webm\">\n  <source src=\"animation.mp4\" type=\"video/mp4\">\n</video>"
      },
      {
        "title": "Accessibility",
        "body": "WCAG 2.2.2: Loops >5s need pause control\nprefers-reduced-motion: Show static image instead\nAlt text: Describe the action (\"Cat jumping off table\")\nThree flashes: Nothing >3 flashes/second (seizure risk)"
      },
      {
        "title": "Common Mistakes",
        "body": "No palettegen in FFmpeg — colors look terrible\nFPS >15 — file size explodes for no visual benefit\nNo lazy loading on web — blocks page load\nUsing huge GIF where video would work — 10x larger"
      },
      {
        "title": "API Quick Reference",
        "body": "Giphy search:\n\ncurl \"https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=thumbs+up&limit=10\"\n\nTenor search:\n\ncurl \"https://tenor.googleapis.com/v2/search?key=$TENOR_API_KEY&q=thumbs+up&limit=10\""
      }
    ],
    "body": "Requirements\n\nRequired for creating GIFs:\n\nffmpeg — video to GIF conversion\n\nOptional:\n\ngifsicle — post-optimization (reduces size 30-50%)\nGIPHY_API_KEY — for Giphy search API\nTENOR_API_KEY — for Tenor search API\nWhere to Find GIFs\nSite\tBest for\tAPI\nGiphy\tGeneral, trending\tYes (key required)\nTenor\tMessaging apps\tYes (key required)\nImgur\tViral/community\tYes\nReddit r/gifs\tNiche, unique\tNo\nCreating GIFs with FFmpeg\n\nAlways use palettegen (without it, colors look washed out):\n\nffmpeg -ss 0 -t 5 -i input.mp4 \\\n  -filter_complex \"fps=10,scale=480:-1:flags=lanczos,split[a][b];[a]palettegen[p];[b][p]paletteuse\" \\\n  output.gif\n\nSetting\tValue\tWhy\nfps\t8-12\tHigher = much larger file\nscale\t320-480\t1080p GIFs are massive\nlanczos\tAlways\tBest scaling quality\nPost-Optimization\n\nIf gifsicle is available:\n\ngifsicle -O3 --lossy=80 --colors 128 input.gif -o output.gif\n\n\nReduces size 30-50% with minimal quality loss.\n\nVideo Alternative\n\nFor web, use video instead of large GIFs (80-90% smaller):\n\n<video autoplay muted loop playsinline>\n  <source src=\"animation.webm\" type=\"video/webm\">\n  <source src=\"animation.mp4\" type=\"video/mp4\">\n</video>\n\nAccessibility\nWCAG 2.2.2: Loops >5s need pause control\nprefers-reduced-motion: Show static image instead\nAlt text: Describe the action (\"Cat jumping off table\")\nThree flashes: Nothing >3 flashes/second (seizure risk)\nCommon Mistakes\nNo palettegen in FFmpeg — colors look terrible\nFPS >15 — file size explodes for no visual benefit\nNo lazy loading on web — blocks page load\nUsing huge GIF where video would work — 10x larger\nAPI Quick Reference\n\nGiphy search:\n\ncurl \"https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=thumbs+up&limit=10\"\n\n\nTenor search:\n\ncurl \"https://tenor.googleapis.com/v2/search?key=$TENOR_API_KEY&q=thumbs+up&limit=10\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/gif",
    "publisherUrl": "https://clawhub.ai/ivangdavila/gif",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gif",
    "downloadUrl": "https://openagent3.xyz/downloads/gif",
    "agentUrl": "https://openagent3.xyz/skills/gif/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gif/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gif/agent.md"
  }
}