Slack Gif Creator
Skills.shGIF 动画 低门槛
3.3
Slack GIF 创建器:为 Slack 工作区生成和分享动画 GIF 内容。
npx skills add anthropics/skills@slack-gif-creator在 WhatsApp 上搜索和发送 GIF,自动处理 Tenor 到 MP4 的格式转换。
Search and send GIFs on WhatsApp. Handles the Tenor→MP4 conversion required for WhatsApp.
# 安装 Skill(会下载 SKILL.md 到 .claude/skills/) clawhub install gif-whatsapp # 之后直接对 Claude 说"用 Gif Whatsapp 帮我…"即可
# 同样的安装命令,兼容所有支持 SKILL.md 的 AI 编程工具 clawhub install gif-whatsapp
此 Skill 兼容 OpenClaw 标准。 安装后自动生成 SKILL.md 文件,任何支持 OpenClaw 协议的 AI Agent(Claude Code、Cursor、Windsurf 等)均可直接调用。
需WhatsApp Business API凭证和Tenor API密钥,涉及第三方服务调用
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