用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill gif命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | GIF |
| slug | gif |
| version | 1.0.1 |
| description | Find, search, and create GIFs with proper optimization and accessibility. |
| changelog | Declare required binary (ffmpeg), document optional deps (gifsicle, API keys) |
| metadata | {"clawdbot":{"emoji":"🎞️","requires":{"bins":["ffmpeg"]},"os":["linux","darwin","win32"]}} |
Required for creating GIFs:
ffmpeg — video to GIF conversionOptional:
gifsicle — post-optimization (reduces size 30-50%)GIPHY_API_KEY — for Giphy search APITENOR_API_KEY — for Tenor search API| Site | Best for | API |
|---|---|---|
| Giphy | General, trending | Yes (key required) |
| Tenor | Messaging apps | Yes (key required) |
| Imgur | Viral/community | Yes |
| Reddit r/gifs | Niche, unique | No |
Always use palettegen (without it, colors look washed out):
ffmpeg -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
| Setting | Value | Why |
|---|---|---|
| fps | 8-12 | Higher = much larger file |
| scale | 320-480 | 1080p GIFs are massive |
| lanczos | Always | Best scaling quality |
If gifsicle is available:
gifsicle -O3 --lossy=80 --colors 128 input.gif -o output.gif
Reduces size 30-50% with minimal quality loss.
For web, use video instead of large GIFs (80-90% smaller):
<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 terribleGiphy search:
curl "https://api.giphy.com/v1/gifs/search?api_key=$GIPHY_API_KEY&q=thumbs+up&limit=10"
Tenor search:
curl "https://tenor.googleapis.com/v2/search?key=$TENOR_API_KEY&q=thumbs+up&limit=10"