slack-gif-creator — for Claude Code slack-gif-creator, official, for Claude Code, ide skills, animated GIF creation, Slack optimization, PIL image processing, GIF optimization techniques, custom animation development, Slack integration tools

Verified
v1.0.0

About this Skill

Perfect for Visual Content Agents needing advanced animated GIF creation capabilities for Slack. slack-gif-creator is a toolkit for creating animated GIFs optimized for Slack, providing constraints, validation tools, and animation concepts for developers.

Features

Create animated GIFs using PIL
Optimize GIFs for Slack with specific dimensions and parameters
Draw graphics from scratch using PIL ImageDraw primitives
Work with user-uploaded images for custom animations
Save GIFs with optimization for smaller file sizes

# Core Topics

anthropics anthropics
[103.1k]
[11336]
Updated: 3/26/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 11/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
11/11
Quality Score
71
Canonical Locale
en
Detected Body Locale
en

Perfect for Visual Content Agents needing advanced animated GIF creation capabilities for Slack. slack-gif-creator is a toolkit for creating animated GIFs optimized for Slack, providing constraints, validation tools, and animation concepts for developers.

Core Value

Empowers agents to generate optimized animated GIFs for Slack using Python libraries like PIL, with specific constraints such as 128x128 dimensions for emoji GIFs and 10-30 FPS for smaller file sizes.

Ideal Agent Persona

Perfect for Visual Content Agents needing advanced animated GIF creation capabilities for Slack.

Capabilities Granted for slack-gif-creator

Generating animated GIFs for Slack with custom dimensions and FPS
Creating optimized emoji GIFs under 3 seconds for Slack
Validating GIF parameters such as colors and duration for Slack compatibility

! Prerequisites & Limits

  • Requires Python and PIL library
  • Limited to GIF file format
  • Specific dimension and FPS constraints for Slack optimization

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Curated Collection Review

Reviewed In Curated Collections

This section shows how Killer-Skills has already collected, reviewed, and maintained this skill inside first-party curated paths. For operators and crawlers alike, this is a stronger signal than treating the upstream README as the primary story.

Reviewed Collection

Claude Code Workflow Tools to Install First

Reviewed 2026-04-17

Reviewed on 2026-04-17 for setup clarity, maintainer reliability, review coverage, and operator handoff readiness. We kept the tools that make Claude Code easier to trial and easier to standardize.

People landing here usually already know they want Claude Code. What they need next is a smaller list tied to review, guardrails, and handoff instead of another broad skills roundup.

6 entries Killer-Skills editorial review with monthly collection checks.
Reviewed Collection

Windsurf Workflow Tools to Install First

Reviewed 2026-04-17

Reviewed on 2026-04-17 for setup clarity, maintainer reliability, review support, and handoff readiness. We kept the tools that make Windsurf easier to trial, explain, and standardize.

People landing here usually already know they want Windsurf. What they need next is a smaller list tied to coding speed, review support, rules sync, and handoff instead of another broad skills roundup.

5 entries Killer-Skills editorial review with monthly collection checks.
Reviewed Collection

12 Official AI Agent Skills & Trusted Tools to Install First

Reviewed 2026-04-16

Reviewed on 2026-04-16 for first-party ownership, documentation quality, install clarity, and production relevance. This is the safest collection to use as a default starting point.

We prioritize this page because it lets users verify trust first and then move into one clear installation path instead of bouncing across more repo lists.

12 entries Maintained through Killer-Skills editorial review with trust, install-path, and operator checks.
After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is slack-gif-creator?

Perfect for Visual Content Agents needing advanced animated GIF creation capabilities for Slack. slack-gif-creator is a toolkit for creating animated GIFs optimized for Slack, providing constraints, validation tools, and animation concepts for developers.

How do I install slack-gif-creator?

Run the command: npx killer-skills add anthropics/skills/slack-gif-creator. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for slack-gif-creator?

Key use cases include: Generating animated GIFs for Slack with custom dimensions and FPS, Creating optimized emoji GIFs under 3 seconds for Slack, Validating GIF parameters such as colors and duration for Slack compatibility.

