skills$openclaw/gif-whatsapp
shaharsha1.5k

by shaharsha

gif-whatsapp – OpenClaw Skill

gif-whatsapp is an OpenClaw Skills integration for coding workflows. Search and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp.

1.5k stars1.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namegif-whatsapp
descriptionSearch and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp. OpenClaw Skills integration.
ownershaharsha
repositoryshaharsha/gif-whatsapp
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @shaharsha/gif-whatsapp
last updatedFeb 7, 2026

Maintainer

shaharsha

shaharsha

Maintains gif-whatsapp in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
457 B
SKILL.md
2.3 KB
SKILL.md

name: gif-whatsapp version: 1.0.0 description: Search and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp. metadata: {"clawdbot":{"emoji":"🎬","requires":{"bins":["gifgrep","ffmpeg","curl"]}}}

GIF Sender

Send GIFs naturally in WhatsApp conversations.

CRITICAL: WhatsApp GIF Workflow

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

  1. Download the GIF
  2. Convert to MP4
  3. Send with gifPlayback: true

Complete Workflow

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

✅ 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 Terms
Happycelebration, party, dancing, excited
Approvalthumbs up, nice, good job, applause
Funnylaugh, lol, haha, funny
Shockedmind blown, shocked, surprised, wow
Sadcrying, sad, disappointed
Frustratedfacepalm, ugh, annoyed
Loveheart, love, hug
Coolsunglasses, cool, awesome

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
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install gif-whatsapp?

Run openclaw add @shaharsha/gif-whatsapp in your terminal. This installs gif-whatsapp into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/shaharsha/gif-whatsapp. Review commits and README documentation before installing.