ClawShelf
  • Home
  • Skills
  • Starter Kit
  • Pricing
  • FAQ
Sign up
ClawShelf
ClawShelf

The Starter Kit for OpenClaw.

TwitterX (Twitter)Email
Product
  • Home
  • Skills
  • Starter Kit
  • FAQ
Resources
  • Support
Legal
  • Cookie Policy
  • Privacy Policy
  • Terms of Service
  • Refund Policy
Copyright © 2026 ClawShelf. All rights reserved.
Back to marketplace
Free✓ Official
designFree✓ Official

slack-gif-creator

Create custom animated GIFs for Slack with built-in validation and optimization tools ensuring perfect display every time.

12.4kdownloads·110.3kfavorites·5(review)
A
by anthropics

About this skill

Stop guessing Slack's strict dimension and file size limits that often break your custom animations. This toolkit provides validated builders, easing functions, and optimization utilities to generate polished GIFs using PIL primitives. You can create custom emoji or message graphics from scratch or uploaded images with guaranteed platform compatibility. Perfect for developers needing reliable, high-quality animated assets without manual trial and error.

Install in 5 Minutes

Copy the prompt below and paste it into OpenClaw:

Please follow the instructions at https://clawshelf.com/api/skills/anthropics-slack-gif-creator/install to download and install this skill to the local ~/.openclaw/skills/ directory.

File Preview

Package contents

  • SKILL.md
SKILL.md
---
name: slack-gif-creator
description: Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack."
license: Complete terms in LICENSE.txt
---

# 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
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:
```python
from PIL import Image

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

### Drawing from Scratch
When drawing graphics from scratch, use PIL ImageDraw primitives:

```python
from PIL import ImageDraw

draw = ImageDraw.Draw(frame)

# Circles/ovals
draw.ellipse([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3)

# Stars, triangles, any polygon
points = [(x1, y1), (x2, y2), (x3, y3), ...]
draw.polygon(points, fill=(r, g, b), outline=(r, g, 

Works great with

Reviews

5
1 review
5
1
4
0
3
0
2
0
1
0

Sign in to leave a review

No reviews yet. Be the first to review this skill.

$0

One-time purchase · Lifetime updates

100% native OpenClaw / Claude support

Creator
A
anthropics
TypeSkill
Categorydesign
Price$0
Added3/29/2026
LicenseOne-time
Downloads12,443
Favorites110,272
Rating5 ★ (1)
Version1.0.0
Sourcegithub.com
design
brand-guidelines

Apply Anthropic's official brand colors and typography to any artifact for instant corporate styling.

$0
design
canvas-design

Craft original visual masterpieces and posters using deep design philosophies expressed as high-fidelity PDF or PNG artifacts.

$0
design
theme-factory

Apply professional themes to your slides and documents instantly using ten preset palettes or custom themes for consistent branding.

$0