← All skills
Tencent SkillHub · Developer Tools

Gif Whatsapp

Search and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Search and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc