Slack Gif Creator
Skills.shGIF 动画 低门槛
3.3
Slack GIF 创建器:为 Slack 工作区生成和分享动画 GIF 内容。
npx skills add anthropics/skills@slack-gif-creatorGIF 搜索工具,支持 CLI/TUI 模式查询多个 GIF 提供商,下载结果并提取静帧或精灵图。
Search GIF providers with CLI/TUI, download results, and extract stills/sheets.
也可通过以下平台安装:
npx skills add steipete/clawdis@gifgrep# 安装 Skill(会下载 SKILL.md 到 .claude/skills/) clawhub install gifgrep # 之后直接对 Claude 说"用 Gifgrep 帮我…"即可
# 同样的安装命令,兼容所有支持 SKILL.md 的 AI 编程工具 clawhub install gifgrep
此 Skill 兼容 OpenClaw 标准。 安装后自动生成 SKILL.md 文件,任何支持 OpenClaw 协议的 AI Agent(Claude Code、Cursor、Windsurf 等)均可直接调用。
需要注册 GIF 提供商账户以获取搜索权限,本地处理不需要 GPU
gifgrep to search GIF providers (Tenor/Giphy), browse in a TUI, download results, and extract stills or sheets.gifgrep cats --max 5gifgrep cats --format url | head -n 5gifgrep search --json cats | jq '.[0].url'gifgrep tui "office handshake"gifgrep cats --download --max 1 --format urlgifgrep tui "query"--thumbs (Kitty/Ghostty only; still frame)--download saves to ~/Downloads--reveal shows the last download in Findergifgrep still ./clip.gif --at 1.5s -o still.pnggifgrep sheet ./clip.gif --frames 9 --cols 3 -o sheet.png--frames (count), --cols (grid width), --padding (spacing).--source auto|tenor|giphyGIPHY_API_KEY required for --source giphyTENOR_API_KEY optional (Tenor demo key used if unset)--json prints an array of results (id, title, url, preview_url, tags, width, height)--format for pipe-friendly fields (e.g., url)GIFGREP_SOFTWARE_ANIM=1 to force software animationGIFGREP_CELL_ASPECT=0.5 to tweak preview geometry```bash
# 搜索「办公室喜剧」相关 GIF 并下载前 5 个
gifgrep search "office comedy" --limit 5 --download -o ./gifs/
# 提取 GIF 的所有关键帧到目录
gifgrep extract ./gifs/funny.gif --stills --interval 100 -o ./frames/
# 生成 4x4 的 GIF 预览合成表
gifgrep extract ./gifs/animation.gif --sheet --grid 4x4 -o preview.png
```