# Send Gif Whatsapp 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-whatsapp",
    "name": "Gif Whatsapp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Shaharsha/gif-whatsapp",
    "canonicalUrl": "https://clawhub.ai/Shaharsha/gif-whatsapp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gif-whatsapp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif-whatsapp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gif-whatsapp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T15:30:20.178Z",
      "expiresAt": "2026-05-10T15:30:20.178Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif-whatsapp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif-whatsapp",
        "contentDisposition": "attachment; filename=\"gif-whatsapp-1.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gif-whatsapp"
      },
      "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-whatsapp"
    },
    "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-whatsapp",
    "downloadUrl": "https://openagent3.xyz/downloads/gif-whatsapp",
    "agentUrl": "https://openagent3.xyz/skills/gif-whatsapp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gif-whatsapp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gif-whatsapp/agent.md"
  }
}
```
## Documentation

### GIF Sender

Send GIFs naturally in WhatsApp conversations.

### CRITICAL: WhatsApp GIF Workflow

WhatsApp doesn't support direct Tenor/Giphy URLs. You MUST:

Download the GIF
Convert to MP4
Send with gifPlayback: true

### Step 1: Search for GIF

gifgrep "SEARCH QUERY" --max 5 --format url

Search in English for best results.

Always get 5 results and pick the best one based on the filename/description - don't just take the first result.

### Step 2: Download the GIF

curl -sL "GIF_URL" -o /tmp/gif.gif

### Step 3: Convert to MP4

ffmpeg -i /tmp/gif.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" /tmp/gif.mp4 -y

### Step 4: Send via message tool

message action=send to=NUMBER message="‎" filePath=/tmp/gif.mp4 gifPlayback=true

Note: Use invisible character ‎ (left-to-right mark, U+200E) as message to send GIF without visible caption.

### One-liner Example

# Search
gifgrep "thumbs up" --max 3 --format url

# Pick best URL, then:
curl -sL "https://media.tenor.com/xxx.gif" -o /tmp/g.gif && \\
ffmpeg -i /tmp/g.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" /tmp/g.mp4 -y 2>/dev/null

# Then send with message tool, gifPlayback=true

### When to Send GIFs

✅ Good times:

User asks for a GIF
Celebrating good news
Funny reactions
Expressing emotions (excitement, facepalm, etc.)

❌ Don't overuse:

One GIF per context is enough
Not every message needs a GIF

### Popular Search Terms

EmotionSearch TermsHappycelebration, party, dancing, excitedApprovalthumbs up, nice, good job, applauseFunnylaugh, lol, haha, funnyShockedmind blown, shocked, surprised, wowSadcrying, sad, disappointedFrustratedfacepalm, ugh, annoyedLoveheart, love, hugCoolsunglasses, cool, awesome

### Security & Safety Notes

Source domains: gifgrep only searches trusted GIF providers (Tenor, Giphy)
File handling: All downloads go to /tmp and are overwritten each time (-y flag)
Empty caption: The ‎ character (U+200E, Left-to-Right Mark) is used as an invisible caption so WhatsApp sends the GIF without visible text. This is a standard Unicode control character, not an injection technique
WhatsApp integration: Uses the platform's built-in message tool — no separate WhatsApp credentials needed
ffmpeg safety: Processes only GIF files from trusted providers; no arbitrary file execution

### Why This Works

WhatsApp converts all GIFs to MP4 internally
Direct Tenor/Giphy URLs often fail
MP4 with gifPlayback=true displays as looping GIF
Small file size = fast delivery
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Shaharsha
- Version: 1.1.0
## 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-03T15:30:20.178Z
- Expires at: 2026-05-10T15:30:20.178Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gif-whatsapp)
- [Send to Agent page](https://openagent3.xyz/skills/gif-whatsapp/agent)
- [JSON manifest](https://openagent3.xyz/skills/gif-whatsapp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gif-whatsapp/agent.md)
- [Download page](https://openagent3.xyz/downloads/gif-whatsapp)