# Send GIF to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/gif",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gif",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T11:49:04.657Z",
      "expiresAt": "2026-05-10T11:49:04.657Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif",
        "contentDisposition": "attachment; filename=\"gif-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gif"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Requirements

Required for creating GIFs:

ffmpeg — video to GIF conversion

Optional:

gifsicle — post-optimization (reduces size 30-50%)
GIPHY_API_KEY — for Giphy search API
TENOR_API_KEY — for Tenor search API

### Where to Find GIFs

SiteBest forAPIGiphyGeneral, trendingYes (key required)TenorMessaging appsYes (key required)ImgurViral/communityYesReddit r/gifsNiche, uniqueNo

### Creating GIFs with FFmpeg

Always use palettegen (without it, colors look washed out):

ffmpeg -ss 0 -t 5 -i input.mp4 \\
  -filter_complex "fps=10,scale=480:-1:flags=lanczos,split[a][b];[a]palettegen[p];[b][p]paletteuse" \\
  output.gif

SettingValueWhyfps8-12Higher = much larger filescale320-4801080p GIFs are massivelanczosAlwaysBest scaling quality

### Post-Optimization

If gifsicle is available:

gifsicle -O3 --lossy=80 --colors 128 input.gif -o output.gif

Reduces size 30-50% with minimal quality loss.

### Video Alternative

For web, use video instead of large GIFs (80-90% smaller):

<video autoplay muted loop playsinline>
  <source src="animation.webm" type="video/webm">
  <source src="animation.mp4" type="video/mp4">
</video>

### Accessibility

WCAG 2.2.2: Loops >5s need pause control
prefers-reduced-motion: Show static image instead
Alt text: Describe the action ("Cat jumping off table")
Three flashes: Nothing >3 flashes/second (seizure risk)

### Common Mistakes

No palettegen in FFmpeg — colors look terrible
FPS >15 — file size explodes for no visual benefit
No lazy loading on web — blocks page load
Using huge GIF where video would work — 10x larger

### API Quick Reference

Giphy search:

curl "https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=thumbs+up&limit=10"

Tenor search:

curl "https://tenor.googleapis.com/v2/search?key=$TENOR_API_KEY&q=thumbs+up&limit=10"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T11:49:04.657Z
- Expires at: 2026-05-10T11:49:04.657Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gif)
- [Send to Agent page](https://openagent3.xyz/skills/gif/agent)
- [JSON manifest](https://openagent3.xyz/skills/gif/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gif/agent.md)
- [Download page](https://openagent3.xyz/downloads/gif)