slack-gif-creator Skill
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." Published by anthropics in skills.
What is slack-gif-creator Skill?
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." Published by anthropics in skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Design and media
- Design and media use cases
Technical details
- Install or run with Copy skill directory
When to use slack-gif-creator Skill
- Use it for design and media.
Built with
Editorial notes
Source
- Creator: anthropics
- Repository: anthropics/skills
- Skill file: skills/slack-gif-creator/SKILL.md
What it does
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."
Skill instructions
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.gifbuilder 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.addframe(frame) 3. Save with optimization builder.save('output.gif', numcolors=48, optimizeforemoji=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") -
Explore related resources
Frequently asked questions
What is slack-gif-creator?
slack-gif-creator is a open-source AI agent skill with Copy skill directory. Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts.
Who is slack-gif-creator best for?
slack-gif-creator is best for reusing agent instructions, scripts, and references, design and media workflows.
How do I install slack-gif-creator?
Install or run slack-gif-creator using Copy skill directory. Check slack-gif-creator for the latest setup command.
Is slack-gif-creator actively maintained?
slack-gif-creator may need a closer maintenance check before production use.
Auto-fetched from GitHub.