{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gif-maker",
    "name": "Gif Maker",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/guanyang/gif-maker",
    "canonicalUrl": "https://clawhub.ai/guanyang/gif-maker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gif-maker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gif-maker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "requirements.txt",
      "README.md",
      "SKILL.md",
      "scripts/run.sh",
      "scripts/make_gif.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gif-maker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gif-maker",
    "agentPageUrl": "https://openagent3.xyz/skills/gif-maker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gif-maker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gif-maker/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "GIF 动画生成器 (GIF Maker)",
        "body": "本 Skill 旨在帮助用户快速将一组序列帧图片或单张精灵表（Sprite Sheet）转换为 GIF 动画。"
      },
      {
        "title": "核心功能",
        "body": "序列帧转 GIF：支持读取文件夹内的 png, jpg 序列，按文件名排序合成 GIF。\n精灵表转 GIF：支持读取单张 Grid 图片（如 4x4 精灵表），自动切分并合成为 GIF。\n智能压缩：支持通过 --max-size 参数指定目标文件大小（如 950KB），自动调整压缩参数以满足微信表情包等平台的体积限制。\n参数控制：\n\n--fps：指定每秒帧数（默认为 12）。\n--layout：指定精灵表布局（如 4x4），仅在这个模式下需要。\n--loop：默认永久循环。\n--max-size: 指定最大体积 (KB)。"
      },
      {
        "title": "1. 快速开始",
        "body": "无需手动安装依赖，直接运行脚本即可。工具会自动创建虚拟环境 (.venv) 并安装所需依赖。\n\n# 基本用法 1：从文件夹读取序列帧\n./skills/gif-maker/scripts/run.sh /path/to/frame_folder --output my_anim.gif\n\n# 基本用法 2：从单张精灵表生成 (需要指定布局)\n./skills/gif-maker/scripts/run.sh /path/to/sheet.png --layout 4x4 --output my_sheet_anim.gif\n\n# 常用选项：\n# - 指定 FPS (例如 24)\n./skills/gif-maker/scripts/run.sh /path/to/folder --fps 24\n\n# - 开启自动压缩 (限制文件大小在 950KB 以内)\n./skills/gif-maker/scripts/run.sh /path/to/folder --max-size 950"
      },
      {
        "title": "2. (可选) 手动安装",
        "body": "如果您希望手动管理环境（注意：压缩功能依赖 gifsicle 工具，请确保系统已安装）：\n\nmacOS: brew install gifsicle\nUbuntu: sudo apt-get install gifsicle\n\npython3 -m venv skills/gif-maker/.venv\nsource skills/gif-maker/.venv/bin/activate\npip install -r skills/gif-maker/requirements.txt\npython3 skills/gif-maker/scripts/make_gif.py ..."
      },
      {
        "title": "参数说明",
        "body": "source: 输入路径。可以是包含图片的文件夹，也可以是单张图片文件。\n--output (-o): 输出 GIF 文件名，默认为 output.gif。\n--fps: 帧率，默认为 12。\n--layout: 仅当 source 为单文件时使用，格式为 行数x列数 (如 4x4)。\n--max-size: (可选) 启用 GIF 压缩，指定目标文件最大大小 (KB)。仅当原始文件超过此大小时才会尝试压缩。"
      },
      {
        "title": "示例",
        "body": "假设你有一个文件夹 frames/ 包含 01.png, 02.png ... 10.png：\n\n./skills/gif-maker/scripts/run.sh frames/ -o animation.gif --fps 15\n\n假设你有一张 sheet.png 是 4x4 的动作序列，且需要生成符合微信表情包规范（<1MB）的 GIF：\n\n./skills/gif-maker/scripts/run.sh sheet.png --layout 4x4 -o action.gif --max-size 950"
      }
    ],
    "body": "GIF 动画生成器 (GIF Maker)\n\n本 Skill 旨在帮助用户快速将一组序列帧图片或单张精灵表（Sprite Sheet）转换为 GIF 动画。\n\n核心功能\n序列帧转 GIF：支持读取文件夹内的 png, jpg 序列，按文件名排序合成 GIF。\n精灵表转 GIF：支持读取单张 Grid 图片（如 4x4 精灵表），自动切分并合成为 GIF。\n智能压缩：支持通过 --max-size 参数指定目标文件大小（如 950KB），自动调整压缩参数以满足微信表情包等平台的体积限制。\n参数控制：\n--fps：指定每秒帧数（默认为 12）。\n--layout：指定精灵表布局（如 4x4），仅在这个模式下需要。\n--loop：默认永久循环。\n--max-size: 指定最大体积 (KB)。\n使用指南\n1. 快速开始\n\n无需手动安装依赖，直接运行脚本即可。工具会自动创建虚拟环境 (.venv) 并安装所需依赖。\n\n# 基本用法 1：从文件夹读取序列帧\n./skills/gif-maker/scripts/run.sh /path/to/frame_folder --output my_anim.gif\n\n# 基本用法 2：从单张精灵表生成 (需要指定布局)\n./skills/gif-maker/scripts/run.sh /path/to/sheet.png --layout 4x4 --output my_sheet_anim.gif\n\n# 常用选项：\n# - 指定 FPS (例如 24)\n./skills/gif-maker/scripts/run.sh /path/to/folder --fps 24\n\n# - 开启自动压缩 (限制文件大小在 950KB 以内)\n./skills/gif-maker/scripts/run.sh /path/to/folder --max-size 950\n\n2. (可选) 手动安装\n\n如果您希望手动管理环境（注意：压缩功能依赖 gifsicle 工具，请确保系统已安装）：\n\nmacOS: brew install gifsicle\nUbuntu: sudo apt-get install gifsicle\npython3 -m venv skills/gif-maker/.venv\nsource skills/gif-maker/.venv/bin/activate\npip install -r skills/gif-maker/requirements.txt\npython3 skills/gif-maker/scripts/make_gif.py ...\n\n参数说明\nsource: 输入路径。可以是包含图片的文件夹，也可以是单张图片文件。\n--output (-o): 输出 GIF 文件名，默认为 output.gif。\n--fps: 帧率，默认为 12。\n--layout: 仅当 source 为单文件时使用，格式为 行数x列数 (如 4x4)。\n--max-size: (可选) 启用 GIF 压缩，指定目标文件最大大小 (KB)。仅当原始文件超过此大小时才会尝试压缩。\n示例\n\n假设你有一个文件夹 frames/ 包含 01.png, 02.png ... 10.png：\n\n./skills/gif-maker/scripts/run.sh frames/ -o animation.gif --fps 15\n\n\n假设你有一张 sheet.png 是 4x4 的动作序列，且需要生成符合微信表情包规范（<1MB）的 GIF：\n\n./skills/gif-maker/scripts/run.sh sheet.png --layout 4x4 -o action.gif --max-size 950"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/guanyang/gif-maker",
    "publisherUrl": "https://clawhub.ai/guanyang/gif-maker",
    "owner": "guanyang",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gif-maker",
    "downloadUrl": "https://openagent3.xyz/downloads/gif-maker",
    "agentUrl": "https://openagent3.xyz/skills/gif-maker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gif-maker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gif-maker/agent.md"
  }
}