AgentSkillsCN

gifgrep

从 Giphy 和 Tenor API 中搜索并获取 GIF 动图。

SKILL.md
--- frontmatter
name: gifgrep
description: Search and retrieve GIFs from Giphy and Tenor APIs.
metadata: {"openclaw":{"emoji":"🎞️","requires":{"env":["GIPHY_API_KEY"]},"primaryEnv":"GIPHY_API_KEY"}}

GifGrep

Search for GIFs using Giphy and Tenor.

Search Giphy

bash
curl -s "https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=funny+cat&limit=5" | jq '.data[].url'

Trending GIFs

bash
curl -s "https://api.giphy.com/v1/gifs/trending?api_key=$GIPHY_API_KEY&limit=10" | jq '.data[].url'

Random GIF

bash
curl -s "https://api.giphy.com/v1/gifs/random?api_key=$GIPHY_API_KEY&tag=celebration" | jq '.data.url'