Slack Gif Creator
Skills.shGIF 动画 低门槛
3.3
Slack GIF 创建器:为 Slack 工作区生成和分享动画 GIF 内容。
npx skills add anthropics/skills@slack-gif-creatorGIF 动图工具,支持查找、搜索和创建优化的 GIF 动画,并提供无障碍功能。
Find, search, and create GIFs with proper optimization and accessibility.
# 安装 Skill(会下载 SKILL.md 到 .claude/skills/) clawhub install gif # 之后直接对 Claude 说"用 GIF 帮我…"即可
# 同样的安装命令,兼容所有支持 SKILL.md 的 AI 编程工具 clawhub install gif
此 Skill 兼容 OpenClaw 标准。 安装后自动生成 SKILL.md 文件,任何支持 OpenClaw 协议的 AI Agent(Claude Code、Cursor、Windsurf 等)均可直接调用。
需注册 clawhub 账户,无需 GPU,本地处理
ffmpeg — video to GIF conversiongifsicle — post-optimization (reduces size 30-50%)GIPHY_API_KEY — for Giphy search APITENOR_API_KEY — for Tenor search APIffmpeg -ss 0 -t 5 -i input.mp4 \
-filter_complex "fps=10,scale=480:-1:flags=lanczos,split[a][b];[a]palettegen[p];[b][p]paletteuse" \
output.gif
gifsicle is available:
gifsicle -O3 --lossy=80 --colors 128 input.gif -o output.gif
<video autoplay muted loop playsinline>
<source src="animation.webm" type="video/webm">
<source src="animation.mp4" type="video/mp4">
</video>
palettegen in FFmpeg — colors look terriblecurl "https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=thumbs+up&limit=10"
curl "https://tenor.googleapis.com/v2/search?key=$TENOR_API_KEY&q=thumbs+up&limit=10"
clawhub gif create --input demo.mp4 --optimize --alt-text "演示动画" --output demo.gif