Flutter Animations
Flutter 动画:使用 Flutter 框架创建流畅的移动应用动画效果。
npx skills add madteacher/mad-agents-skills@flutter-animationsSlack GIF 创建器:为 Slack 工作区生成和分享动画 GIF 内容。
# Install Skill npx skills add anthropics/skills@slack-gif-creator # Claude Code will auto-detect and use it after installation
# Same install command — works with all SKILL.md-compatible AI coding tools npx skills add anthropics/skills@slack-gif-creator
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)
from PIL import Image
uploaded = Image.open('file.png')
# Use directly, or just as reference for colors/style
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, b), width=3)
# Lines
draw.line([(x1, y1), (x2, y2)], fill=(r, g, b), width=5)
# Rectangles
draw.rectangle([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3)
width=2 or higher for outlines and lines. Thin lines (width=1) look choppy and amateurish.create_gradient_background)core.gif_builder)builder = GIFBuilder(width=128, height=128, fps=10)
builder.add_frame(frame) # Add PIL Image
builder.add_frames(frames) # Add list of frames
builder.save('out.gif', num_colors=48, optimize_for_emoji=True, remove_duplicates=True)
core.validators)from core.validators import validate_gif, is_slack_ready
# Detailed validation
passes, info = validate_gif('my.gif', is_emoji=True, verbose=True)
# Quick check
if is_slack_ready('my.gif'):
print("Ready!")
core.easing)from core.easing import interpolate
# Progress from 0.0 to 1.0
t = i / (num_frames - 1)
# Apply easing
y = interpolate(start=0, end=400, t=t, easing='ease_out')
# Available: linear, ease_in, ease_out, ease_in_out,
# bounce_out, elastic_out, back_out
core.frame_composer)from core.frame_composer import (
create_blank_frame, # Solid color background
create_gradient_background, # Vertical gradient
draw_circle, # Helper for circles
draw_text, # Simple text rendering
draw_star # 5-pointed star
)
math.sin() or math.cos() with frame indexmath.sin(t * frequency * 2 * math.pi) for smooth pulseinterpolate() with easing='bounce_out' for landingeasing='ease_in' for falling (accelerating)image.rotate(angle, resample=Image.BICUBIC)Image.blend(image1, image2, alpha)interpolate() with easing='ease_out' for smooth stopeasing='back_out'x += vx, y += vyvy += gravity_constantnum_colors=48 instead of 128remove_duplicates=True in save()optimize_for_emoji=True auto-optimizes# Maximum optimization for emoji
builder.save(
'emoji.gif',
num_colors=48,
optimize_for_emoji=True,
remove_duplicates=True
)
pip install pillow imageio numpy
npx skills add anthropics/skills@slack-gif-creator && skills slack-gif-creator --text "Great job!" --duration 2500 --output slack_celebration.gifFlutter 动画:使用 Flutter 框架创建流畅的移动应用动画效果。
npx skills add madteacher/mad-agents-skills@flutter-animationsReal cold-start runs of this skill on Claude Code and Codex.
Input: Following the skill’s Slack emoji constraints (128×128, ~10fps, <3s, ≤48 colors, looping, optimized), draw a "skills.video" play-button motif programmatically with PIL (pulsing rounded triangle + accent sweep on an indigo→violet background) and save a valid optimized looping GIF under 128 KB.
Built 18 PIL-drawn frames (indigo→violet gradient, blurred-mask rounded play triangle that pulses, a pulsing glow halo, and a cyan accent sweep clipped to the triangle), then shared-palette MEDIANCUT-quantized to 48 colors and saved an optimized looping GIF. No friction.

claude-opus-4-8
Front-loaded everything into ONE Python heredoc (generate + reopen-and-validate in a single shell action): 4× supersampled frames for smooth edges, indigo/violet gradient with cyan/pink/gold sweep accents, 24 frames quantized to 48 colors. 23.8k tokens.

codex-cli 0.140
Output: Both: valid 128×128 looping GIF89a Slack emoji, ≤48 colors, well under the 128 KB limit (Claude 18 frames / 1.8s / 52.6 KB; Codex 24 frames / 2.4s / 63.7 KB).
Verdict: Both meet every Slack emoji constraint (128×128, 10fps, ≤3s, ≤48 colors, looping, <128 KB) — both pass. Creative split matches prior reports: Claude minimal/clean (single off-white triangle + soft glow); Codex more decorated (multi-color sweep + 4× supersampled edges). Another simple-single-output data point: Codex compressed the whole job into ONE script action (vs Claude’s 5) and Claude was a touch faster on wall-clock — the action gap that favors Claude only shows on complex multi-step work.
Environment: macOS · Python 3 + Pillow · symmetric cold start (codex exec vs a fresh Claude Code subagent). Equivalent-workflow run — the skill is a PIL GIFBuilder toolkit; both agents drew frames with PIL directly under the skill’s Slack emoji constraints. No network.