Which IDEs are compatible with slack-gif-creator?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for slack-gif-creator?

Requires Python and PIL library. Limited to GIF file format. Specific dimension and FPS constraints for Slack optimization.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add anthropics/skills/slack-gif-creator. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use slack-gif-creator immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

slack-gif-creator

Create optimized animated GIFs for Slack with the slack-gif-creator AI agent skill, perfect for developers using Claude Code, Cursor, or Windsurf, and boost...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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

python
1from core.gif_builder import GIFBuilder 2from PIL import Image, ImageDraw 3 4# 1. Create builder 5builder = GIFBuilder(width=128, height=128, fps=10) 6 7# 2. Generate frames 8for i in range(12): 9 frame = Image.new('RGB', (128, 128), (240, 248, 255)) 10 draw = ImageDraw.Draw(frame) 11 12 # Draw your animation using PIL primitives 13 # (circles, polygons, lines, etc.) 14 15 builder.add_frame(frame) 16 17# 3. Save with optimization 18builder.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:

python
1from PIL import Image 2 3uploaded = Image.open('file.png') 4# Use directly, or just as reference for colors/style

Drawing from Scratch

When drawing graphics from scratch, use PIL ImageDraw primitives:

python
1from PIL import ImageDraw 2 3draw = ImageDraw.Draw(frame) 4 5# Circles/ovals 6draw.ellipse([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3) 7 8# Stars, triangles, any polygon 9points = [(x1, y1), (x2, y2), (x3, y3), ...] 10draw.polygon(points, fill=(r, g, b), outline=(r, g, b), width=3) 11 12# Lines 13draw.line([(x1, y1), (x2, y2)], fill=(r, g, b), width=5) 14 15# Rectangles 16draw.rectangle([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3)

Don't use: Emoji fonts (unreliable across platforms) or assume pre-packaged graphics exist in this skill.

Making Graphics Look Good

Graphics should look polished and creative, not basic. Here's how:

Use thicker lines - Always set width=2 or higher for outlines and lines. Thin lines (width=1) look choppy and amateurish.

Add visual depth:

  • Use gradients for backgrounds (create_gradient_background)
  • Layer multiple shapes for complexity (e.g., a star with a smaller star inside)

Make shapes more interesting:

  • Don't just draw a plain circle - add highlights, rings, or patterns
  • Stars can have glows (draw larger, semi-transparent versions behind)
  • Combine multiple shapes (stars + sparkles, circles + rings)

Pay attention to colors:

  • Use vibrant, complementary colors
  • Add contrast (dark outlines on light shapes, light outlines on dark shapes)
  • Consider the overall composition

For complex shapes (hearts, snowflakes, etc.):

  • Use combinations of polygons and ellipses
  • Calculate points carefully for symmetry
  • Add details (a heart can have a highlight curve, snowflakes have intricate branches)

Be creative and detailed! A good Slack GIF should look polished, not like placeholder graphics.

Available Utilities

GIFBuilder (core.gif_builder)

Assembles frames and optimizes for Slack:

python
1builder = GIFBuilder(width=128, height=128, fps=10) 2builder.add_frame(frame) # Add PIL Image 3builder.add_frames(frames) # Add list of frames 4builder.save('out.gif', num_colors=48, optimize_for_emoji=True, remove_duplicates=True)

Validators (core.validators)

Check if GIF meets Slack requirements:

python
1from core.validators import validate_gif, is_slack_ready 2 3# Detailed validation 4passes, info = validate_gif('my.gif', is_emoji=True, verbose=True) 5 6# Quick check 7if is_slack_ready('my.gif'): 8 print("Ready!")

Easing Functions (core.easing)

Smooth motion instead of linear:

python
1from core.easing import interpolate 2 3# Progress from 0.0 to 1.0 4t = i / (num_frames - 1) 5 6# Apply easing 7y = interpolate(start=0, end=400, t=t, easing='ease_out') 8 9# Available: linear, ease_in, ease_out, ease_in_out, 10# bounce_out, elastic_out, back_out

