gif-maker

gif-maker is a skill for Claude Code from guanyang/super-publisher. It costs 37 tokens per session (896 once invoked), scanned B, original, MIT.

A tool that turns ordered image frames or a sprite sheet—a single image containing many animation frames—into a GIF. A GIF is a short animated image that can repeat.

In plain words
What is it for?
Use it to make GIFs from PNG or JPG frame folders or grid images, including animations sized for platform limits such as WeChat stickers.
Why use it?
It removes the need to assemble frames by hand and can adjust the animation speed, layout, looping, and target file size.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the super-publisher plugin — 10 skills shipped together

Good fit Use it to make GIFs from PNG or JPG frame folders or grid images, including animations sized for platform limits such as WeChat stickers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/guanyang/super-publisher/gif-maker
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add guanyang/super-publisher --skill gif-maker
Clone the repo
git clone --depth 1 https://github.com/guanyang/super-publisher

Made for: Claude Code.

Or install super-publisher, the plugin that ships this one along with the rest of its 10 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gif-maker

README.md
[![agentmods](https://agentmods.dev/badge/skills/guanyang/super-publisher/gif-maker/github.svg)](https://agentmods.dev/skills/guanyang/super-publisher/gif-maker)
Your own site
<a href="https://agentmods.dev/skills/guanyang/super-publisher/gif-maker"><img src="https://agentmods.dev/badge/skills/guanyang/super-publisher/gif-maker/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gif-maker

Your own site · 80×15
<a href="https://agentmods.dev/skills/guanyang/super-publisher/gif-maker"><img src="https://agentmods.dev/badge/skills/guanyang/super-publisher/gif-maker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 896 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.00896
Opus 5 $0.00018 $0.00448
Sonnet 5 $0.00007 $0.00179
Haiku 4.5 $0.00004 $0.00090

Measured 12d ago against content hash 1ba82f700564, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

gif-maker scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/make_gif.py, scripts/run.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- Ubuntu: `sudo apt-get install gifsicle`
skills/gif-maker/SKILL.md · 77 lines

What it actually says

GIF 动画生成器 (GIF Maker)

本 Skill 旨在帮助用户快速将一组序列帧图片或单张精灵表(Sprite Sheet)转换为 GIF 动画。

核心功能

  • 序列帧转 GIF:支持读取文件夹内的 png, jpg 序列,按文件名排序合成 GIF。
  • 精灵表转 GIF:支持读取单张 Grid 图片(如 4x4 精灵表),自动切分并合成为 GIF。
  • 智能压缩:支持通过 --max-size 参数指定目标文件大小(如 950KB),自动调整压缩参数以满足微信表情包等平台的体积限制。
  • 参数控制
    • --fps:指定每秒帧数(默认为 12)。
    • --layout:指定精灵表布局(如 4x4),仅在这个模式下需要。
    • --loop:默认永久循环。
    • --max-size: 指定最大体积 (KB)。

使用指南

1. 快速开始

无需手动安装依赖,直接运行脚本即可。工具会自动创建虚拟环境 (.venv) 并安装所需依赖。

# 基本用法 1:从文件夹读取序列帧
./skills/gif-maker/scripts/run.sh /path/to/frame_folder --output my_anim.gif

# 基本用法 2:从单张精灵表生成 (需要指定布局)
./skills/gif-maker/scripts/run.sh /path/to/sheet.png --layout 4x4 --output my_sheet_anim.gif

# 常用选项:
# - 指定 FPS (例如 24)
./skills/gif-maker/scripts/run.sh /path/to/folder --fps 24

# - 开启自动压缩 (限制文件大小在 950KB 以内)
./skills/gif-maker/scripts/run.sh /path/to/folder --max-size 950

2. (可选) 手动安装

如果您希望手动管理环境(注意:压缩功能依赖 gifsicle 工具,请确保系统已安装):

  • macOS: brew install gifsicle
  • Ubuntu: sudo apt-get install gifsicle
python3 -m venv skills/gif-maker/.venv
source skills/gif-maker/.venv/bin/activate
pip install -r skills/gif-maker/requirements.txt
python3 skills/gif-maker/scripts/make_gif.py ...

参数说明

  • source: 输入路径。可以是包含图片的文件夹,也可以是单张图片文件。
  • --output (-o): 输出 GIF 文件名,默认为 output.gif
  • --fps: 帧率,默认为 12。
  • --layout: 仅当 source 为单文件时使用,格式为 行数x列数 (如 4x4)。
  • --max-size: (可选) 启用 GIF 压缩,指定目标文件最大大小 (KB)。仅当原始文件超过此大小时才会尝试压缩。

示例

假设你有一个文件夹 frames/ 包含 01.png, 02.png ... 10.png

./skills/gif-maker/scripts/run.sh frames/ -o animation.gif --fps 15

假设你有一张 sheet.png 是 4x4 的动作序列,且需要生成符合微信表情包规范(<1MB)的 GIF:

./skills/gif-maker/scripts/run.sh sheet.png --layout 4x4 -o action.gif --max-size 950
Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 77 lines · 37 tokens per session scan B 1ba82f700564

Subscribe to this mod's changes

gif-maker is a skill published in the GitHub repository guanyang/super-publisher (30 stars, last pushed 1mo ago), licensed MIT. It adds 37 tokens to every session and 896 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-coverage-check

Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.

majiayu000/claude-skill-registry · 23 tokens

skillpack-creator

Create a reusable SkillPack from a successful completed task. Use when the user wants to convert a one-off research, coding, analysis, or content workflow into a distributable local SkillPack with skillpack.json, local skills under skills/, starter prompts, start scripts, and an optional zip package.

CreminiAI/skillpack · 67 tokens

skill-creator

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

CreminiAI/skillpack · 64 tokens

pdf

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When GLM needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

jjyaoao/HelloAgents · 51 tokens

frontend-design

Transform UI style requirements into production-ready frontend code with systematic design tokens, accessibility compliance, and creative execution. Use when building websites, web applications, React/Vue components, dashboards, landing pages, or any web UI requiring both design consistency and aesthetic quality.

jjyaoao/HelloAgents · 54 tokens

Video Generation

Implement AI-powered video generation capabilities using the z-ai-web-dev-sdk. Use this skill when the user needs to generate videos from text prompts or images, create video content programmatically, or build applications that produce video outputs. Supports asynchronous task management with status polling and result…

jjyaoao/HelloAgents · 58 tokens