Slack Gif Creator
Skills.shGIF & Animation Easy
3.3
Slack GIF 创建器:为 Slack 工作区生成和分享动画 GIF 内容。
14K
npx skills add anthropics/skills@slack-gif-creatorSearch and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp.
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install gif-whatsapp # Then just tell Claude: "use Gif Whatsapp to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install gif-whatsapp
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
gifPlayback: truegifgrep "SEARCH QUERY" --max 5 --format url
Search in English for best results.curl -sL "GIF_URL" -o /tmp/gif.gif
ffmpeg -i /tmp/gif.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" /tmp/gif.mp4 -y
message action=send to=NUMBER message=" " filePath=/tmp/gif.mp4 gifPlayback=true
# 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
/tmp and are overwritten each time (-y flag)message tool — no separate WhatsApp credentials neededgifPlayback=true displays as looping GIFclawhub gif-whatsapp send --query "dance celebration" --to 8613800000000 --count 1 --auto-convert