Frame Helpers (core.frame_composer)

Convenience functions for common needs:

python
1from core.frame_composer import ( 2 create_blank_frame, # Solid color background 3 create_gradient_background, # Vertical gradient 4 draw_circle, # Helper for circles 5 draw_text, # Simple text rendering 6 draw_star # 5-pointed star 7)

Animation Concepts

Shake/Vibrate

Offset object position with oscillation:

  • Use math.sin() or math.cos() with frame index
  • Add small random variations for natural feel
  • Apply to x and/or y position

Pulse/Heartbeat

Scale object size rhythmically:

  • Use math.sin(t * frequency * 2 * math.pi) for smooth pulse
  • For heartbeat: two quick pulses then pause (adjust sine wave)
  • Scale between 0.8 and 1.2 of base size

Bounce

Object falls and bounces:

  • Use interpolate() with easing='bounce_out' for landing
  • Use easing='ease_in' for falling (accelerating)
  • Apply gravity by increasing y velocity each frame

Spin/Rotate

Rotate object around center:

  • PIL: image.rotate(angle, resample=Image.BICUBIC)
  • For wobble: use sine wave for angle instead of linear

Fade In/Out

Gradually appear or disappear:

  • Create RGBA image, adjust alpha channel
  • Or use Image.blend(image1, image2, alpha)
  • Fade in: alpha from 0 to 1
  • Fade out: alpha from 1 to 0

Slide

Move object from off-screen to position:

  • Start position: outside frame bounds
  • End position: target location
  • Use interpolate() with easing='ease_out' for smooth stop
  • For overshoot: use easing='back_out'

Zoom

Scale and position for zoom effect:

  • Zoom in: scale from 0.1 to 2.0, crop center
  • Zoom out: scale from 2.0 to 1.0
  • Can add motion blur for drama (PIL filter)

Explode/Particle Burst

Create particles radiating outward:

  • Generate particles with random angles and velocities
  • Update each particle: x += vx, y += vy
  • Add gravity: vy += gravity_constant
  • Fade out particles over time (reduce alpha)

Optimization Strategies

Only when asked to make the file size smaller, implement a few of the following methods:

  1. Fewer frames - Lower FPS (10 instead of 20) or shorter duration
  2. Fewer colors - num_colors=48 instead of 128
  3. Smaller dimensions - 128x128 instead of 480x480
  4. Remove duplicates - remove_duplicates=True in save()
  5. Emoji mode - optimize_for_emoji=True auto-optimizes
python
1# Maximum optimization for emoji 2builder.save( 3 'emoji.gif', 4 num_colors=48, 5 optimize_for_emoji=True, 6 remove_duplicates=True 7)

Philosophy

This skill provides:

  • Knowledge: Slack's requirements and animation concepts
  • Utilities: GIFBuilder, validators, easing functions
  • Flexibility: Create the animation logic using PIL primitives

It does NOT provide:

  • Rigid animation templates or pre-made functions
  • Emoji font rendering (unreliable across platforms)
  • A library of pre-packaged graphics built into the skill

Note on user uploads: This skill doesn't include pre-built graphics, but if a user uploads an image, use PIL to load and work with it - interpret based on their request whether they want it used directly or just as inspiration.

Be creative! Combine concepts (bouncing + rotating, pulsing + sliding, etc.) and use PIL's full capabilities.

Dependencies

bash
1pip install pillow imageio numpy

Related Skills

Looking for an alternative to slack-gif-creator or another official skill for your workflow? Explore these related open-source skills.

View All

flags

Logo of facebook
facebook

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.

244.2k
0
Developer

extract-errors

Logo of facebook
facebook

extract-errors is a React error handling skill that automates the process of extracting and assigning error codes, ensuring accurate and up-to-date error messages in React applications.

244.2k
0
Developer

fix

Logo of facebook
facebook

fix is a code optimization skill that automates formatting and linting using yarn prettier and linc.

244.2k
0
Developer

flow

Logo of facebook
facebook

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

244.2k
0
Developer