slack-gif-creator

slack-gif-creator is a skill for Claude Code, Codex from Prismer-AI/PrismerCloud. It costs 51 tokens per session (2,174 once invoked), scanned A, a copy of slack-gif-creator, MIT.

A toolkit for making animated GIFs sized and compressed for Slack, a workplace messaging app.

In plain words
What is it for?
Use it to create Slack emoji or message GIFs, check their technical constraints, develop animation ideas, and deliver the finished file.
Why use it?
It provides Slack-specific size, frame-rate, colour, and duration guidance plus validation and animation utilities, helping avoid oversized or unsuitable GIFs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create Slack emoji or message GIFs, check their technical constraints, develop animation ideas, and deliver the finished file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/prismer-ai/prismercloud/slack-gif-creator
About the project

Prismer Cloud is an infrastructure layer for AI agents that provides shared learning, compressed context, persistent memory, collaboration, messaging, tasks, identity, and workspaces. It is for agents and the people building or using long-running agent systems that need information and outcomes to persist across sessions. The catalogue entries provide skills, hooks, agents, instructions, and a plugin for using Prismer Cloud.

Prismer-AI/PrismerCloud · 1,534 stars · on GitHub · prismer.cloud

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 Prismer-AI/PrismerCloud --skill slack-gif-creator
Clone the repo
git clone --depth 1 https://github.com/Prismer-AI/PrismerCloud

Made for: Claude Code, Codex.

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 slack-gif-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/prismer-ai/prismercloud/slack-gif-creator/github.svg)](https://agentmods.dev/skills/prismer-ai/prismercloud/slack-gif-creator)
Your own site
<a href="https://agentmods.dev/skills/prismer-ai/prismercloud/slack-gif-creator"><img src="https://agentmods.dev/badge/skills/prismer-ai/prismercloud/slack-gif-creator/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 slack-gif-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/prismer-ai/prismercloud/slack-gif-creator"><img src="https://agentmods.dev/badge/skills/prismer-ai/prismercloud/slack-gif-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,174 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% copy Near-identical to another mod 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.00051 $0.02174
Opus 5 $0.00026 $0.01087
Sonnet 5 $0.00010 $0.00435
Haiku 4.5 $0.00005 $0.00217

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

Security

Grade A, and why

slack-gif-creator scanned grade A with 0 findings 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 11d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (core/easing.py, core/frame_composer.py, core/gif_builder.py, …), 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

86% identical to slack-gif-creator — 17 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

sdk/prismer-cloud/built-in-skills/slack-gif-creator/SKILL.md · 272 lines

How it starts

The opening of the file, as written. The whole thing — 272 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Delivering the GIF

When this skill finishes producing an animated GIF (output.gif), deliver it with the standard delivery commandscloud deliver <abs-path> to attach it to your reply, or cloud file send "$PRISMER_CONVERSATION_ID" <abs-path> to send it as a standalone message. See the office-artifacts delivery contract for the full rules (incl. the hermes --run-id / --conversation-id flags).

Do NOT hand-build POST /api/im/assets calls or assemble ContentBlock JSON yourself, and do NOT paste a data:image/gif;base64,… URI or a local ./output.gif path into the reply body — local paths break the moment the daemon is restarted and base64 defeats caching. The delivery command registers the asset so the chat renderer surfaces the GIF preview automatically.

Slack GIF Creator

A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack.

Slack Requirements

Dimensions:

  • Emoji GIFs: 128x128 (recommended)
  • Message GIFs: 480x480

Parameters:

  • FPS: 10-30 (lower is smaller file size)
  • Colors: 48-128 (fewer = smaller file size)
  • Duration: Keep under 3 seconds for emoji GIFs

Core Workflow

from core.gif_builder import GIFBuilder
from PIL import Image, ImageDraw

# 1. Create builder
builder = GIFBuilder(width=128, height=128, fps=10)

# 2. Generate frames
for i in range(12):
    frame = Image.new('RGB', (128, 128), (240, 248, 255))
    draw = ImageDraw.Draw(frame)

    # Draw your animation using PIL primitives
    # (circles, polygons, lines, etc.)

    builder.add_frame(frame)

# 3. Save with optimization
builder.save('output.gif', num_colors=48, optimize_for_emoji=True)

Drawing Graphics

Working with User-Uploaded Images

If a user uploads an image, consider whether they want to:

  • Use it directly (e.g., "animate this", "split this into frames")
  • Use it as inspiration (e.g., "make something like this")

Load and work with images using PIL:

from PIL import Image

uploaded = Image.open('file.png')
# Use directly, or just as reference for colors/style

Read the full file on GitHub · 272 lines

Files

What ships with it

6 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. 11d ago First seen · 272 lines · 51 tokens per session scan A 6080b145f67a

Subscribe to this mod's changes

slack-gif-creator is a skill published in the GitHub repository Prismer-AI/PrismerCloud (1,534 stars, last pushed 1mo ago), licensed MIT. It adds 51 tokens to every session and 2,174 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to slack-gif-creator, differing in 17 lines, and is treated as a copy.

Related

Other skills, from other repositories

openai-whisper-api

Transcribe audio via OpenAI Audio Transcriptions API (Whisper).

Bitterbot-AI/bitterbot-desktop · 20 tokens

create-workflow-diagram

Create FigJam/Miro-style workflow diagrams as high-quality PNG images from plain-text workflow descriptions. Renders beautiful HTML diagrams with connected nodes, arrows, and labels, then screenshots them for sharing.

gooseworks-ai/goose-skills · 45 tokens

seedance-2-5

Generate 4-30 second cinematic video with ByteDance Seedance 2.5 through fal.ai, Volcengine Ark, Runway, or ComfyUI Partner Nodes. Use for long single generations, synchronized audio, and large multimodal reference sets (up to 30 images, 10 videos, and 10 audio clips). Also covers the 2.5 prompt contract: section…

calesthio/OpenMontage · 117 tokens

create-chatgpt-mockup

Render pixel-accurate ChatGPT mobile (iOS) screen mockups in light mode from a thread JSON. Supports user text bubbles, user image attachments, assistant markdown prose, citation chips, the OpenAI spiral logo, the Apps-SDK GPT chip in the composer, and three header styles (model-tag, plain title, "Get Plus"). Fixed…

gooseworks-ai/goose-skills · 90 tokens

comfyui

Use when working with ComfyUI workflows in OpenMontage, including comfyuiimage/comfyuivideo/comfyuimusic, custom workflowjson/workflowpath inputs, outputnode selection, missing model setup, LoRAs, low-VRAM workflow choices, and community workflow imports.

calesthio/OpenMontage · 61 tokens

lyria

Generate and validate music with Google Lyria 3 through the Gemini Interactions API. Use before calling OpenMontage googlemusic, designing Lyria 3 Clip or Pro prompts, using image-to-music or custom lyrics, choosing between Lyria 3 and Lyria RealTime, diagnosing Google music-generation failures, or preparing…

calesthio/OpenMontage · 76 tokens