[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-slack-gif-creator":3,"mdc-6t782-key":53,"related-repo-composio-slack-gif-creator":4266,"related-org-composio-slack-gif-creator":4354},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":48,"sourceUrl":51,"mdContent":52},"slack-gif-creator","create animated GIFs for Slack","Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like \"make me a GIF for Slack of X doing Y\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[13,17,20,23],{"name":14,"slug":15,"type":16},"Media","media","tag",{"name":18,"slug":19,"type":16},"Creative","creative",{"name":21,"slug":22,"type":16},"Animation","animation",{"name":24,"slug":25,"type":16},"Slack","slack",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-12T08:09:18.023575","Complete terms in LICENSE.txt",7603,[32,33,34,35,36,37,38,8,39,40,41,42,43,44,45,46,47],"agent-skills","ai-agents","antigravity","automation","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":27,"stars":26,"forks":30,"topics":49,"description":50},[32,33,34,35,36,37,38,8,39,40,41,42,43,44,45,46,47],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fslack-gif-creator","---\nname: slack-gif-creator\ndescription: Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like \"make me a GIF for Slack of X doing Y\".\nlicense: Complete terms in LICENSE.txt\n---\n\n# Slack GIF Creator - Flexible Toolkit\n\nA toolkit for creating animated GIFs optimized for Slack. Provides validators for Slack's constraints, composable animation primitives, and optional helper utilities. **Apply these tools however needed to achieve the creative vision.**\n\n## Slack's Requirements\n\nSlack has specific requirements for GIFs based on their use:\n\n**Message GIFs:**\n- Max size: ~2MB\n- Optimal dimensions: 480x480\n- Typical FPS: 15-20\n- Color limit: 128-256\n- Duration: 2-5s\n\n**Emoji GIFs:**\n- Max size: 64KB (strict limit)\n- Optimal dimensions: 128x128\n- Typical FPS: 10-12\n- Color limit: 32-48\n- Duration: 1-2s\n\n**Emoji GIFs are challenging** - the 64KB limit is strict. Strategies that help:\n- Limit to 10-15 frames total\n- Use 32-48 colors maximum\n- Keep designs simple\n- Avoid gradients\n- Validate file size frequently\n\n## Toolkit Structure\n\nThis skill provides three types of tools:\n\n1. **Validators** - Check if a GIF meets Slack's requirements\n2. **Animation Primitives** - Composable building blocks for motion (shake, bounce, move, kaleidoscope)\n3. **Helper Utilities** - Optional functions for common needs (text, colors, effects)\n\n**Complete creative freedom is available in how these tools are applied.**\n\n## Core Validators\n\nTo ensure a GIF meets Slack's constraints, use these validators:\n\n```python\nfrom core.gif_builder import GIFBuilder\n\n# After creating your GIF, check if it meets requirements\nbuilder = GIFBuilder(width=128, height=128, fps=10)\n# ... add your frames however you want ...\n\n# Save and check size\ninfo = builder.save('emoji.gif', num_colors=48, optimize_for_emoji=True)\n\n# The save method automatically warns if file exceeds limits\n# info dict contains: size_kb, size_mb, frame_count, duration_seconds\n```\n\n**File size validator**:\n```python\nfrom core.validators import check_slack_size\n\n# Check if GIF meets size limits\npasses, info = check_slack_size('emoji.gif', is_emoji=True)\n# Returns: (True\u002FFalse, dict with size details)\n```\n\n**Dimension validator**:\n```python\nfrom core.validators import validate_dimensions\n\n# Check dimensions\npasses, info = validate_dimensions(128, 128, is_emoji=True)\n# Returns: (True\u002FFalse, dict with dimension details)\n```\n\n**Complete validation**:\n```python\nfrom core.validators import validate_gif, is_slack_ready\n\n# Run all validations\nall_pass, results = validate_gif('emoji.gif', is_emoji=True)\n\n# Or quick check\nif is_slack_ready('emoji.gif', is_emoji=True):\n    print(\"Ready to upload!\")\n```\n\n## Animation Primitives\n\nThese are composable building blocks for motion. Apply these to any object in any combination:\n\n### Shake\n```python\nfrom templates.shake import create_shake_animation\n\n# Shake an emoji\nframes = create_shake_animation(\n    object_type='emoji',\n    object_data={'emoji': '😱', 'size': 80},\n    num_frames=20,\n    shake_intensity=15,\n    direction='both'  # or 'horizontal', 'vertical'\n)\n```\n\n### Bounce\n```python\nfrom templates.bounce import create_bounce_animation\n\n# Bounce a circle\nframes = create_bounce_animation(\n    object_type='circle',\n    object_data={'radius': 40, 'color': (255, 100, 100)},\n    num_frames=30,\n    bounce_height=150\n)\n```\n\n### Spin \u002F Rotate\n```python\nfrom templates.spin import create_spin_animation, create_loading_spinner\n\n# Clockwise spin\nframes = create_spin_animation(\n    object_type='emoji',\n    object_data={'emoji': '🔄', 'size': 100},\n    rotation_type='clockwise',\n    full_rotations=2\n)\n\n# Wobble rotation\nframes = create_spin_animation(rotation_type='wobble', full_rotations=3)\n\n# Loading spinner\nframes = create_loading_spinner(spinner_type='dots')\n```\n\n### Pulse \u002F Heartbeat\n```python\nfrom templates.pulse import create_pulse_animation, create_attention_pulse\n\n# Smooth pulse\nframes = create_pulse_animation(\n    object_data={'emoji': '❤️', 'size': 100},\n    pulse_type='smooth',\n    scale_range=(0.8, 1.2)\n)\n\n# Heartbeat (double-pump)\nframes = create_pulse_animation(pulse_type='heartbeat')\n\n# Attention pulse for emoji GIFs\nframes = create_attention_pulse(emoji='⚠️', num_frames=20)\n```\n\n### Fade\n```python\nfrom templates.fade import create_fade_animation, create_crossfade\n\n# Fade in\nframes = create_fade_animation(fade_type='in')\n\n# Fade out\nframes = create_fade_animation(fade_type='out')\n\n# Crossfade between two emojis\nframes = create_crossfade(\n    object1_data={'emoji': '😊', 'size': 100},\n    object2_data={'emoji': '😂', 'size': 100}\n)\n```\n\n### Zoom\n```python\nfrom templates.zoom import create_zoom_animation, create_explosion_zoom\n\n# Zoom in dramatically\nframes = create_zoom_animation(\n    zoom_type='in',\n    scale_range=(0.1, 2.0),\n    add_motion_blur=True\n)\n\n# Zoom out\nframes = create_zoom_animation(zoom_type='out')\n\n# Explosion zoom\nframes = create_explosion_zoom(emoji='💥')\n```\n\n### Explode \u002F Shatter\n```python\nfrom templates.explode import create_explode_animation, create_particle_burst\n\n# Burst explosion\nframes = create_explode_animation(\n    explode_type='burst',\n    num_pieces=25\n)\n\n# Shatter effect\nframes = create_explode_animation(explode_type='shatter')\n\n# Dissolve into particles\nframes = create_explode_animation(explode_type='dissolve')\n\n# Particle burst\nframes = create_particle_burst(particle_count=30)\n```\n\n### Wiggle \u002F Jiggle\n```python\nfrom templates.wiggle import create_wiggle_animation, create_excited_wiggle\n\n# Jello wobble\nframes = create_wiggle_animation(\n    wiggle_type='jello',\n    intensity=1.0,\n    cycles=2\n)\n\n# Wave motion\nframes = create_wiggle_animation(wiggle_type='wave')\n\n# Excited wiggle for emoji GIFs\nframes = create_excited_wiggle(emoji='🎉')\n```\n\n### Slide\n```python\nfrom templates.slide import create_slide_animation, create_multi_slide\n\n# Slide in from left with overshoot\nframes = create_slide_animation(\n    direction='left',\n    slide_type='in',\n    overshoot=True\n)\n\n# Slide across\nframes = create_slide_animation(direction='left', slide_type='across')\n\n# Multiple objects sliding in sequence\nobjects = [\n    {'data': {'emoji': '🎯', 'size': 60}, 'direction': 'left', 'final_pos': (120, 240)},\n    {'data': {'emoji': '🎪', 'size': 60}, 'direction': 'right', 'final_pos': (240, 240)}\n]\nframes = create_multi_slide(objects, stagger_delay=5)\n```\n\n### Flip\n```python\nfrom templates.flip import create_flip_animation, create_quick_flip\n\n# Horizontal flip between two emojis\nframes = create_flip_animation(\n    object1_data={'emoji': '😊', 'size': 120},\n    object2_data={'emoji': '😂', 'size': 120},\n    flip_axis='horizontal'\n)\n\n# Vertical flip\nframes = create_flip_animation(flip_axis='vertical')\n\n# Quick flip for emoji GIFs\nframes = create_quick_flip('👍', '👎')\n```\n\n### Morph \u002F Transform\n```python\nfrom templates.morph import create_morph_animation, create_reaction_morph\n\n# Crossfade morph\nframes = create_morph_animation(\n    object1_data={'emoji': '😊', 'size': 100},\n    object2_data={'emoji': '😂', 'size': 100},\n    morph_type='crossfade'\n)\n\n# Scale morph (shrink while other grows)\nframes = create_morph_animation(morph_type='scale')\n\n# Spin morph (3D flip-like)\nframes = create_morph_animation(morph_type='spin_morph')\n```\n\n### Move Effect\n```python\nfrom templates.move import create_move_animation\n\n# Linear movement\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '🚀', 'size': 60},\n    start_pos=(50, 240),\n    end_pos=(430, 240),\n    motion_type='linear',\n    easing='ease_out'\n)\n\n# Arc movement (parabolic trajectory)\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '⚽', 'size': 60},\n    start_pos=(50, 350),\n    end_pos=(430, 350),\n    motion_type='arc',\n    motion_params={'arc_height': 150}\n)\n\n# Circular movement\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '🌍', 'size': 50},\n    motion_type='circle',\n    motion_params={\n        'center': (240, 240),\n        'radius': 120,\n        'angle_range': 360  # full circle\n    }\n)\n\n# Wave movement\nframes = create_move_animation(\n    motion_type='wave',\n    motion_params={\n        'wave_amplitude': 50,\n        'wave_frequency': 2\n    }\n)\n\n# Or use low-level easing functions\nfrom core.easing import interpolate, calculate_arc_motion\n\nfor i in range(num_frames):\n    t = i \u002F (num_frames - 1)\n    x = interpolate(start_x, end_x, t, easing='ease_out')\n    # Or: x, y = calculate_arc_motion(start, end, height, t)\n```\n\n### Kaleidoscope Effect\n```python\nfrom templates.kaleidoscope import apply_kaleidoscope, create_kaleidoscope_animation\n\n# Apply to a single frame\nkaleido_frame = apply_kaleidoscope(frame, segments=8)\n\n# Or create animated kaleidoscope\nframes = create_kaleidoscope_animation(\n    base_frame=my_frame,  # or None for demo pattern\n    num_frames=30,\n    segments=8,\n    rotation_speed=1.0\n)\n\n# Simple mirror effects (faster)\nfrom templates.kaleidoscope import apply_simple_mirror\n\nmirrored = apply_simple_mirror(frame, mode='quad')  # 4-way mirror\n# modes: 'horizontal', 'vertical', 'quad', 'radial'\n```\n\n**To compose primitives freely, follow these patterns:**\n```python\n# Example: Bounce + shake for impact\nfor i in range(num_frames):\n    frame = create_blank_frame(480, 480, bg_color)\n\n    # Bounce motion\n    t_bounce = i \u002F (num_frames - 1)\n    y = interpolate(start_y, ground_y, t_bounce, 'bounce_out')\n\n    # Add shake on impact (when y reaches ground)\n    if y >= ground_y - 5:\n        shake_x = math.sin(i * 2) * 10\n        x = center_x + shake_x\n    else:\n        x = center_x\n\n    draw_emoji(frame, '⚽', (x, y), size=60)\n    builder.add_frame(frame)\n```\n\n## Helper Utilities\n\nThese are optional helpers for common needs. **Use, modify, or replace these with custom implementations as needed.**\n\n### GIF Builder (Assembly & Optimization)\n\n```python\nfrom core.gif_builder import GIFBuilder\n\n# Create builder with your chosen settings\nbuilder = GIFBuilder(width=480, height=480, fps=20)\n\n# Add frames (however you created them)\nfor frame in my_frames:\n    builder.add_frame(frame)\n\n# Save with optimization\nbuilder.save('output.gif',\n             num_colors=128,\n             optimize_for_emoji=False)\n```\n\nKey features:\n- Automatic color quantization\n- Duplicate frame removal\n- Size warnings for Slack limits\n- Emoji mode (aggressive optimization)\n\n### Text Rendering\n\nFor small GIFs like emojis, text readability is challenging. A common solution involves adding outlines:\n\n```python\nfrom core.typography import draw_text_with_outline, TYPOGRAPHY_SCALE\n\n# Text with outline (helps readability)\ndraw_text_with_outline(\n    frame, \"BONK!\",\n    position=(240, 100),\n    font_size=TYPOGRAPHY_SCALE['h1'],  # 60px\n    text_color=(255, 68, 68),\n    outline_color=(0, 0, 0),\n    outline_width=4,\n    centered=True\n)\n```\n\nTo implement custom text rendering, use PIL's `ImageDraw.text()` which works fine for larger GIFs.\n\n### Color Management\n\nProfessional-looking GIFs often use cohesive color palettes:\n\n```python\nfrom core.color_palettes import get_palette\n\n# Get a pre-made palette\npalette = get_palette('vibrant')  # or 'pastel', 'dark', 'neon', 'professional'\n\nbg_color = palette['background']\ntext_color = palette['primary']\naccent_color = palette['accent']\n```\n\nTo work with colors directly, use RGB tuples - whatever works for the use case.\n\n### Visual Effects\n\nOptional effects for impact moments:\n\n```python\nfrom core.visual_effects import ParticleSystem, create_impact_flash, create_shockwave_rings\n\n# Particle system\nparticles = ParticleSystem()\nparticles.emit_sparkles(x=240, y=200, count=15)\nparticles.emit_confetti(x=240, y=200, count=20)\n\n# Update and render each frame\nparticles.update()\nparticles.render(frame)\n\n# Flash effect\nframe = create_impact_flash(frame, position=(240, 200), radius=100)\n\n# Shockwave rings\nframe = create_shockwave_rings(frame, position=(240, 200), radii=[30, 60, 90])\n```\n\n### Easing Functions\n\nSmooth motion uses easing instead of linear interpolation:\n\n```python\nfrom core.easing import interpolate\n\n# Object falling (accelerates)\ny = interpolate(start=0, end=400, t=progress, easing='ease_in')\n\n# Object landing (decelerates)\ny = interpolate(start=0, end=400, t=progress, easing='ease_out')\n\n# Bouncing\ny = interpolate(start=0, end=400, t=progress, easing='bounce_out')\n\n# Overshoot (elastic)\nscale = interpolate(start=0.5, end=1.0, t=progress, easing='elastic_out')\n```\n\nAvailable easings: `linear`, `ease_in`, `ease_out`, `ease_in_out`, `bounce_out`, `elastic_out`, `back_out` (overshoot), and more in `core\u002Feasing.py`.\n\n### Frame Composition\n\nBasic drawing utilities if you need them:\n\n```python\nfrom core.frame_composer import (\n    create_gradient_background,  # Gradient backgrounds\n    draw_emoji_enhanced,         # Emoji with optional shadow\n    draw_circle_with_shadow,     # Shapes with depth\n    draw_star                    # 5-pointed stars\n)\n\n# Gradient background\nframe = create_gradient_background(480, 480, top_color, bottom_color)\n\n# Emoji with shadow\ndraw_emoji_enhanced(frame, '🎉', position=(200, 200), size=80, shadow=True)\n```\n\n## Optimization Strategies\n\nWhen your GIF is too large:\n\n**For Message GIFs (>2MB):**\n1. Reduce frames (lower FPS or shorter duration)\n2. Reduce colors (128 → 64 colors)\n3. Reduce dimensions (480x480 → 320x320)\n4. Enable duplicate frame removal\n\n**For Emoji GIFs (>64KB) - be aggressive:**\n1. Limit to 10-12 frames total\n2. Use 32-40 colors maximum\n3. Avoid gradients (solid colors compress better)\n4. Simplify design (fewer elements)\n5. Use `optimize_for_emoji=True` in save method\n\n## Example Composition Patterns\n\n### Simple Reaction (Pulsing)\n```python\nbuilder = GIFBuilder(128, 128, 10)\n\nfor i in range(12):\n    frame = Image.new('RGB', (128, 128), (240, 248, 255))\n\n    # Pulsing scale\n    scale = 1.0 + math.sin(i * 0.5) * 0.15\n    size = int(60 * scale)\n\n    draw_emoji_enhanced(frame, '😱', position=(64-size\u002F\u002F2, 64-size\u002F\u002F2),\n                       size=size, shadow=False)\n    builder.add_frame(frame)\n\nbuilder.save('reaction.gif', num_colors=40, optimize_for_emoji=True)\n\n# Validate\nfrom core.validators import check_slack_size\ncheck_slack_size('reaction.gif', is_emoji=True)\n```\n\n### Action with Impact (Bounce + Flash)\n```python\nbuilder = GIFBuilder(480, 480, 20)\n\n# Phase 1: Object falls\nfor i in range(15):\n    frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))\n    t = i \u002F 14\n    y = interpolate(0, 350, t, 'ease_in')\n    draw_emoji_enhanced(frame, '⚽', position=(220, int(y)), size=80)\n    builder.add_frame(frame)\n\n# Phase 2: Impact + flash\nfor i in range(8):\n    frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))\n\n    # Flash on first frames\n    if i \u003C 3:\n        frame = create_impact_flash(frame, (240, 350), radius=120, intensity=0.6)\n\n    draw_emoji_enhanced(frame, '⚽', position=(220, 350), size=80)\n\n    # Text appears\n    if i > 2:\n        draw_text_with_outline(frame, \"GOAL!\", position=(240, 150),\n                              font_size=60, text_color=(255, 68, 68),\n                              outline_color=(0, 0, 0), outline_width=4, centered=True)\n\n    builder.add_frame(frame)\n\nbuilder.save('goal.gif', num_colors=128)\n```\n\n### Combining Primitives (Move + Shake)\n```python\nfrom templates.shake import create_shake_animation\n\n# Create shake animation\nshake_frames = create_shake_animation(\n    object_type='emoji',\n    object_data={'emoji': '😰', 'size': 70},\n    num_frames=20,\n    shake_intensity=12\n)\n\n# Create moving element that triggers the shake\nbuilder = GIFBuilder(480, 480, 20)\nfor i in range(40):\n    t = i \u002F 39\n\n    if i \u003C 20:\n        # Before trigger - use blank frame with moving object\n        frame = create_blank_frame(480, 480, (255, 255, 255))\n        x = interpolate(50, 300, t * 2, 'linear')\n        draw_emoji_enhanced(frame, '🚗', position=(int(x), 300), size=60)\n        draw_emoji_enhanced(frame, '😰', position=(350, 200), size=70)\n    else:\n        # After trigger - use shake frame\n        frame = shake_frames[i - 20]\n        # Add the car in final position\n        draw_emoji_enhanced(frame, '🚗', position=(300, 300), size=60)\n\n    builder.add_frame(frame)\n\nbuilder.save('scare.gif')\n```\n\n## Philosophy\n\nThis toolkit provides building blocks, not rigid recipes. To work with a GIF request:\n\n1. **Understand the creative vision** - What should happen? What's the mood?\n2. **Design the animation** - Break it into phases (anticipation, action, reaction)\n3. **Apply primitives as needed** - Shake, bounce, move, effects - mix freely\n4. **Validate constraints** - Check file size, especially for emoji GIFs\n5. **Iterate if needed** - Reduce frames\u002Fcolors if over size limits\n\n**The goal is creative freedom within Slack's technical constraints.**\n\n## Dependencies\n\nTo use this toolkit, install these dependencies only if they aren't already present:\n\n```bash\npip install pillow imageio numpy\n```\n",{"data":54,"body":55},{"name":4,"description":6,"license":29},{"type":56,"children":57},"root",[58,67,79,86,91,99,129,137,165,175,203,209,214,248,256,262,267,379,389,435,444,490,499,568,573,578,585,671,677,754,760,886,892,1007,1013,1120,1126,1241,1247,1378,1384,1499,1505,1654,1660,1775,1781,1895,1901,2322,2328,2473,2481,2620,2625,2635,2641,2747,2752,2775,2781,2786,2887,2900,2906,2911,2980,2985,2991,2996,3127,3133,3138,3245,3309,3315,3320,3420,3426,3431,3439,3462,3470,3506,3512,3518,3662,3668,3897,3903,4138,4144,4149,4202,4210,4216,4221,4260],{"type":59,"tag":60,"props":61,"children":63},"element","h1",{"id":62},"slack-gif-creator-flexible-toolkit",[64],{"type":65,"value":66},"text","Slack GIF Creator - Flexible Toolkit",{"type":59,"tag":68,"props":69,"children":70},"p",{},[71,73],{"type":65,"value":72},"A toolkit for creating animated GIFs optimized for Slack. Provides validators for Slack's constraints, composable animation primitives, and optional helper utilities. ",{"type":59,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":65,"value":78},"Apply these tools however needed to achieve the creative vision.",{"type":59,"tag":80,"props":81,"children":83},"h2",{"id":82},"slacks-requirements",[84],{"type":65,"value":85},"Slack's Requirements",{"type":59,"tag":68,"props":87,"children":88},{},[89],{"type":65,"value":90},"Slack has specific requirements for GIFs based on their use:",{"type":59,"tag":68,"props":92,"children":93},{},[94],{"type":59,"tag":74,"props":95,"children":96},{},[97],{"type":65,"value":98},"Message GIFs:",{"type":59,"tag":100,"props":101,"children":102},"ul",{},[103,109,114,119,124],{"type":59,"tag":104,"props":105,"children":106},"li",{},[107],{"type":65,"value":108},"Max size: ~2MB",{"type":59,"tag":104,"props":110,"children":111},{},[112],{"type":65,"value":113},"Optimal dimensions: 480x480",{"type":59,"tag":104,"props":115,"children":116},{},[117],{"type":65,"value":118},"Typical FPS: 15-20",{"type":59,"tag":104,"props":120,"children":121},{},[122],{"type":65,"value":123},"Color limit: 128-256",{"type":59,"tag":104,"props":125,"children":126},{},[127],{"type":65,"value":128},"Duration: 2-5s",{"type":59,"tag":68,"props":130,"children":131},{},[132],{"type":59,"tag":74,"props":133,"children":134},{},[135],{"type":65,"value":136},"Emoji GIFs:",{"type":59,"tag":100,"props":138,"children":139},{},[140,145,150,155,160],{"type":59,"tag":104,"props":141,"children":142},{},[143],{"type":65,"value":144},"Max size: 64KB (strict limit)",{"type":59,"tag":104,"props":146,"children":147},{},[148],{"type":65,"value":149},"Optimal dimensions: 128x128",{"type":59,"tag":104,"props":151,"children":152},{},[153],{"type":65,"value":154},"Typical FPS: 10-12",{"type":59,"tag":104,"props":156,"children":157},{},[158],{"type":65,"value":159},"Color limit: 32-48",{"type":59,"tag":104,"props":161,"children":162},{},[163],{"type":65,"value":164},"Duration: 1-2s",{"type":59,"tag":68,"props":166,"children":167},{},[168,173],{"type":59,"tag":74,"props":169,"children":170},{},[171],{"type":65,"value":172},"Emoji GIFs are challenging",{"type":65,"value":174}," - the 64KB limit is strict. Strategies that help:",{"type":59,"tag":100,"props":176,"children":177},{},[178,183,188,193,198],{"type":59,"tag":104,"props":179,"children":180},{},[181],{"type":65,"value":182},"Limit to 10-15 frames total",{"type":59,"tag":104,"props":184,"children":185},{},[186],{"type":65,"value":187},"Use 32-48 colors maximum",{"type":59,"tag":104,"props":189,"children":190},{},[191],{"type":65,"value":192},"Keep designs simple",{"type":59,"tag":104,"props":194,"children":195},{},[196],{"type":65,"value":197},"Avoid gradients",{"type":59,"tag":104,"props":199,"children":200},{},[201],{"type":65,"value":202},"Validate file size frequently",{"type":59,"tag":80,"props":204,"children":206},{"id":205},"toolkit-structure",[207],{"type":65,"value":208},"Toolkit Structure",{"type":59,"tag":68,"props":210,"children":211},{},[212],{"type":65,"value":213},"This skill provides three types of tools:",{"type":59,"tag":215,"props":216,"children":217},"ol",{},[218,228,238],{"type":59,"tag":104,"props":219,"children":220},{},[221,226],{"type":59,"tag":74,"props":222,"children":223},{},[224],{"type":65,"value":225},"Validators",{"type":65,"value":227}," - Check if a GIF meets Slack's requirements",{"type":59,"tag":104,"props":229,"children":230},{},[231,236],{"type":59,"tag":74,"props":232,"children":233},{},[234],{"type":65,"value":235},"Animation Primitives",{"type":65,"value":237}," - Composable building blocks for motion (shake, bounce, move, kaleidoscope)",{"type":59,"tag":104,"props":239,"children":240},{},[241,246],{"type":59,"tag":74,"props":242,"children":243},{},[244],{"type":65,"value":245},"Helper Utilities",{"type":65,"value":247}," - Optional functions for common needs (text, colors, effects)",{"type":59,"tag":68,"props":249,"children":250},{},[251],{"type":59,"tag":74,"props":252,"children":253},{},[254],{"type":65,"value":255},"Complete creative freedom is available in how these tools are applied.",{"type":59,"tag":80,"props":257,"children":259},{"id":258},"core-validators",[260],{"type":65,"value":261},"Core Validators",{"type":59,"tag":68,"props":263,"children":264},{},[265],{"type":65,"value":266},"To ensure a GIF meets Slack's constraints, use these validators:",{"type":59,"tag":268,"props":269,"children":274},"pre",{"className":270,"code":271,"language":272,"meta":273,"style":273},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","from core.gif_builder import GIFBuilder\n\n# After creating your GIF, check if it meets requirements\nbuilder = GIFBuilder(width=128, height=128, fps=10)\n# ... add your frames however you want ...\n\n# Save and check size\ninfo = builder.save('emoji.gif', num_colors=48, optimize_for_emoji=True)\n\n# The save method automatically warns if file exceeds limits\n# info dict contains: size_kb, size_mb, frame_count, duration_seconds\n","python","",[275],{"type":59,"tag":276,"props":277,"children":278},"code",{"__ignoreMap":273},[279,290,300,309,318,327,335,344,353,361,370],{"type":59,"tag":280,"props":281,"children":284},"span",{"class":282,"line":283},"line",1,[285],{"type":59,"tag":280,"props":286,"children":287},{},[288],{"type":65,"value":289},"from core.gif_builder import GIFBuilder\n",{"type":59,"tag":280,"props":291,"children":293},{"class":282,"line":292},2,[294],{"type":59,"tag":280,"props":295,"children":297},{"emptyLinePlaceholder":296},true,[298],{"type":65,"value":299},"\n",{"type":59,"tag":280,"props":301,"children":303},{"class":282,"line":302},3,[304],{"type":59,"tag":280,"props":305,"children":306},{},[307],{"type":65,"value":308},"# After creating your GIF, check if it meets requirements\n",{"type":59,"tag":280,"props":310,"children":312},{"class":282,"line":311},4,[313],{"type":59,"tag":280,"props":314,"children":315},{},[316],{"type":65,"value":317},"builder = GIFBuilder(width=128, height=128, fps=10)\n",{"type":59,"tag":280,"props":319,"children":321},{"class":282,"line":320},5,[322],{"type":59,"tag":280,"props":323,"children":324},{},[325],{"type":65,"value":326},"# ... add your frames however you want ...\n",{"type":59,"tag":280,"props":328,"children":330},{"class":282,"line":329},6,[331],{"type":59,"tag":280,"props":332,"children":333},{"emptyLinePlaceholder":296},[334],{"type":65,"value":299},{"type":59,"tag":280,"props":336,"children":338},{"class":282,"line":337},7,[339],{"type":59,"tag":280,"props":340,"children":341},{},[342],{"type":65,"value":343},"# Save and check size\n",{"type":59,"tag":280,"props":345,"children":347},{"class":282,"line":346},8,[348],{"type":59,"tag":280,"props":349,"children":350},{},[351],{"type":65,"value":352},"info = builder.save('emoji.gif', num_colors=48, optimize_for_emoji=True)\n",{"type":59,"tag":280,"props":354,"children":356},{"class":282,"line":355},9,[357],{"type":59,"tag":280,"props":358,"children":359},{"emptyLinePlaceholder":296},[360],{"type":65,"value":299},{"type":59,"tag":280,"props":362,"children":364},{"class":282,"line":363},10,[365],{"type":59,"tag":280,"props":366,"children":367},{},[368],{"type":65,"value":369},"# The save method automatically warns if file exceeds limits\n",{"type":59,"tag":280,"props":371,"children":373},{"class":282,"line":372},11,[374],{"type":59,"tag":280,"props":375,"children":376},{},[377],{"type":65,"value":378},"# info dict contains: size_kb, size_mb, frame_count, duration_seconds\n",{"type":59,"tag":68,"props":380,"children":381},{},[382,387],{"type":59,"tag":74,"props":383,"children":384},{},[385],{"type":65,"value":386},"File size validator",{"type":65,"value":388},":",{"type":59,"tag":268,"props":390,"children":392},{"className":270,"code":391,"language":272,"meta":273,"style":273},"from core.validators import check_slack_size\n\n# Check if GIF meets size limits\npasses, info = check_slack_size('emoji.gif', is_emoji=True)\n# Returns: (True\u002FFalse, dict with size details)\n",[393],{"type":59,"tag":276,"props":394,"children":395},{"__ignoreMap":273},[396,404,411,419,427],{"type":59,"tag":280,"props":397,"children":398},{"class":282,"line":283},[399],{"type":59,"tag":280,"props":400,"children":401},{},[402],{"type":65,"value":403},"from core.validators import check_slack_size\n",{"type":59,"tag":280,"props":405,"children":406},{"class":282,"line":292},[407],{"type":59,"tag":280,"props":408,"children":409},{"emptyLinePlaceholder":296},[410],{"type":65,"value":299},{"type":59,"tag":280,"props":412,"children":413},{"class":282,"line":302},[414],{"type":59,"tag":280,"props":415,"children":416},{},[417],{"type":65,"value":418},"# Check if GIF meets size limits\n",{"type":59,"tag":280,"props":420,"children":421},{"class":282,"line":311},[422],{"type":59,"tag":280,"props":423,"children":424},{},[425],{"type":65,"value":426},"passes, info = check_slack_size('emoji.gif', is_emoji=True)\n",{"type":59,"tag":280,"props":428,"children":429},{"class":282,"line":320},[430],{"type":59,"tag":280,"props":431,"children":432},{},[433],{"type":65,"value":434},"# Returns: (True\u002FFalse, dict with size details)\n",{"type":59,"tag":68,"props":436,"children":437},{},[438,443],{"type":59,"tag":74,"props":439,"children":440},{},[441],{"type":65,"value":442},"Dimension validator",{"type":65,"value":388},{"type":59,"tag":268,"props":445,"children":447},{"className":270,"code":446,"language":272,"meta":273,"style":273},"from core.validators import validate_dimensions\n\n# Check dimensions\npasses, info = validate_dimensions(128, 128, is_emoji=True)\n# Returns: (True\u002FFalse, dict with dimension details)\n",[448],{"type":59,"tag":276,"props":449,"children":450},{"__ignoreMap":273},[451,459,466,474,482],{"type":59,"tag":280,"props":452,"children":453},{"class":282,"line":283},[454],{"type":59,"tag":280,"props":455,"children":456},{},[457],{"type":65,"value":458},"from core.validators import validate_dimensions\n",{"type":59,"tag":280,"props":460,"children":461},{"class":282,"line":292},[462],{"type":59,"tag":280,"props":463,"children":464},{"emptyLinePlaceholder":296},[465],{"type":65,"value":299},{"type":59,"tag":280,"props":467,"children":468},{"class":282,"line":302},[469],{"type":59,"tag":280,"props":470,"children":471},{},[472],{"type":65,"value":473},"# Check dimensions\n",{"type":59,"tag":280,"props":475,"children":476},{"class":282,"line":311},[477],{"type":59,"tag":280,"props":478,"children":479},{},[480],{"type":65,"value":481},"passes, info = validate_dimensions(128, 128, is_emoji=True)\n",{"type":59,"tag":280,"props":483,"children":484},{"class":282,"line":320},[485],{"type":59,"tag":280,"props":486,"children":487},{},[488],{"type":65,"value":489},"# Returns: (True\u002FFalse, dict with dimension details)\n",{"type":59,"tag":68,"props":491,"children":492},{},[493,498],{"type":59,"tag":74,"props":494,"children":495},{},[496],{"type":65,"value":497},"Complete validation",{"type":65,"value":388},{"type":59,"tag":268,"props":500,"children":502},{"className":270,"code":501,"language":272,"meta":273,"style":273},"from core.validators import validate_gif, is_slack_ready\n\n# Run all validations\nall_pass, results = validate_gif('emoji.gif', is_emoji=True)\n\n# Or quick check\nif is_slack_ready('emoji.gif', is_emoji=True):\n    print(\"Ready to upload!\")\n",[503],{"type":59,"tag":276,"props":504,"children":505},{"__ignoreMap":273},[506,514,521,529,537,544,552,560],{"type":59,"tag":280,"props":507,"children":508},{"class":282,"line":283},[509],{"type":59,"tag":280,"props":510,"children":511},{},[512],{"type":65,"value":513},"from core.validators import validate_gif, is_slack_ready\n",{"type":59,"tag":280,"props":515,"children":516},{"class":282,"line":292},[517],{"type":59,"tag":280,"props":518,"children":519},{"emptyLinePlaceholder":296},[520],{"type":65,"value":299},{"type":59,"tag":280,"props":522,"children":523},{"class":282,"line":302},[524],{"type":59,"tag":280,"props":525,"children":526},{},[527],{"type":65,"value":528},"# Run all validations\n",{"type":59,"tag":280,"props":530,"children":531},{"class":282,"line":311},[532],{"type":59,"tag":280,"props":533,"children":534},{},[535],{"type":65,"value":536},"all_pass, results = validate_gif('emoji.gif', is_emoji=True)\n",{"type":59,"tag":280,"props":538,"children":539},{"class":282,"line":320},[540],{"type":59,"tag":280,"props":541,"children":542},{"emptyLinePlaceholder":296},[543],{"type":65,"value":299},{"type":59,"tag":280,"props":545,"children":546},{"class":282,"line":329},[547],{"type":59,"tag":280,"props":548,"children":549},{},[550],{"type":65,"value":551},"# Or quick check\n",{"type":59,"tag":280,"props":553,"children":554},{"class":282,"line":337},[555],{"type":59,"tag":280,"props":556,"children":557},{},[558],{"type":65,"value":559},"if is_slack_ready('emoji.gif', is_emoji=True):\n",{"type":59,"tag":280,"props":561,"children":562},{"class":282,"line":346},[563],{"type":59,"tag":280,"props":564,"children":565},{},[566],{"type":65,"value":567},"    print(\"Ready to upload!\")\n",{"type":59,"tag":80,"props":569,"children":571},{"id":570},"animation-primitives",[572],{"type":65,"value":235},{"type":59,"tag":68,"props":574,"children":575},{},[576],{"type":65,"value":577},"These are composable building blocks for motion. Apply these to any object in any combination:",{"type":59,"tag":579,"props":580,"children":582},"h3",{"id":581},"shake",[583],{"type":65,"value":584},"Shake",{"type":59,"tag":268,"props":586,"children":588},{"className":270,"code":587,"language":272,"meta":273,"style":273},"from templates.shake import create_shake_animation\n\n# Shake an emoji\nframes = create_shake_animation(\n    object_type='emoji',\n    object_data={'emoji': '😱', 'size': 80},\n    num_frames=20,\n    shake_intensity=15,\n    direction='both'  # or 'horizontal', 'vertical'\n)\n",[589],{"type":59,"tag":276,"props":590,"children":591},{"__ignoreMap":273},[592,600,607,615,623,631,639,647,655,663],{"type":59,"tag":280,"props":593,"children":594},{"class":282,"line":283},[595],{"type":59,"tag":280,"props":596,"children":597},{},[598],{"type":65,"value":599},"from templates.shake import create_shake_animation\n",{"type":59,"tag":280,"props":601,"children":602},{"class":282,"line":292},[603],{"type":59,"tag":280,"props":604,"children":605},{"emptyLinePlaceholder":296},[606],{"type":65,"value":299},{"type":59,"tag":280,"props":608,"children":609},{"class":282,"line":302},[610],{"type":59,"tag":280,"props":611,"children":612},{},[613],{"type":65,"value":614},"# Shake an emoji\n",{"type":59,"tag":280,"props":616,"children":617},{"class":282,"line":311},[618],{"type":59,"tag":280,"props":619,"children":620},{},[621],{"type":65,"value":622},"frames = create_shake_animation(\n",{"type":59,"tag":280,"props":624,"children":625},{"class":282,"line":320},[626],{"type":59,"tag":280,"props":627,"children":628},{},[629],{"type":65,"value":630},"    object_type='emoji',\n",{"type":59,"tag":280,"props":632,"children":633},{"class":282,"line":329},[634],{"type":59,"tag":280,"props":635,"children":636},{},[637],{"type":65,"value":638},"    object_data={'emoji': '😱', 'size': 80},\n",{"type":59,"tag":280,"props":640,"children":641},{"class":282,"line":337},[642],{"type":59,"tag":280,"props":643,"children":644},{},[645],{"type":65,"value":646},"    num_frames=20,\n",{"type":59,"tag":280,"props":648,"children":649},{"class":282,"line":346},[650],{"type":59,"tag":280,"props":651,"children":652},{},[653],{"type":65,"value":654},"    shake_intensity=15,\n",{"type":59,"tag":280,"props":656,"children":657},{"class":282,"line":355},[658],{"type":59,"tag":280,"props":659,"children":660},{},[661],{"type":65,"value":662},"    direction='both'  # or 'horizontal', 'vertical'\n",{"type":59,"tag":280,"props":664,"children":665},{"class":282,"line":363},[666],{"type":59,"tag":280,"props":667,"children":668},{},[669],{"type":65,"value":670},")\n",{"type":59,"tag":579,"props":672,"children":674},{"id":673},"bounce",[675],{"type":65,"value":676},"Bounce",{"type":59,"tag":268,"props":678,"children":680},{"className":270,"code":679,"language":272,"meta":273,"style":273},"from templates.bounce import create_bounce_animation\n\n# Bounce a circle\nframes = create_bounce_animation(\n    object_type='circle',\n    object_data={'radius': 40, 'color': (255, 100, 100)},\n    num_frames=30,\n    bounce_height=150\n)\n",[681],{"type":59,"tag":276,"props":682,"children":683},{"__ignoreMap":273},[684,692,699,707,715,723,731,739,747],{"type":59,"tag":280,"props":685,"children":686},{"class":282,"line":283},[687],{"type":59,"tag":280,"props":688,"children":689},{},[690],{"type":65,"value":691},"from templates.bounce import create_bounce_animation\n",{"type":59,"tag":280,"props":693,"children":694},{"class":282,"line":292},[695],{"type":59,"tag":280,"props":696,"children":697},{"emptyLinePlaceholder":296},[698],{"type":65,"value":299},{"type":59,"tag":280,"props":700,"children":701},{"class":282,"line":302},[702],{"type":59,"tag":280,"props":703,"children":704},{},[705],{"type":65,"value":706},"# Bounce a circle\n",{"type":59,"tag":280,"props":708,"children":709},{"class":282,"line":311},[710],{"type":59,"tag":280,"props":711,"children":712},{},[713],{"type":65,"value":714},"frames = create_bounce_animation(\n",{"type":59,"tag":280,"props":716,"children":717},{"class":282,"line":320},[718],{"type":59,"tag":280,"props":719,"children":720},{},[721],{"type":65,"value":722},"    object_type='circle',\n",{"type":59,"tag":280,"props":724,"children":725},{"class":282,"line":329},[726],{"type":59,"tag":280,"props":727,"children":728},{},[729],{"type":65,"value":730},"    object_data={'radius': 40, 'color': (255, 100, 100)},\n",{"type":59,"tag":280,"props":732,"children":733},{"class":282,"line":337},[734],{"type":59,"tag":280,"props":735,"children":736},{},[737],{"type":65,"value":738},"    num_frames=30,\n",{"type":59,"tag":280,"props":740,"children":741},{"class":282,"line":346},[742],{"type":59,"tag":280,"props":743,"children":744},{},[745],{"type":65,"value":746},"    bounce_height=150\n",{"type":59,"tag":280,"props":748,"children":749},{"class":282,"line":355},[750],{"type":59,"tag":280,"props":751,"children":752},{},[753],{"type":65,"value":670},{"type":59,"tag":579,"props":755,"children":757},{"id":756},"spin-rotate",[758],{"type":65,"value":759},"Spin \u002F Rotate",{"type":59,"tag":268,"props":761,"children":763},{"className":270,"code":762,"language":272,"meta":273,"style":273},"from templates.spin import create_spin_animation, create_loading_spinner\n\n# Clockwise spin\nframes = create_spin_animation(\n    object_type='emoji',\n    object_data={'emoji': '🔄', 'size': 100},\n    rotation_type='clockwise',\n    full_rotations=2\n)\n\n# Wobble rotation\nframes = create_spin_animation(rotation_type='wobble', full_rotations=3)\n\n# Loading spinner\nframes = create_loading_spinner(spinner_type='dots')\n",[764],{"type":59,"tag":276,"props":765,"children":766},{"__ignoreMap":273},[767,775,782,790,798,805,813,821,829,836,843,851,860,868,877],{"type":59,"tag":280,"props":768,"children":769},{"class":282,"line":283},[770],{"type":59,"tag":280,"props":771,"children":772},{},[773],{"type":65,"value":774},"from templates.spin import create_spin_animation, create_loading_spinner\n",{"type":59,"tag":280,"props":776,"children":777},{"class":282,"line":292},[778],{"type":59,"tag":280,"props":779,"children":780},{"emptyLinePlaceholder":296},[781],{"type":65,"value":299},{"type":59,"tag":280,"props":783,"children":784},{"class":282,"line":302},[785],{"type":59,"tag":280,"props":786,"children":787},{},[788],{"type":65,"value":789},"# Clockwise spin\n",{"type":59,"tag":280,"props":791,"children":792},{"class":282,"line":311},[793],{"type":59,"tag":280,"props":794,"children":795},{},[796],{"type":65,"value":797},"frames = create_spin_animation(\n",{"type":59,"tag":280,"props":799,"children":800},{"class":282,"line":320},[801],{"type":59,"tag":280,"props":802,"children":803},{},[804],{"type":65,"value":630},{"type":59,"tag":280,"props":806,"children":807},{"class":282,"line":329},[808],{"type":59,"tag":280,"props":809,"children":810},{},[811],{"type":65,"value":812},"    object_data={'emoji': '🔄', 'size': 100},\n",{"type":59,"tag":280,"props":814,"children":815},{"class":282,"line":337},[816],{"type":59,"tag":280,"props":817,"children":818},{},[819],{"type":65,"value":820},"    rotation_type='clockwise',\n",{"type":59,"tag":280,"props":822,"children":823},{"class":282,"line":346},[824],{"type":59,"tag":280,"props":825,"children":826},{},[827],{"type":65,"value":828},"    full_rotations=2\n",{"type":59,"tag":280,"props":830,"children":831},{"class":282,"line":355},[832],{"type":59,"tag":280,"props":833,"children":834},{},[835],{"type":65,"value":670},{"type":59,"tag":280,"props":837,"children":838},{"class":282,"line":363},[839],{"type":59,"tag":280,"props":840,"children":841},{"emptyLinePlaceholder":296},[842],{"type":65,"value":299},{"type":59,"tag":280,"props":844,"children":845},{"class":282,"line":372},[846],{"type":59,"tag":280,"props":847,"children":848},{},[849],{"type":65,"value":850},"# Wobble rotation\n",{"type":59,"tag":280,"props":852,"children":854},{"class":282,"line":853},12,[855],{"type":59,"tag":280,"props":856,"children":857},{},[858],{"type":65,"value":859},"frames = create_spin_animation(rotation_type='wobble', full_rotations=3)\n",{"type":59,"tag":280,"props":861,"children":863},{"class":282,"line":862},13,[864],{"type":59,"tag":280,"props":865,"children":866},{"emptyLinePlaceholder":296},[867],{"type":65,"value":299},{"type":59,"tag":280,"props":869,"children":871},{"class":282,"line":870},14,[872],{"type":59,"tag":280,"props":873,"children":874},{},[875],{"type":65,"value":876},"# Loading spinner\n",{"type":59,"tag":280,"props":878,"children":880},{"class":282,"line":879},15,[881],{"type":59,"tag":280,"props":882,"children":883},{},[884],{"type":65,"value":885},"frames = create_loading_spinner(spinner_type='dots')\n",{"type":59,"tag":579,"props":887,"children":889},{"id":888},"pulse-heartbeat",[890],{"type":65,"value":891},"Pulse \u002F Heartbeat",{"type":59,"tag":268,"props":893,"children":895},{"className":270,"code":894,"language":272,"meta":273,"style":273},"from templates.pulse import create_pulse_animation, create_attention_pulse\n\n# Smooth pulse\nframes = create_pulse_animation(\n    object_data={'emoji': '❤️', 'size': 100},\n    pulse_type='smooth',\n    scale_range=(0.8, 1.2)\n)\n\n# Heartbeat (double-pump)\nframes = create_pulse_animation(pulse_type='heartbeat')\n\n# Attention pulse for emoji GIFs\nframes = create_attention_pulse(emoji='⚠️', num_frames=20)\n",[896],{"type":59,"tag":276,"props":897,"children":898},{"__ignoreMap":273},[899,907,914,922,930,938,946,954,961,968,976,984,991,999],{"type":59,"tag":280,"props":900,"children":901},{"class":282,"line":283},[902],{"type":59,"tag":280,"props":903,"children":904},{},[905],{"type":65,"value":906},"from templates.pulse import create_pulse_animation, create_attention_pulse\n",{"type":59,"tag":280,"props":908,"children":909},{"class":282,"line":292},[910],{"type":59,"tag":280,"props":911,"children":912},{"emptyLinePlaceholder":296},[913],{"type":65,"value":299},{"type":59,"tag":280,"props":915,"children":916},{"class":282,"line":302},[917],{"type":59,"tag":280,"props":918,"children":919},{},[920],{"type":65,"value":921},"# Smooth pulse\n",{"type":59,"tag":280,"props":923,"children":924},{"class":282,"line":311},[925],{"type":59,"tag":280,"props":926,"children":927},{},[928],{"type":65,"value":929},"frames = create_pulse_animation(\n",{"type":59,"tag":280,"props":931,"children":932},{"class":282,"line":320},[933],{"type":59,"tag":280,"props":934,"children":935},{},[936],{"type":65,"value":937},"    object_data={'emoji': '❤️', 'size': 100},\n",{"type":59,"tag":280,"props":939,"children":940},{"class":282,"line":329},[941],{"type":59,"tag":280,"props":942,"children":943},{},[944],{"type":65,"value":945},"    pulse_type='smooth',\n",{"type":59,"tag":280,"props":947,"children":948},{"class":282,"line":337},[949],{"type":59,"tag":280,"props":950,"children":951},{},[952],{"type":65,"value":953},"    scale_range=(0.8, 1.2)\n",{"type":59,"tag":280,"props":955,"children":956},{"class":282,"line":346},[957],{"type":59,"tag":280,"props":958,"children":959},{},[960],{"type":65,"value":670},{"type":59,"tag":280,"props":962,"children":963},{"class":282,"line":355},[964],{"type":59,"tag":280,"props":965,"children":966},{"emptyLinePlaceholder":296},[967],{"type":65,"value":299},{"type":59,"tag":280,"props":969,"children":970},{"class":282,"line":363},[971],{"type":59,"tag":280,"props":972,"children":973},{},[974],{"type":65,"value":975},"# Heartbeat (double-pump)\n",{"type":59,"tag":280,"props":977,"children":978},{"class":282,"line":372},[979],{"type":59,"tag":280,"props":980,"children":981},{},[982],{"type":65,"value":983},"frames = create_pulse_animation(pulse_type='heartbeat')\n",{"type":59,"tag":280,"props":985,"children":986},{"class":282,"line":853},[987],{"type":59,"tag":280,"props":988,"children":989},{"emptyLinePlaceholder":296},[990],{"type":65,"value":299},{"type":59,"tag":280,"props":992,"children":993},{"class":282,"line":862},[994],{"type":59,"tag":280,"props":995,"children":996},{},[997],{"type":65,"value":998},"# Attention pulse for emoji GIFs\n",{"type":59,"tag":280,"props":1000,"children":1001},{"class":282,"line":870},[1002],{"type":59,"tag":280,"props":1003,"children":1004},{},[1005],{"type":65,"value":1006},"frames = create_attention_pulse(emoji='⚠️', num_frames=20)\n",{"type":59,"tag":579,"props":1008,"children":1010},{"id":1009},"fade",[1011],{"type":65,"value":1012},"Fade",{"type":59,"tag":268,"props":1014,"children":1016},{"className":270,"code":1015,"language":272,"meta":273,"style":273},"from templates.fade import create_fade_animation, create_crossfade\n\n# Fade in\nframes = create_fade_animation(fade_type='in')\n\n# Fade out\nframes = create_fade_animation(fade_type='out')\n\n# Crossfade between two emojis\nframes = create_crossfade(\n    object1_data={'emoji': '😊', 'size': 100},\n    object2_data={'emoji': '😂', 'size': 100}\n)\n",[1017],{"type":59,"tag":276,"props":1018,"children":1019},{"__ignoreMap":273},[1020,1028,1035,1043,1051,1058,1066,1074,1081,1089,1097,1105,1113],{"type":59,"tag":280,"props":1021,"children":1022},{"class":282,"line":283},[1023],{"type":59,"tag":280,"props":1024,"children":1025},{},[1026],{"type":65,"value":1027},"from templates.fade import create_fade_animation, create_crossfade\n",{"type":59,"tag":280,"props":1029,"children":1030},{"class":282,"line":292},[1031],{"type":59,"tag":280,"props":1032,"children":1033},{"emptyLinePlaceholder":296},[1034],{"type":65,"value":299},{"type":59,"tag":280,"props":1036,"children":1037},{"class":282,"line":302},[1038],{"type":59,"tag":280,"props":1039,"children":1040},{},[1041],{"type":65,"value":1042},"# Fade in\n",{"type":59,"tag":280,"props":1044,"children":1045},{"class":282,"line":311},[1046],{"type":59,"tag":280,"props":1047,"children":1048},{},[1049],{"type":65,"value":1050},"frames = create_fade_animation(fade_type='in')\n",{"type":59,"tag":280,"props":1052,"children":1053},{"class":282,"line":320},[1054],{"type":59,"tag":280,"props":1055,"children":1056},{"emptyLinePlaceholder":296},[1057],{"type":65,"value":299},{"type":59,"tag":280,"props":1059,"children":1060},{"class":282,"line":329},[1061],{"type":59,"tag":280,"props":1062,"children":1063},{},[1064],{"type":65,"value":1065},"# Fade out\n",{"type":59,"tag":280,"props":1067,"children":1068},{"class":282,"line":337},[1069],{"type":59,"tag":280,"props":1070,"children":1071},{},[1072],{"type":65,"value":1073},"frames = create_fade_animation(fade_type='out')\n",{"type":59,"tag":280,"props":1075,"children":1076},{"class":282,"line":346},[1077],{"type":59,"tag":280,"props":1078,"children":1079},{"emptyLinePlaceholder":296},[1080],{"type":65,"value":299},{"type":59,"tag":280,"props":1082,"children":1083},{"class":282,"line":355},[1084],{"type":59,"tag":280,"props":1085,"children":1086},{},[1087],{"type":65,"value":1088},"# Crossfade between two emojis\n",{"type":59,"tag":280,"props":1090,"children":1091},{"class":282,"line":363},[1092],{"type":59,"tag":280,"props":1093,"children":1094},{},[1095],{"type":65,"value":1096},"frames = create_crossfade(\n",{"type":59,"tag":280,"props":1098,"children":1099},{"class":282,"line":372},[1100],{"type":59,"tag":280,"props":1101,"children":1102},{},[1103],{"type":65,"value":1104},"    object1_data={'emoji': '😊', 'size': 100},\n",{"type":59,"tag":280,"props":1106,"children":1107},{"class":282,"line":853},[1108],{"type":59,"tag":280,"props":1109,"children":1110},{},[1111],{"type":65,"value":1112},"    object2_data={'emoji': '😂', 'size': 100}\n",{"type":59,"tag":280,"props":1114,"children":1115},{"class":282,"line":862},[1116],{"type":59,"tag":280,"props":1117,"children":1118},{},[1119],{"type":65,"value":670},{"type":59,"tag":579,"props":1121,"children":1123},{"id":1122},"zoom",[1124],{"type":65,"value":1125},"Zoom",{"type":59,"tag":268,"props":1127,"children":1129},{"className":270,"code":1128,"language":272,"meta":273,"style":273},"from templates.zoom import create_zoom_animation, create_explosion_zoom\n\n# Zoom in dramatically\nframes = create_zoom_animation(\n    zoom_type='in',\n    scale_range=(0.1, 2.0),\n    add_motion_blur=True\n)\n\n# Zoom out\nframes = create_zoom_animation(zoom_type='out')\n\n# Explosion zoom\nframes = create_explosion_zoom(emoji='💥')\n",[1130],{"type":59,"tag":276,"props":1131,"children":1132},{"__ignoreMap":273},[1133,1141,1148,1156,1164,1172,1180,1188,1195,1202,1210,1218,1225,1233],{"type":59,"tag":280,"props":1134,"children":1135},{"class":282,"line":283},[1136],{"type":59,"tag":280,"props":1137,"children":1138},{},[1139],{"type":65,"value":1140},"from templates.zoom import create_zoom_animation, create_explosion_zoom\n",{"type":59,"tag":280,"props":1142,"children":1143},{"class":282,"line":292},[1144],{"type":59,"tag":280,"props":1145,"children":1146},{"emptyLinePlaceholder":296},[1147],{"type":65,"value":299},{"type":59,"tag":280,"props":1149,"children":1150},{"class":282,"line":302},[1151],{"type":59,"tag":280,"props":1152,"children":1153},{},[1154],{"type":65,"value":1155},"# Zoom in dramatically\n",{"type":59,"tag":280,"props":1157,"children":1158},{"class":282,"line":311},[1159],{"type":59,"tag":280,"props":1160,"children":1161},{},[1162],{"type":65,"value":1163},"frames = create_zoom_animation(\n",{"type":59,"tag":280,"props":1165,"children":1166},{"class":282,"line":320},[1167],{"type":59,"tag":280,"props":1168,"children":1169},{},[1170],{"type":65,"value":1171},"    zoom_type='in',\n",{"type":59,"tag":280,"props":1173,"children":1174},{"class":282,"line":329},[1175],{"type":59,"tag":280,"props":1176,"children":1177},{},[1178],{"type":65,"value":1179},"    scale_range=(0.1, 2.0),\n",{"type":59,"tag":280,"props":1181,"children":1182},{"class":282,"line":337},[1183],{"type":59,"tag":280,"props":1184,"children":1185},{},[1186],{"type":65,"value":1187},"    add_motion_blur=True\n",{"type":59,"tag":280,"props":1189,"children":1190},{"class":282,"line":346},[1191],{"type":59,"tag":280,"props":1192,"children":1193},{},[1194],{"type":65,"value":670},{"type":59,"tag":280,"props":1196,"children":1197},{"class":282,"line":355},[1198],{"type":59,"tag":280,"props":1199,"children":1200},{"emptyLinePlaceholder":296},[1201],{"type":65,"value":299},{"type":59,"tag":280,"props":1203,"children":1204},{"class":282,"line":363},[1205],{"type":59,"tag":280,"props":1206,"children":1207},{},[1208],{"type":65,"value":1209},"# Zoom out\n",{"type":59,"tag":280,"props":1211,"children":1212},{"class":282,"line":372},[1213],{"type":59,"tag":280,"props":1214,"children":1215},{},[1216],{"type":65,"value":1217},"frames = create_zoom_animation(zoom_type='out')\n",{"type":59,"tag":280,"props":1219,"children":1220},{"class":282,"line":853},[1221],{"type":59,"tag":280,"props":1222,"children":1223},{"emptyLinePlaceholder":296},[1224],{"type":65,"value":299},{"type":59,"tag":280,"props":1226,"children":1227},{"class":282,"line":862},[1228],{"type":59,"tag":280,"props":1229,"children":1230},{},[1231],{"type":65,"value":1232},"# Explosion zoom\n",{"type":59,"tag":280,"props":1234,"children":1235},{"class":282,"line":870},[1236],{"type":59,"tag":280,"props":1237,"children":1238},{},[1239],{"type":65,"value":1240},"frames = create_explosion_zoom(emoji='💥')\n",{"type":59,"tag":579,"props":1242,"children":1244},{"id":1243},"explode-shatter",[1245],{"type":65,"value":1246},"Explode \u002F Shatter",{"type":59,"tag":268,"props":1248,"children":1250},{"className":270,"code":1249,"language":272,"meta":273,"style":273},"from templates.explode import create_explode_animation, create_particle_burst\n\n# Burst explosion\nframes = create_explode_animation(\n    explode_type='burst',\n    num_pieces=25\n)\n\n# Shatter effect\nframes = create_explode_animation(explode_type='shatter')\n\n# Dissolve into particles\nframes = create_explode_animation(explode_type='dissolve')\n\n# Particle burst\nframes = create_particle_burst(particle_count=30)\n",[1251],{"type":59,"tag":276,"props":1252,"children":1253},{"__ignoreMap":273},[1254,1262,1269,1277,1285,1293,1301,1308,1315,1323,1331,1338,1346,1354,1361,1369],{"type":59,"tag":280,"props":1255,"children":1256},{"class":282,"line":283},[1257],{"type":59,"tag":280,"props":1258,"children":1259},{},[1260],{"type":65,"value":1261},"from templates.explode import create_explode_animation, create_particle_burst\n",{"type":59,"tag":280,"props":1263,"children":1264},{"class":282,"line":292},[1265],{"type":59,"tag":280,"props":1266,"children":1267},{"emptyLinePlaceholder":296},[1268],{"type":65,"value":299},{"type":59,"tag":280,"props":1270,"children":1271},{"class":282,"line":302},[1272],{"type":59,"tag":280,"props":1273,"children":1274},{},[1275],{"type":65,"value":1276},"# Burst explosion\n",{"type":59,"tag":280,"props":1278,"children":1279},{"class":282,"line":311},[1280],{"type":59,"tag":280,"props":1281,"children":1282},{},[1283],{"type":65,"value":1284},"frames = create_explode_animation(\n",{"type":59,"tag":280,"props":1286,"children":1287},{"class":282,"line":320},[1288],{"type":59,"tag":280,"props":1289,"children":1290},{},[1291],{"type":65,"value":1292},"    explode_type='burst',\n",{"type":59,"tag":280,"props":1294,"children":1295},{"class":282,"line":329},[1296],{"type":59,"tag":280,"props":1297,"children":1298},{},[1299],{"type":65,"value":1300},"    num_pieces=25\n",{"type":59,"tag":280,"props":1302,"children":1303},{"class":282,"line":337},[1304],{"type":59,"tag":280,"props":1305,"children":1306},{},[1307],{"type":65,"value":670},{"type":59,"tag":280,"props":1309,"children":1310},{"class":282,"line":346},[1311],{"type":59,"tag":280,"props":1312,"children":1313},{"emptyLinePlaceholder":296},[1314],{"type":65,"value":299},{"type":59,"tag":280,"props":1316,"children":1317},{"class":282,"line":355},[1318],{"type":59,"tag":280,"props":1319,"children":1320},{},[1321],{"type":65,"value":1322},"# Shatter effect\n",{"type":59,"tag":280,"props":1324,"children":1325},{"class":282,"line":363},[1326],{"type":59,"tag":280,"props":1327,"children":1328},{},[1329],{"type":65,"value":1330},"frames = create_explode_animation(explode_type='shatter')\n",{"type":59,"tag":280,"props":1332,"children":1333},{"class":282,"line":372},[1334],{"type":59,"tag":280,"props":1335,"children":1336},{"emptyLinePlaceholder":296},[1337],{"type":65,"value":299},{"type":59,"tag":280,"props":1339,"children":1340},{"class":282,"line":853},[1341],{"type":59,"tag":280,"props":1342,"children":1343},{},[1344],{"type":65,"value":1345},"# Dissolve into particles\n",{"type":59,"tag":280,"props":1347,"children":1348},{"class":282,"line":862},[1349],{"type":59,"tag":280,"props":1350,"children":1351},{},[1352],{"type":65,"value":1353},"frames = create_explode_animation(explode_type='dissolve')\n",{"type":59,"tag":280,"props":1355,"children":1356},{"class":282,"line":870},[1357],{"type":59,"tag":280,"props":1358,"children":1359},{"emptyLinePlaceholder":296},[1360],{"type":65,"value":299},{"type":59,"tag":280,"props":1362,"children":1363},{"class":282,"line":879},[1364],{"type":59,"tag":280,"props":1365,"children":1366},{},[1367],{"type":65,"value":1368},"# Particle burst\n",{"type":59,"tag":280,"props":1370,"children":1372},{"class":282,"line":1371},16,[1373],{"type":59,"tag":280,"props":1374,"children":1375},{},[1376],{"type":65,"value":1377},"frames = create_particle_burst(particle_count=30)\n",{"type":59,"tag":579,"props":1379,"children":1381},{"id":1380},"wiggle-jiggle",[1382],{"type":65,"value":1383},"Wiggle \u002F Jiggle",{"type":59,"tag":268,"props":1385,"children":1387},{"className":270,"code":1386,"language":272,"meta":273,"style":273},"from templates.wiggle import create_wiggle_animation, create_excited_wiggle\n\n# Jello wobble\nframes = create_wiggle_animation(\n    wiggle_type='jello',\n    intensity=1.0,\n    cycles=2\n)\n\n# Wave motion\nframes = create_wiggle_animation(wiggle_type='wave')\n\n# Excited wiggle for emoji GIFs\nframes = create_excited_wiggle(emoji='🎉')\n",[1388],{"type":59,"tag":276,"props":1389,"children":1390},{"__ignoreMap":273},[1391,1399,1406,1414,1422,1430,1438,1446,1453,1460,1468,1476,1483,1491],{"type":59,"tag":280,"props":1392,"children":1393},{"class":282,"line":283},[1394],{"type":59,"tag":280,"props":1395,"children":1396},{},[1397],{"type":65,"value":1398},"from templates.wiggle import create_wiggle_animation, create_excited_wiggle\n",{"type":59,"tag":280,"props":1400,"children":1401},{"class":282,"line":292},[1402],{"type":59,"tag":280,"props":1403,"children":1404},{"emptyLinePlaceholder":296},[1405],{"type":65,"value":299},{"type":59,"tag":280,"props":1407,"children":1408},{"class":282,"line":302},[1409],{"type":59,"tag":280,"props":1410,"children":1411},{},[1412],{"type":65,"value":1413},"# Jello wobble\n",{"type":59,"tag":280,"props":1415,"children":1416},{"class":282,"line":311},[1417],{"type":59,"tag":280,"props":1418,"children":1419},{},[1420],{"type":65,"value":1421},"frames = create_wiggle_animation(\n",{"type":59,"tag":280,"props":1423,"children":1424},{"class":282,"line":320},[1425],{"type":59,"tag":280,"props":1426,"children":1427},{},[1428],{"type":65,"value":1429},"    wiggle_type='jello',\n",{"type":59,"tag":280,"props":1431,"children":1432},{"class":282,"line":329},[1433],{"type":59,"tag":280,"props":1434,"children":1435},{},[1436],{"type":65,"value":1437},"    intensity=1.0,\n",{"type":59,"tag":280,"props":1439,"children":1440},{"class":282,"line":337},[1441],{"type":59,"tag":280,"props":1442,"children":1443},{},[1444],{"type":65,"value":1445},"    cycles=2\n",{"type":59,"tag":280,"props":1447,"children":1448},{"class":282,"line":346},[1449],{"type":59,"tag":280,"props":1450,"children":1451},{},[1452],{"type":65,"value":670},{"type":59,"tag":280,"props":1454,"children":1455},{"class":282,"line":355},[1456],{"type":59,"tag":280,"props":1457,"children":1458},{"emptyLinePlaceholder":296},[1459],{"type":65,"value":299},{"type":59,"tag":280,"props":1461,"children":1462},{"class":282,"line":363},[1463],{"type":59,"tag":280,"props":1464,"children":1465},{},[1466],{"type":65,"value":1467},"# Wave motion\n",{"type":59,"tag":280,"props":1469,"children":1470},{"class":282,"line":372},[1471],{"type":59,"tag":280,"props":1472,"children":1473},{},[1474],{"type":65,"value":1475},"frames = create_wiggle_animation(wiggle_type='wave')\n",{"type":59,"tag":280,"props":1477,"children":1478},{"class":282,"line":853},[1479],{"type":59,"tag":280,"props":1480,"children":1481},{"emptyLinePlaceholder":296},[1482],{"type":65,"value":299},{"type":59,"tag":280,"props":1484,"children":1485},{"class":282,"line":862},[1486],{"type":59,"tag":280,"props":1487,"children":1488},{},[1489],{"type":65,"value":1490},"# Excited wiggle for emoji GIFs\n",{"type":59,"tag":280,"props":1492,"children":1493},{"class":282,"line":870},[1494],{"type":59,"tag":280,"props":1495,"children":1496},{},[1497],{"type":65,"value":1498},"frames = create_excited_wiggle(emoji='🎉')\n",{"type":59,"tag":579,"props":1500,"children":1502},{"id":1501},"slide",[1503],{"type":65,"value":1504},"Slide",{"type":59,"tag":268,"props":1506,"children":1508},{"className":270,"code":1507,"language":272,"meta":273,"style":273},"from templates.slide import create_slide_animation, create_multi_slide\n\n# Slide in from left with overshoot\nframes = create_slide_animation(\n    direction='left',\n    slide_type='in',\n    overshoot=True\n)\n\n# Slide across\nframes = create_slide_animation(direction='left', slide_type='across')\n\n# Multiple objects sliding in sequence\nobjects = [\n    {'data': {'emoji': '🎯', 'size': 60}, 'direction': 'left', 'final_pos': (120, 240)},\n    {'data': {'emoji': '🎪', 'size': 60}, 'direction': 'right', 'final_pos': (240, 240)}\n]\nframes = create_multi_slide(objects, stagger_delay=5)\n",[1509],{"type":59,"tag":276,"props":1510,"children":1511},{"__ignoreMap":273},[1512,1520,1527,1535,1543,1551,1559,1567,1574,1581,1589,1597,1604,1612,1620,1628,1636,1645],{"type":59,"tag":280,"props":1513,"children":1514},{"class":282,"line":283},[1515],{"type":59,"tag":280,"props":1516,"children":1517},{},[1518],{"type":65,"value":1519},"from templates.slide import create_slide_animation, create_multi_slide\n",{"type":59,"tag":280,"props":1521,"children":1522},{"class":282,"line":292},[1523],{"type":59,"tag":280,"props":1524,"children":1525},{"emptyLinePlaceholder":296},[1526],{"type":65,"value":299},{"type":59,"tag":280,"props":1528,"children":1529},{"class":282,"line":302},[1530],{"type":59,"tag":280,"props":1531,"children":1532},{},[1533],{"type":65,"value":1534},"# Slide in from left with overshoot\n",{"type":59,"tag":280,"props":1536,"children":1537},{"class":282,"line":311},[1538],{"type":59,"tag":280,"props":1539,"children":1540},{},[1541],{"type":65,"value":1542},"frames = create_slide_animation(\n",{"type":59,"tag":280,"props":1544,"children":1545},{"class":282,"line":320},[1546],{"type":59,"tag":280,"props":1547,"children":1548},{},[1549],{"type":65,"value":1550},"    direction='left',\n",{"type":59,"tag":280,"props":1552,"children":1553},{"class":282,"line":329},[1554],{"type":59,"tag":280,"props":1555,"children":1556},{},[1557],{"type":65,"value":1558},"    slide_type='in',\n",{"type":59,"tag":280,"props":1560,"children":1561},{"class":282,"line":337},[1562],{"type":59,"tag":280,"props":1563,"children":1564},{},[1565],{"type":65,"value":1566},"    overshoot=True\n",{"type":59,"tag":280,"props":1568,"children":1569},{"class":282,"line":346},[1570],{"type":59,"tag":280,"props":1571,"children":1572},{},[1573],{"type":65,"value":670},{"type":59,"tag":280,"props":1575,"children":1576},{"class":282,"line":355},[1577],{"type":59,"tag":280,"props":1578,"children":1579},{"emptyLinePlaceholder":296},[1580],{"type":65,"value":299},{"type":59,"tag":280,"props":1582,"children":1583},{"class":282,"line":363},[1584],{"type":59,"tag":280,"props":1585,"children":1586},{},[1587],{"type":65,"value":1588},"# Slide across\n",{"type":59,"tag":280,"props":1590,"children":1591},{"class":282,"line":372},[1592],{"type":59,"tag":280,"props":1593,"children":1594},{},[1595],{"type":65,"value":1596},"frames = create_slide_animation(direction='left', slide_type='across')\n",{"type":59,"tag":280,"props":1598,"children":1599},{"class":282,"line":853},[1600],{"type":59,"tag":280,"props":1601,"children":1602},{"emptyLinePlaceholder":296},[1603],{"type":65,"value":299},{"type":59,"tag":280,"props":1605,"children":1606},{"class":282,"line":862},[1607],{"type":59,"tag":280,"props":1608,"children":1609},{},[1610],{"type":65,"value":1611},"# Multiple objects sliding in sequence\n",{"type":59,"tag":280,"props":1613,"children":1614},{"class":282,"line":870},[1615],{"type":59,"tag":280,"props":1616,"children":1617},{},[1618],{"type":65,"value":1619},"objects = [\n",{"type":59,"tag":280,"props":1621,"children":1622},{"class":282,"line":879},[1623],{"type":59,"tag":280,"props":1624,"children":1625},{},[1626],{"type":65,"value":1627},"    {'data': {'emoji': '🎯', 'size': 60}, 'direction': 'left', 'final_pos': (120, 240)},\n",{"type":59,"tag":280,"props":1629,"children":1630},{"class":282,"line":1371},[1631],{"type":59,"tag":280,"props":1632,"children":1633},{},[1634],{"type":65,"value":1635},"    {'data': {'emoji': '🎪', 'size': 60}, 'direction': 'right', 'final_pos': (240, 240)}\n",{"type":59,"tag":280,"props":1637,"children":1639},{"class":282,"line":1638},17,[1640],{"type":59,"tag":280,"props":1641,"children":1642},{},[1643],{"type":65,"value":1644},"]\n",{"type":59,"tag":280,"props":1646,"children":1648},{"class":282,"line":1647},18,[1649],{"type":59,"tag":280,"props":1650,"children":1651},{},[1652],{"type":65,"value":1653},"frames = create_multi_slide(objects, stagger_delay=5)\n",{"type":59,"tag":579,"props":1655,"children":1657},{"id":1656},"flip",[1658],{"type":65,"value":1659},"Flip",{"type":59,"tag":268,"props":1661,"children":1663},{"className":270,"code":1662,"language":272,"meta":273,"style":273},"from templates.flip import create_flip_animation, create_quick_flip\n\n# Horizontal flip between two emojis\nframes = create_flip_animation(\n    object1_data={'emoji': '😊', 'size': 120},\n    object2_data={'emoji': '😂', 'size': 120},\n    flip_axis='horizontal'\n)\n\n# Vertical flip\nframes = create_flip_animation(flip_axis='vertical')\n\n# Quick flip for emoji GIFs\nframes = create_quick_flip('👍', '👎')\n",[1664],{"type":59,"tag":276,"props":1665,"children":1666},{"__ignoreMap":273},[1667,1675,1682,1690,1698,1706,1714,1722,1729,1736,1744,1752,1759,1767],{"type":59,"tag":280,"props":1668,"children":1669},{"class":282,"line":283},[1670],{"type":59,"tag":280,"props":1671,"children":1672},{},[1673],{"type":65,"value":1674},"from templates.flip import create_flip_animation, create_quick_flip\n",{"type":59,"tag":280,"props":1676,"children":1677},{"class":282,"line":292},[1678],{"type":59,"tag":280,"props":1679,"children":1680},{"emptyLinePlaceholder":296},[1681],{"type":65,"value":299},{"type":59,"tag":280,"props":1683,"children":1684},{"class":282,"line":302},[1685],{"type":59,"tag":280,"props":1686,"children":1687},{},[1688],{"type":65,"value":1689},"# Horizontal flip between two emojis\n",{"type":59,"tag":280,"props":1691,"children":1692},{"class":282,"line":311},[1693],{"type":59,"tag":280,"props":1694,"children":1695},{},[1696],{"type":65,"value":1697},"frames = create_flip_animation(\n",{"type":59,"tag":280,"props":1699,"children":1700},{"class":282,"line":320},[1701],{"type":59,"tag":280,"props":1702,"children":1703},{},[1704],{"type":65,"value":1705},"    object1_data={'emoji': '😊', 'size': 120},\n",{"type":59,"tag":280,"props":1707,"children":1708},{"class":282,"line":329},[1709],{"type":59,"tag":280,"props":1710,"children":1711},{},[1712],{"type":65,"value":1713},"    object2_data={'emoji': '😂', 'size': 120},\n",{"type":59,"tag":280,"props":1715,"children":1716},{"class":282,"line":337},[1717],{"type":59,"tag":280,"props":1718,"children":1719},{},[1720],{"type":65,"value":1721},"    flip_axis='horizontal'\n",{"type":59,"tag":280,"props":1723,"children":1724},{"class":282,"line":346},[1725],{"type":59,"tag":280,"props":1726,"children":1727},{},[1728],{"type":65,"value":670},{"type":59,"tag":280,"props":1730,"children":1731},{"class":282,"line":355},[1732],{"type":59,"tag":280,"props":1733,"children":1734},{"emptyLinePlaceholder":296},[1735],{"type":65,"value":299},{"type":59,"tag":280,"props":1737,"children":1738},{"class":282,"line":363},[1739],{"type":59,"tag":280,"props":1740,"children":1741},{},[1742],{"type":65,"value":1743},"# Vertical flip\n",{"type":59,"tag":280,"props":1745,"children":1746},{"class":282,"line":372},[1747],{"type":59,"tag":280,"props":1748,"children":1749},{},[1750],{"type":65,"value":1751},"frames = create_flip_animation(flip_axis='vertical')\n",{"type":59,"tag":280,"props":1753,"children":1754},{"class":282,"line":853},[1755],{"type":59,"tag":280,"props":1756,"children":1757},{"emptyLinePlaceholder":296},[1758],{"type":65,"value":299},{"type":59,"tag":280,"props":1760,"children":1761},{"class":282,"line":862},[1762],{"type":59,"tag":280,"props":1763,"children":1764},{},[1765],{"type":65,"value":1766},"# Quick flip for emoji GIFs\n",{"type":59,"tag":280,"props":1768,"children":1769},{"class":282,"line":870},[1770],{"type":59,"tag":280,"props":1771,"children":1772},{},[1773],{"type":65,"value":1774},"frames = create_quick_flip('👍', '👎')\n",{"type":59,"tag":579,"props":1776,"children":1778},{"id":1777},"morph-transform",[1779],{"type":65,"value":1780},"Morph \u002F Transform",{"type":59,"tag":268,"props":1782,"children":1784},{"className":270,"code":1783,"language":272,"meta":273,"style":273},"from templates.morph import create_morph_animation, create_reaction_morph\n\n# Crossfade morph\nframes = create_morph_animation(\n    object1_data={'emoji': '😊', 'size': 100},\n    object2_data={'emoji': '😂', 'size': 100},\n    morph_type='crossfade'\n)\n\n# Scale morph (shrink while other grows)\nframes = create_morph_animation(morph_type='scale')\n\n# Spin morph (3D flip-like)\nframes = create_morph_animation(morph_type='spin_morph')\n",[1785],{"type":59,"tag":276,"props":1786,"children":1787},{"__ignoreMap":273},[1788,1796,1803,1811,1819,1826,1834,1842,1849,1856,1864,1872,1879,1887],{"type":59,"tag":280,"props":1789,"children":1790},{"class":282,"line":283},[1791],{"type":59,"tag":280,"props":1792,"children":1793},{},[1794],{"type":65,"value":1795},"from templates.morph import create_morph_animation, create_reaction_morph\n",{"type":59,"tag":280,"props":1797,"children":1798},{"class":282,"line":292},[1799],{"type":59,"tag":280,"props":1800,"children":1801},{"emptyLinePlaceholder":296},[1802],{"type":65,"value":299},{"type":59,"tag":280,"props":1804,"children":1805},{"class":282,"line":302},[1806],{"type":59,"tag":280,"props":1807,"children":1808},{},[1809],{"type":65,"value":1810},"# Crossfade morph\n",{"type":59,"tag":280,"props":1812,"children":1813},{"class":282,"line":311},[1814],{"type":59,"tag":280,"props":1815,"children":1816},{},[1817],{"type":65,"value":1818},"frames = create_morph_animation(\n",{"type":59,"tag":280,"props":1820,"children":1821},{"class":282,"line":320},[1822],{"type":59,"tag":280,"props":1823,"children":1824},{},[1825],{"type":65,"value":1104},{"type":59,"tag":280,"props":1827,"children":1828},{"class":282,"line":329},[1829],{"type":59,"tag":280,"props":1830,"children":1831},{},[1832],{"type":65,"value":1833},"    object2_data={'emoji': '😂', 'size': 100},\n",{"type":59,"tag":280,"props":1835,"children":1836},{"class":282,"line":337},[1837],{"type":59,"tag":280,"props":1838,"children":1839},{},[1840],{"type":65,"value":1841},"    morph_type='crossfade'\n",{"type":59,"tag":280,"props":1843,"children":1844},{"class":282,"line":346},[1845],{"type":59,"tag":280,"props":1846,"children":1847},{},[1848],{"type":65,"value":670},{"type":59,"tag":280,"props":1850,"children":1851},{"class":282,"line":355},[1852],{"type":59,"tag":280,"props":1853,"children":1854},{"emptyLinePlaceholder":296},[1855],{"type":65,"value":299},{"type":59,"tag":280,"props":1857,"children":1858},{"class":282,"line":363},[1859],{"type":59,"tag":280,"props":1860,"children":1861},{},[1862],{"type":65,"value":1863},"# Scale morph (shrink while other grows)\n",{"type":59,"tag":280,"props":1865,"children":1866},{"class":282,"line":372},[1867],{"type":59,"tag":280,"props":1868,"children":1869},{},[1870],{"type":65,"value":1871},"frames = create_morph_animation(morph_type='scale')\n",{"type":59,"tag":280,"props":1873,"children":1874},{"class":282,"line":853},[1875],{"type":59,"tag":280,"props":1876,"children":1877},{"emptyLinePlaceholder":296},[1878],{"type":65,"value":299},{"type":59,"tag":280,"props":1880,"children":1881},{"class":282,"line":862},[1882],{"type":59,"tag":280,"props":1883,"children":1884},{},[1885],{"type":65,"value":1886},"# Spin morph (3D flip-like)\n",{"type":59,"tag":280,"props":1888,"children":1889},{"class":282,"line":870},[1890],{"type":59,"tag":280,"props":1891,"children":1892},{},[1893],{"type":65,"value":1894},"frames = create_morph_animation(morph_type='spin_morph')\n",{"type":59,"tag":579,"props":1896,"children":1898},{"id":1897},"move-effect",[1899],{"type":65,"value":1900},"Move Effect",{"type":59,"tag":268,"props":1902,"children":1904},{"className":270,"code":1903,"language":272,"meta":273,"style":273},"from templates.move import create_move_animation\n\n# Linear movement\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '🚀', 'size': 60},\n    start_pos=(50, 240),\n    end_pos=(430, 240),\n    motion_type='linear',\n    easing='ease_out'\n)\n\n# Arc movement (parabolic trajectory)\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '⚽', 'size': 60},\n    start_pos=(50, 350),\n    end_pos=(430, 350),\n    motion_type='arc',\n    motion_params={'arc_height': 150}\n)\n\n# Circular movement\nframes = create_move_animation(\n    object_type='emoji',\n    object_data={'emoji': '🌍', 'size': 50},\n    motion_type='circle',\n    motion_params={\n        'center': (240, 240),\n        'radius': 120,\n        'angle_range': 360  # full circle\n    }\n)\n\n# Wave movement\nframes = create_move_animation(\n    motion_type='wave',\n    motion_params={\n        'wave_amplitude': 50,\n        'wave_frequency': 2\n    }\n)\n\n# Or use low-level easing functions\nfrom core.easing import interpolate, calculate_arc_motion\n\nfor i in range(num_frames):\n    t = i \u002F (num_frames - 1)\n    x = interpolate(start_x, end_x, t, easing='ease_out')\n    # Or: x, y = calculate_arc_motion(start, end, height, t)\n",[1905],{"type":59,"tag":276,"props":1906,"children":1907},{"__ignoreMap":273},[1908,1916,1923,1931,1939,1946,1954,1962,1970,1978,1986,1993,2000,2008,2015,2022,2030,2038,2046,2055,2064,2072,2080,2089,2097,2105,2114,2123,2132,2141,2150,2159,2168,2176,2184,2193,2201,2210,2218,2227,2236,2244,2252,2260,2269,2278,2286,2295,2304,2313],{"type":59,"tag":280,"props":1909,"children":1910},{"class":282,"line":283},[1911],{"type":59,"tag":280,"props":1912,"children":1913},{},[1914],{"type":65,"value":1915},"from templates.move import create_move_animation\n",{"type":59,"tag":280,"props":1917,"children":1918},{"class":282,"line":292},[1919],{"type":59,"tag":280,"props":1920,"children":1921},{"emptyLinePlaceholder":296},[1922],{"type":65,"value":299},{"type":59,"tag":280,"props":1924,"children":1925},{"class":282,"line":302},[1926],{"type":59,"tag":280,"props":1927,"children":1928},{},[1929],{"type":65,"value":1930},"# Linear movement\n",{"type":59,"tag":280,"props":1932,"children":1933},{"class":282,"line":311},[1934],{"type":59,"tag":280,"props":1935,"children":1936},{},[1937],{"type":65,"value":1938},"frames = create_move_animation(\n",{"type":59,"tag":280,"props":1940,"children":1941},{"class":282,"line":320},[1942],{"type":59,"tag":280,"props":1943,"children":1944},{},[1945],{"type":65,"value":630},{"type":59,"tag":280,"props":1947,"children":1948},{"class":282,"line":329},[1949],{"type":59,"tag":280,"props":1950,"children":1951},{},[1952],{"type":65,"value":1953},"    object_data={'emoji': '🚀', 'size': 60},\n",{"type":59,"tag":280,"props":1955,"children":1956},{"class":282,"line":337},[1957],{"type":59,"tag":280,"props":1958,"children":1959},{},[1960],{"type":65,"value":1961},"    start_pos=(50, 240),\n",{"type":59,"tag":280,"props":1963,"children":1964},{"class":282,"line":346},[1965],{"type":59,"tag":280,"props":1966,"children":1967},{},[1968],{"type":65,"value":1969},"    end_pos=(430, 240),\n",{"type":59,"tag":280,"props":1971,"children":1972},{"class":282,"line":355},[1973],{"type":59,"tag":280,"props":1974,"children":1975},{},[1976],{"type":65,"value":1977},"    motion_type='linear',\n",{"type":59,"tag":280,"props":1979,"children":1980},{"class":282,"line":363},[1981],{"type":59,"tag":280,"props":1982,"children":1983},{},[1984],{"type":65,"value":1985},"    easing='ease_out'\n",{"type":59,"tag":280,"props":1987,"children":1988},{"class":282,"line":372},[1989],{"type":59,"tag":280,"props":1990,"children":1991},{},[1992],{"type":65,"value":670},{"type":59,"tag":280,"props":1994,"children":1995},{"class":282,"line":853},[1996],{"type":59,"tag":280,"props":1997,"children":1998},{"emptyLinePlaceholder":296},[1999],{"type":65,"value":299},{"type":59,"tag":280,"props":2001,"children":2002},{"class":282,"line":862},[2003],{"type":59,"tag":280,"props":2004,"children":2005},{},[2006],{"type":65,"value":2007},"# Arc movement (parabolic trajectory)\n",{"type":59,"tag":280,"props":2009,"children":2010},{"class":282,"line":870},[2011],{"type":59,"tag":280,"props":2012,"children":2013},{},[2014],{"type":65,"value":1938},{"type":59,"tag":280,"props":2016,"children":2017},{"class":282,"line":879},[2018],{"type":59,"tag":280,"props":2019,"children":2020},{},[2021],{"type":65,"value":630},{"type":59,"tag":280,"props":2023,"children":2024},{"class":282,"line":1371},[2025],{"type":59,"tag":280,"props":2026,"children":2027},{},[2028],{"type":65,"value":2029},"    object_data={'emoji': '⚽', 'size': 60},\n",{"type":59,"tag":280,"props":2031,"children":2032},{"class":282,"line":1638},[2033],{"type":59,"tag":280,"props":2034,"children":2035},{},[2036],{"type":65,"value":2037},"    start_pos=(50, 350),\n",{"type":59,"tag":280,"props":2039,"children":2040},{"class":282,"line":1647},[2041],{"type":59,"tag":280,"props":2042,"children":2043},{},[2044],{"type":65,"value":2045},"    end_pos=(430, 350),\n",{"type":59,"tag":280,"props":2047,"children":2049},{"class":282,"line":2048},19,[2050],{"type":59,"tag":280,"props":2051,"children":2052},{},[2053],{"type":65,"value":2054},"    motion_type='arc',\n",{"type":59,"tag":280,"props":2056,"children":2058},{"class":282,"line":2057},20,[2059],{"type":59,"tag":280,"props":2060,"children":2061},{},[2062],{"type":65,"value":2063},"    motion_params={'arc_height': 150}\n",{"type":59,"tag":280,"props":2065,"children":2067},{"class":282,"line":2066},21,[2068],{"type":59,"tag":280,"props":2069,"children":2070},{},[2071],{"type":65,"value":670},{"type":59,"tag":280,"props":2073,"children":2075},{"class":282,"line":2074},22,[2076],{"type":59,"tag":280,"props":2077,"children":2078},{"emptyLinePlaceholder":296},[2079],{"type":65,"value":299},{"type":59,"tag":280,"props":2081,"children":2083},{"class":282,"line":2082},23,[2084],{"type":59,"tag":280,"props":2085,"children":2086},{},[2087],{"type":65,"value":2088},"# Circular movement\n",{"type":59,"tag":280,"props":2090,"children":2092},{"class":282,"line":2091},24,[2093],{"type":59,"tag":280,"props":2094,"children":2095},{},[2096],{"type":65,"value":1938},{"type":59,"tag":280,"props":2098,"children":2100},{"class":282,"line":2099},25,[2101],{"type":59,"tag":280,"props":2102,"children":2103},{},[2104],{"type":65,"value":630},{"type":59,"tag":280,"props":2106,"children":2108},{"class":282,"line":2107},26,[2109],{"type":59,"tag":280,"props":2110,"children":2111},{},[2112],{"type":65,"value":2113},"    object_data={'emoji': '🌍', 'size': 50},\n",{"type":59,"tag":280,"props":2115,"children":2117},{"class":282,"line":2116},27,[2118],{"type":59,"tag":280,"props":2119,"children":2120},{},[2121],{"type":65,"value":2122},"    motion_type='circle',\n",{"type":59,"tag":280,"props":2124,"children":2126},{"class":282,"line":2125},28,[2127],{"type":59,"tag":280,"props":2128,"children":2129},{},[2130],{"type":65,"value":2131},"    motion_params={\n",{"type":59,"tag":280,"props":2133,"children":2135},{"class":282,"line":2134},29,[2136],{"type":59,"tag":280,"props":2137,"children":2138},{},[2139],{"type":65,"value":2140},"        'center': (240, 240),\n",{"type":59,"tag":280,"props":2142,"children":2144},{"class":282,"line":2143},30,[2145],{"type":59,"tag":280,"props":2146,"children":2147},{},[2148],{"type":65,"value":2149},"        'radius': 120,\n",{"type":59,"tag":280,"props":2151,"children":2153},{"class":282,"line":2152},31,[2154],{"type":59,"tag":280,"props":2155,"children":2156},{},[2157],{"type":65,"value":2158},"        'angle_range': 360  # full circle\n",{"type":59,"tag":280,"props":2160,"children":2162},{"class":282,"line":2161},32,[2163],{"type":59,"tag":280,"props":2164,"children":2165},{},[2166],{"type":65,"value":2167},"    }\n",{"type":59,"tag":280,"props":2169,"children":2171},{"class":282,"line":2170},33,[2172],{"type":59,"tag":280,"props":2173,"children":2174},{},[2175],{"type":65,"value":670},{"type":59,"tag":280,"props":2177,"children":2179},{"class":282,"line":2178},34,[2180],{"type":59,"tag":280,"props":2181,"children":2182},{"emptyLinePlaceholder":296},[2183],{"type":65,"value":299},{"type":59,"tag":280,"props":2185,"children":2187},{"class":282,"line":2186},35,[2188],{"type":59,"tag":280,"props":2189,"children":2190},{},[2191],{"type":65,"value":2192},"# Wave movement\n",{"type":59,"tag":280,"props":2194,"children":2196},{"class":282,"line":2195},36,[2197],{"type":59,"tag":280,"props":2198,"children":2199},{},[2200],{"type":65,"value":1938},{"type":59,"tag":280,"props":2202,"children":2204},{"class":282,"line":2203},37,[2205],{"type":59,"tag":280,"props":2206,"children":2207},{},[2208],{"type":65,"value":2209},"    motion_type='wave',\n",{"type":59,"tag":280,"props":2211,"children":2213},{"class":282,"line":2212},38,[2214],{"type":59,"tag":280,"props":2215,"children":2216},{},[2217],{"type":65,"value":2131},{"type":59,"tag":280,"props":2219,"children":2221},{"class":282,"line":2220},39,[2222],{"type":59,"tag":280,"props":2223,"children":2224},{},[2225],{"type":65,"value":2226},"        'wave_amplitude': 50,\n",{"type":59,"tag":280,"props":2228,"children":2230},{"class":282,"line":2229},40,[2231],{"type":59,"tag":280,"props":2232,"children":2233},{},[2234],{"type":65,"value":2235},"        'wave_frequency': 2\n",{"type":59,"tag":280,"props":2237,"children":2239},{"class":282,"line":2238},41,[2240],{"type":59,"tag":280,"props":2241,"children":2242},{},[2243],{"type":65,"value":2167},{"type":59,"tag":280,"props":2245,"children":2247},{"class":282,"line":2246},42,[2248],{"type":59,"tag":280,"props":2249,"children":2250},{},[2251],{"type":65,"value":670},{"type":59,"tag":280,"props":2253,"children":2255},{"class":282,"line":2254},43,[2256],{"type":59,"tag":280,"props":2257,"children":2258},{"emptyLinePlaceholder":296},[2259],{"type":65,"value":299},{"type":59,"tag":280,"props":2261,"children":2263},{"class":282,"line":2262},44,[2264],{"type":59,"tag":280,"props":2265,"children":2266},{},[2267],{"type":65,"value":2268},"# Or use low-level easing functions\n",{"type":59,"tag":280,"props":2270,"children":2272},{"class":282,"line":2271},45,[2273],{"type":59,"tag":280,"props":2274,"children":2275},{},[2276],{"type":65,"value":2277},"from core.easing import interpolate, calculate_arc_motion\n",{"type":59,"tag":280,"props":2279,"children":2281},{"class":282,"line":2280},46,[2282],{"type":59,"tag":280,"props":2283,"children":2284},{"emptyLinePlaceholder":296},[2285],{"type":65,"value":299},{"type":59,"tag":280,"props":2287,"children":2289},{"class":282,"line":2288},47,[2290],{"type":59,"tag":280,"props":2291,"children":2292},{},[2293],{"type":65,"value":2294},"for i in range(num_frames):\n",{"type":59,"tag":280,"props":2296,"children":2298},{"class":282,"line":2297},48,[2299],{"type":59,"tag":280,"props":2300,"children":2301},{},[2302],{"type":65,"value":2303},"    t = i \u002F (num_frames - 1)\n",{"type":59,"tag":280,"props":2305,"children":2307},{"class":282,"line":2306},49,[2308],{"type":59,"tag":280,"props":2309,"children":2310},{},[2311],{"type":65,"value":2312},"    x = interpolate(start_x, end_x, t, easing='ease_out')\n",{"type":59,"tag":280,"props":2314,"children":2316},{"class":282,"line":2315},50,[2317],{"type":59,"tag":280,"props":2318,"children":2319},{},[2320],{"type":65,"value":2321},"    # Or: x, y = calculate_arc_motion(start, end, height, t)\n",{"type":59,"tag":579,"props":2323,"children":2325},{"id":2324},"kaleidoscope-effect",[2326],{"type":65,"value":2327},"Kaleidoscope Effect",{"type":59,"tag":268,"props":2329,"children":2331},{"className":270,"code":2330,"language":272,"meta":273,"style":273},"from templates.kaleidoscope import apply_kaleidoscope, create_kaleidoscope_animation\n\n# Apply to a single frame\nkaleido_frame = apply_kaleidoscope(frame, segments=8)\n\n# Or create animated kaleidoscope\nframes = create_kaleidoscope_animation(\n    base_frame=my_frame,  # or None for demo pattern\n    num_frames=30,\n    segments=8,\n    rotation_speed=1.0\n)\n\n# Simple mirror effects (faster)\nfrom templates.kaleidoscope import apply_simple_mirror\n\nmirrored = apply_simple_mirror(frame, mode='quad')  # 4-way mirror\n# modes: 'horizontal', 'vertical', 'quad', 'radial'\n",[2332],{"type":59,"tag":276,"props":2333,"children":2334},{"__ignoreMap":273},[2335,2343,2350,2358,2366,2373,2381,2389,2397,2404,2412,2420,2427,2434,2442,2450,2457,2465],{"type":59,"tag":280,"props":2336,"children":2337},{"class":282,"line":283},[2338],{"type":59,"tag":280,"props":2339,"children":2340},{},[2341],{"type":65,"value":2342},"from templates.kaleidoscope import apply_kaleidoscope, create_kaleidoscope_animation\n",{"type":59,"tag":280,"props":2344,"children":2345},{"class":282,"line":292},[2346],{"type":59,"tag":280,"props":2347,"children":2348},{"emptyLinePlaceholder":296},[2349],{"type":65,"value":299},{"type":59,"tag":280,"props":2351,"children":2352},{"class":282,"line":302},[2353],{"type":59,"tag":280,"props":2354,"children":2355},{},[2356],{"type":65,"value":2357},"# Apply to a single frame\n",{"type":59,"tag":280,"props":2359,"children":2360},{"class":282,"line":311},[2361],{"type":59,"tag":280,"props":2362,"children":2363},{},[2364],{"type":65,"value":2365},"kaleido_frame = apply_kaleidoscope(frame, segments=8)\n",{"type":59,"tag":280,"props":2367,"children":2368},{"class":282,"line":320},[2369],{"type":59,"tag":280,"props":2370,"children":2371},{"emptyLinePlaceholder":296},[2372],{"type":65,"value":299},{"type":59,"tag":280,"props":2374,"children":2375},{"class":282,"line":329},[2376],{"type":59,"tag":280,"props":2377,"children":2378},{},[2379],{"type":65,"value":2380},"# Or create animated kaleidoscope\n",{"type":59,"tag":280,"props":2382,"children":2383},{"class":282,"line":337},[2384],{"type":59,"tag":280,"props":2385,"children":2386},{},[2387],{"type":65,"value":2388},"frames = create_kaleidoscope_animation(\n",{"type":59,"tag":280,"props":2390,"children":2391},{"class":282,"line":346},[2392],{"type":59,"tag":280,"props":2393,"children":2394},{},[2395],{"type":65,"value":2396},"    base_frame=my_frame,  # or None for demo pattern\n",{"type":59,"tag":280,"props":2398,"children":2399},{"class":282,"line":355},[2400],{"type":59,"tag":280,"props":2401,"children":2402},{},[2403],{"type":65,"value":738},{"type":59,"tag":280,"props":2405,"children":2406},{"class":282,"line":363},[2407],{"type":59,"tag":280,"props":2408,"children":2409},{},[2410],{"type":65,"value":2411},"    segments=8,\n",{"type":59,"tag":280,"props":2413,"children":2414},{"class":282,"line":372},[2415],{"type":59,"tag":280,"props":2416,"children":2417},{},[2418],{"type":65,"value":2419},"    rotation_speed=1.0\n",{"type":59,"tag":280,"props":2421,"children":2422},{"class":282,"line":853},[2423],{"type":59,"tag":280,"props":2424,"children":2425},{},[2426],{"type":65,"value":670},{"type":59,"tag":280,"props":2428,"children":2429},{"class":282,"line":862},[2430],{"type":59,"tag":280,"props":2431,"children":2432},{"emptyLinePlaceholder":296},[2433],{"type":65,"value":299},{"type":59,"tag":280,"props":2435,"children":2436},{"class":282,"line":870},[2437],{"type":59,"tag":280,"props":2438,"children":2439},{},[2440],{"type":65,"value":2441},"# Simple mirror effects (faster)\n",{"type":59,"tag":280,"props":2443,"children":2444},{"class":282,"line":879},[2445],{"type":59,"tag":280,"props":2446,"children":2447},{},[2448],{"type":65,"value":2449},"from templates.kaleidoscope import apply_simple_mirror\n",{"type":59,"tag":280,"props":2451,"children":2452},{"class":282,"line":1371},[2453],{"type":59,"tag":280,"props":2454,"children":2455},{"emptyLinePlaceholder":296},[2456],{"type":65,"value":299},{"type":59,"tag":280,"props":2458,"children":2459},{"class":282,"line":1638},[2460],{"type":59,"tag":280,"props":2461,"children":2462},{},[2463],{"type":65,"value":2464},"mirrored = apply_simple_mirror(frame, mode='quad')  # 4-way mirror\n",{"type":59,"tag":280,"props":2466,"children":2467},{"class":282,"line":1647},[2468],{"type":59,"tag":280,"props":2469,"children":2470},{},[2471],{"type":65,"value":2472},"# modes: 'horizontal', 'vertical', 'quad', 'radial'\n",{"type":59,"tag":68,"props":2474,"children":2475},{},[2476],{"type":59,"tag":74,"props":2477,"children":2478},{},[2479],{"type":65,"value":2480},"To compose primitives freely, follow these patterns:",{"type":59,"tag":268,"props":2482,"children":2484},{"className":270,"code":2483,"language":272,"meta":273,"style":273},"# Example: Bounce + shake for impact\nfor i in range(num_frames):\n    frame = create_blank_frame(480, 480, bg_color)\n\n    # Bounce motion\n    t_bounce = i \u002F (num_frames - 1)\n    y = interpolate(start_y, ground_y, t_bounce, 'bounce_out')\n\n    # Add shake on impact (when y reaches ground)\n    if y >= ground_y - 5:\n        shake_x = math.sin(i * 2) * 10\n        x = center_x + shake_x\n    else:\n        x = center_x\n\n    draw_emoji(frame, '⚽', (x, y), size=60)\n    builder.add_frame(frame)\n",[2485],{"type":59,"tag":276,"props":2486,"children":2487},{"__ignoreMap":273},[2488,2496,2503,2511,2518,2526,2534,2542,2549,2557,2565,2573,2581,2589,2597,2604,2612],{"type":59,"tag":280,"props":2489,"children":2490},{"class":282,"line":283},[2491],{"type":59,"tag":280,"props":2492,"children":2493},{},[2494],{"type":65,"value":2495},"# Example: Bounce + shake for impact\n",{"type":59,"tag":280,"props":2497,"children":2498},{"class":282,"line":292},[2499],{"type":59,"tag":280,"props":2500,"children":2501},{},[2502],{"type":65,"value":2294},{"type":59,"tag":280,"props":2504,"children":2505},{"class":282,"line":302},[2506],{"type":59,"tag":280,"props":2507,"children":2508},{},[2509],{"type":65,"value":2510},"    frame = create_blank_frame(480, 480, bg_color)\n",{"type":59,"tag":280,"props":2512,"children":2513},{"class":282,"line":311},[2514],{"type":59,"tag":280,"props":2515,"children":2516},{"emptyLinePlaceholder":296},[2517],{"type":65,"value":299},{"type":59,"tag":280,"props":2519,"children":2520},{"class":282,"line":320},[2521],{"type":59,"tag":280,"props":2522,"children":2523},{},[2524],{"type":65,"value":2525},"    # Bounce motion\n",{"type":59,"tag":280,"props":2527,"children":2528},{"class":282,"line":329},[2529],{"type":59,"tag":280,"props":2530,"children":2531},{},[2532],{"type":65,"value":2533},"    t_bounce = i \u002F (num_frames - 1)\n",{"type":59,"tag":280,"props":2535,"children":2536},{"class":282,"line":337},[2537],{"type":59,"tag":280,"props":2538,"children":2539},{},[2540],{"type":65,"value":2541},"    y = interpolate(start_y, ground_y, t_bounce, 'bounce_out')\n",{"type":59,"tag":280,"props":2543,"children":2544},{"class":282,"line":346},[2545],{"type":59,"tag":280,"props":2546,"children":2547},{"emptyLinePlaceholder":296},[2548],{"type":65,"value":299},{"type":59,"tag":280,"props":2550,"children":2551},{"class":282,"line":355},[2552],{"type":59,"tag":280,"props":2553,"children":2554},{},[2555],{"type":65,"value":2556},"    # Add shake on impact (when y reaches ground)\n",{"type":59,"tag":280,"props":2558,"children":2559},{"class":282,"line":363},[2560],{"type":59,"tag":280,"props":2561,"children":2562},{},[2563],{"type":65,"value":2564},"    if y >= ground_y - 5:\n",{"type":59,"tag":280,"props":2566,"children":2567},{"class":282,"line":372},[2568],{"type":59,"tag":280,"props":2569,"children":2570},{},[2571],{"type":65,"value":2572},"        shake_x = math.sin(i * 2) * 10\n",{"type":59,"tag":280,"props":2574,"children":2575},{"class":282,"line":853},[2576],{"type":59,"tag":280,"props":2577,"children":2578},{},[2579],{"type":65,"value":2580},"        x = center_x + shake_x\n",{"type":59,"tag":280,"props":2582,"children":2583},{"class":282,"line":862},[2584],{"type":59,"tag":280,"props":2585,"children":2586},{},[2587],{"type":65,"value":2588},"    else:\n",{"type":59,"tag":280,"props":2590,"children":2591},{"class":282,"line":870},[2592],{"type":59,"tag":280,"props":2593,"children":2594},{},[2595],{"type":65,"value":2596},"        x = center_x\n",{"type":59,"tag":280,"props":2598,"children":2599},{"class":282,"line":879},[2600],{"type":59,"tag":280,"props":2601,"children":2602},{"emptyLinePlaceholder":296},[2603],{"type":65,"value":299},{"type":59,"tag":280,"props":2605,"children":2606},{"class":282,"line":1371},[2607],{"type":59,"tag":280,"props":2608,"children":2609},{},[2610],{"type":65,"value":2611},"    draw_emoji(frame, '⚽', (x, y), size=60)\n",{"type":59,"tag":280,"props":2613,"children":2614},{"class":282,"line":1638},[2615],{"type":59,"tag":280,"props":2616,"children":2617},{},[2618],{"type":65,"value":2619},"    builder.add_frame(frame)\n",{"type":59,"tag":80,"props":2621,"children":2623},{"id":2622},"helper-utilities",[2624],{"type":65,"value":245},{"type":59,"tag":68,"props":2626,"children":2627},{},[2628,2630],{"type":65,"value":2629},"These are optional helpers for common needs. ",{"type":59,"tag":74,"props":2631,"children":2632},{},[2633],{"type":65,"value":2634},"Use, modify, or replace these with custom implementations as needed.",{"type":59,"tag":579,"props":2636,"children":2638},{"id":2637},"gif-builder-assembly-optimization",[2639],{"type":65,"value":2640},"GIF Builder (Assembly & Optimization)",{"type":59,"tag":268,"props":2642,"children":2644},{"className":270,"code":2643,"language":272,"meta":273,"style":273},"from core.gif_builder import GIFBuilder\n\n# Create builder with your chosen settings\nbuilder = GIFBuilder(width=480, height=480, fps=20)\n\n# Add frames (however you created them)\nfor frame in my_frames:\n    builder.add_frame(frame)\n\n# Save with optimization\nbuilder.save('output.gif',\n             num_colors=128,\n             optimize_for_emoji=False)\n",[2645],{"type":59,"tag":276,"props":2646,"children":2647},{"__ignoreMap":273},[2648,2655,2662,2670,2678,2685,2693,2701,2708,2715,2723,2731,2739],{"type":59,"tag":280,"props":2649,"children":2650},{"class":282,"line":283},[2651],{"type":59,"tag":280,"props":2652,"children":2653},{},[2654],{"type":65,"value":289},{"type":59,"tag":280,"props":2656,"children":2657},{"class":282,"line":292},[2658],{"type":59,"tag":280,"props":2659,"children":2660},{"emptyLinePlaceholder":296},[2661],{"type":65,"value":299},{"type":59,"tag":280,"props":2663,"children":2664},{"class":282,"line":302},[2665],{"type":59,"tag":280,"props":2666,"children":2667},{},[2668],{"type":65,"value":2669},"# Create builder with your chosen settings\n",{"type":59,"tag":280,"props":2671,"children":2672},{"class":282,"line":311},[2673],{"type":59,"tag":280,"props":2674,"children":2675},{},[2676],{"type":65,"value":2677},"builder = GIFBuilder(width=480, height=480, fps=20)\n",{"type":59,"tag":280,"props":2679,"children":2680},{"class":282,"line":320},[2681],{"type":59,"tag":280,"props":2682,"children":2683},{"emptyLinePlaceholder":296},[2684],{"type":65,"value":299},{"type":59,"tag":280,"props":2686,"children":2687},{"class":282,"line":329},[2688],{"type":59,"tag":280,"props":2689,"children":2690},{},[2691],{"type":65,"value":2692},"# Add frames (however you created them)\n",{"type":59,"tag":280,"props":2694,"children":2695},{"class":282,"line":337},[2696],{"type":59,"tag":280,"props":2697,"children":2698},{},[2699],{"type":65,"value":2700},"for frame in my_frames:\n",{"type":59,"tag":280,"props":2702,"children":2703},{"class":282,"line":346},[2704],{"type":59,"tag":280,"props":2705,"children":2706},{},[2707],{"type":65,"value":2619},{"type":59,"tag":280,"props":2709,"children":2710},{"class":282,"line":355},[2711],{"type":59,"tag":280,"props":2712,"children":2713},{"emptyLinePlaceholder":296},[2714],{"type":65,"value":299},{"type":59,"tag":280,"props":2716,"children":2717},{"class":282,"line":363},[2718],{"type":59,"tag":280,"props":2719,"children":2720},{},[2721],{"type":65,"value":2722},"# Save with optimization\n",{"type":59,"tag":280,"props":2724,"children":2725},{"class":282,"line":372},[2726],{"type":59,"tag":280,"props":2727,"children":2728},{},[2729],{"type":65,"value":2730},"builder.save('output.gif',\n",{"type":59,"tag":280,"props":2732,"children":2733},{"class":282,"line":853},[2734],{"type":59,"tag":280,"props":2735,"children":2736},{},[2737],{"type":65,"value":2738},"             num_colors=128,\n",{"type":59,"tag":280,"props":2740,"children":2741},{"class":282,"line":862},[2742],{"type":59,"tag":280,"props":2743,"children":2744},{},[2745],{"type":65,"value":2746},"             optimize_for_emoji=False)\n",{"type":59,"tag":68,"props":2748,"children":2749},{},[2750],{"type":65,"value":2751},"Key features:",{"type":59,"tag":100,"props":2753,"children":2754},{},[2755,2760,2765,2770],{"type":59,"tag":104,"props":2756,"children":2757},{},[2758],{"type":65,"value":2759},"Automatic color quantization",{"type":59,"tag":104,"props":2761,"children":2762},{},[2763],{"type":65,"value":2764},"Duplicate frame removal",{"type":59,"tag":104,"props":2766,"children":2767},{},[2768],{"type":65,"value":2769},"Size warnings for Slack limits",{"type":59,"tag":104,"props":2771,"children":2772},{},[2773],{"type":65,"value":2774},"Emoji mode (aggressive optimization)",{"type":59,"tag":579,"props":2776,"children":2778},{"id":2777},"text-rendering",[2779],{"type":65,"value":2780},"Text Rendering",{"type":59,"tag":68,"props":2782,"children":2783},{},[2784],{"type":65,"value":2785},"For small GIFs like emojis, text readability is challenging. A common solution involves adding outlines:",{"type":59,"tag":268,"props":2787,"children":2789},{"className":270,"code":2788,"language":272,"meta":273,"style":273},"from core.typography import draw_text_with_outline, TYPOGRAPHY_SCALE\n\n# Text with outline (helps readability)\ndraw_text_with_outline(\n    frame, \"BONK!\",\n    position=(240, 100),\n    font_size=TYPOGRAPHY_SCALE['h1'],  # 60px\n    text_color=(255, 68, 68),\n    outline_color=(0, 0, 0),\n    outline_width=4,\n    centered=True\n)\n",[2790],{"type":59,"tag":276,"props":2791,"children":2792},{"__ignoreMap":273},[2793,2801,2808,2816,2824,2832,2840,2848,2856,2864,2872,2880],{"type":59,"tag":280,"props":2794,"children":2795},{"class":282,"line":283},[2796],{"type":59,"tag":280,"props":2797,"children":2798},{},[2799],{"type":65,"value":2800},"from core.typography import draw_text_with_outline, TYPOGRAPHY_SCALE\n",{"type":59,"tag":280,"props":2802,"children":2803},{"class":282,"line":292},[2804],{"type":59,"tag":280,"props":2805,"children":2806},{"emptyLinePlaceholder":296},[2807],{"type":65,"value":299},{"type":59,"tag":280,"props":2809,"children":2810},{"class":282,"line":302},[2811],{"type":59,"tag":280,"props":2812,"children":2813},{},[2814],{"type":65,"value":2815},"# Text with outline (helps readability)\n",{"type":59,"tag":280,"props":2817,"children":2818},{"class":282,"line":311},[2819],{"type":59,"tag":280,"props":2820,"children":2821},{},[2822],{"type":65,"value":2823},"draw_text_with_outline(\n",{"type":59,"tag":280,"props":2825,"children":2826},{"class":282,"line":320},[2827],{"type":59,"tag":280,"props":2828,"children":2829},{},[2830],{"type":65,"value":2831},"    frame, \"BONK!\",\n",{"type":59,"tag":280,"props":2833,"children":2834},{"class":282,"line":329},[2835],{"type":59,"tag":280,"props":2836,"children":2837},{},[2838],{"type":65,"value":2839},"    position=(240, 100),\n",{"type":59,"tag":280,"props":2841,"children":2842},{"class":282,"line":337},[2843],{"type":59,"tag":280,"props":2844,"children":2845},{},[2846],{"type":65,"value":2847},"    font_size=TYPOGRAPHY_SCALE['h1'],  # 60px\n",{"type":59,"tag":280,"props":2849,"children":2850},{"class":282,"line":346},[2851],{"type":59,"tag":280,"props":2852,"children":2853},{},[2854],{"type":65,"value":2855},"    text_color=(255, 68, 68),\n",{"type":59,"tag":280,"props":2857,"children":2858},{"class":282,"line":355},[2859],{"type":59,"tag":280,"props":2860,"children":2861},{},[2862],{"type":65,"value":2863},"    outline_color=(0, 0, 0),\n",{"type":59,"tag":280,"props":2865,"children":2866},{"class":282,"line":363},[2867],{"type":59,"tag":280,"props":2868,"children":2869},{},[2870],{"type":65,"value":2871},"    outline_width=4,\n",{"type":59,"tag":280,"props":2873,"children":2874},{"class":282,"line":372},[2875],{"type":59,"tag":280,"props":2876,"children":2877},{},[2878],{"type":65,"value":2879},"    centered=True\n",{"type":59,"tag":280,"props":2881,"children":2882},{"class":282,"line":853},[2883],{"type":59,"tag":280,"props":2884,"children":2885},{},[2886],{"type":65,"value":670},{"type":59,"tag":68,"props":2888,"children":2889},{},[2890,2892,2898],{"type":65,"value":2891},"To implement custom text rendering, use PIL's ",{"type":59,"tag":276,"props":2893,"children":2895},{"className":2894},[],[2896],{"type":65,"value":2897},"ImageDraw.text()",{"type":65,"value":2899}," which works fine for larger GIFs.",{"type":59,"tag":579,"props":2901,"children":2903},{"id":2902},"color-management",[2904],{"type":65,"value":2905},"Color Management",{"type":59,"tag":68,"props":2907,"children":2908},{},[2909],{"type":65,"value":2910},"Professional-looking GIFs often use cohesive color palettes:",{"type":59,"tag":268,"props":2912,"children":2914},{"className":270,"code":2913,"language":272,"meta":273,"style":273},"from core.color_palettes import get_palette\n\n# Get a pre-made palette\npalette = get_palette('vibrant')  # or 'pastel', 'dark', 'neon', 'professional'\n\nbg_color = palette['background']\ntext_color = palette['primary']\naccent_color = palette['accent']\n",[2915],{"type":59,"tag":276,"props":2916,"children":2917},{"__ignoreMap":273},[2918,2926,2933,2941,2949,2956,2964,2972],{"type":59,"tag":280,"props":2919,"children":2920},{"class":282,"line":283},[2921],{"type":59,"tag":280,"props":2922,"children":2923},{},[2924],{"type":65,"value":2925},"from core.color_palettes import get_palette\n",{"type":59,"tag":280,"props":2927,"children":2928},{"class":282,"line":292},[2929],{"type":59,"tag":280,"props":2930,"children":2931},{"emptyLinePlaceholder":296},[2932],{"type":65,"value":299},{"type":59,"tag":280,"props":2934,"children":2935},{"class":282,"line":302},[2936],{"type":59,"tag":280,"props":2937,"children":2938},{},[2939],{"type":65,"value":2940},"# Get a pre-made palette\n",{"type":59,"tag":280,"props":2942,"children":2943},{"class":282,"line":311},[2944],{"type":59,"tag":280,"props":2945,"children":2946},{},[2947],{"type":65,"value":2948},"palette = get_palette('vibrant')  # or 'pastel', 'dark', 'neon', 'professional'\n",{"type":59,"tag":280,"props":2950,"children":2951},{"class":282,"line":320},[2952],{"type":59,"tag":280,"props":2953,"children":2954},{"emptyLinePlaceholder":296},[2955],{"type":65,"value":299},{"type":59,"tag":280,"props":2957,"children":2958},{"class":282,"line":329},[2959],{"type":59,"tag":280,"props":2960,"children":2961},{},[2962],{"type":65,"value":2963},"bg_color = palette['background']\n",{"type":59,"tag":280,"props":2965,"children":2966},{"class":282,"line":337},[2967],{"type":59,"tag":280,"props":2968,"children":2969},{},[2970],{"type":65,"value":2971},"text_color = palette['primary']\n",{"type":59,"tag":280,"props":2973,"children":2974},{"class":282,"line":346},[2975],{"type":59,"tag":280,"props":2976,"children":2977},{},[2978],{"type":65,"value":2979},"accent_color = palette['accent']\n",{"type":59,"tag":68,"props":2981,"children":2982},{},[2983],{"type":65,"value":2984},"To work with colors directly, use RGB tuples - whatever works for the use case.",{"type":59,"tag":579,"props":2986,"children":2988},{"id":2987},"visual-effects",[2989],{"type":65,"value":2990},"Visual Effects",{"type":59,"tag":68,"props":2992,"children":2993},{},[2994],{"type":65,"value":2995},"Optional effects for impact moments:",{"type":59,"tag":268,"props":2997,"children":2999},{"className":270,"code":2998,"language":272,"meta":273,"style":273},"from core.visual_effects import ParticleSystem, create_impact_flash, create_shockwave_rings\n\n# Particle system\nparticles = ParticleSystem()\nparticles.emit_sparkles(x=240, y=200, count=15)\nparticles.emit_confetti(x=240, y=200, count=20)\n\n# Update and render each frame\nparticles.update()\nparticles.render(frame)\n\n# Flash effect\nframe = create_impact_flash(frame, position=(240, 200), radius=100)\n\n# Shockwave rings\nframe = create_shockwave_rings(frame, position=(240, 200), radii=[30, 60, 90])\n",[3000],{"type":59,"tag":276,"props":3001,"children":3002},{"__ignoreMap":273},[3003,3011,3018,3026,3034,3042,3050,3057,3065,3073,3081,3088,3096,3104,3111,3119],{"type":59,"tag":280,"props":3004,"children":3005},{"class":282,"line":283},[3006],{"type":59,"tag":280,"props":3007,"children":3008},{},[3009],{"type":65,"value":3010},"from core.visual_effects import ParticleSystem, create_impact_flash, create_shockwave_rings\n",{"type":59,"tag":280,"props":3012,"children":3013},{"class":282,"line":292},[3014],{"type":59,"tag":280,"props":3015,"children":3016},{"emptyLinePlaceholder":296},[3017],{"type":65,"value":299},{"type":59,"tag":280,"props":3019,"children":3020},{"class":282,"line":302},[3021],{"type":59,"tag":280,"props":3022,"children":3023},{},[3024],{"type":65,"value":3025},"# Particle system\n",{"type":59,"tag":280,"props":3027,"children":3028},{"class":282,"line":311},[3029],{"type":59,"tag":280,"props":3030,"children":3031},{},[3032],{"type":65,"value":3033},"particles = ParticleSystem()\n",{"type":59,"tag":280,"props":3035,"children":3036},{"class":282,"line":320},[3037],{"type":59,"tag":280,"props":3038,"children":3039},{},[3040],{"type":65,"value":3041},"particles.emit_sparkles(x=240, y=200, count=15)\n",{"type":59,"tag":280,"props":3043,"children":3044},{"class":282,"line":329},[3045],{"type":59,"tag":280,"props":3046,"children":3047},{},[3048],{"type":65,"value":3049},"particles.emit_confetti(x=240, y=200, count=20)\n",{"type":59,"tag":280,"props":3051,"children":3052},{"class":282,"line":337},[3053],{"type":59,"tag":280,"props":3054,"children":3055},{"emptyLinePlaceholder":296},[3056],{"type":65,"value":299},{"type":59,"tag":280,"props":3058,"children":3059},{"class":282,"line":346},[3060],{"type":59,"tag":280,"props":3061,"children":3062},{},[3063],{"type":65,"value":3064},"# Update and render each frame\n",{"type":59,"tag":280,"props":3066,"children":3067},{"class":282,"line":355},[3068],{"type":59,"tag":280,"props":3069,"children":3070},{},[3071],{"type":65,"value":3072},"particles.update()\n",{"type":59,"tag":280,"props":3074,"children":3075},{"class":282,"line":363},[3076],{"type":59,"tag":280,"props":3077,"children":3078},{},[3079],{"type":65,"value":3080},"particles.render(frame)\n",{"type":59,"tag":280,"props":3082,"children":3083},{"class":282,"line":372},[3084],{"type":59,"tag":280,"props":3085,"children":3086},{"emptyLinePlaceholder":296},[3087],{"type":65,"value":299},{"type":59,"tag":280,"props":3089,"children":3090},{"class":282,"line":853},[3091],{"type":59,"tag":280,"props":3092,"children":3093},{},[3094],{"type":65,"value":3095},"# Flash effect\n",{"type":59,"tag":280,"props":3097,"children":3098},{"class":282,"line":862},[3099],{"type":59,"tag":280,"props":3100,"children":3101},{},[3102],{"type":65,"value":3103},"frame = create_impact_flash(frame, position=(240, 200), radius=100)\n",{"type":59,"tag":280,"props":3105,"children":3106},{"class":282,"line":870},[3107],{"type":59,"tag":280,"props":3108,"children":3109},{"emptyLinePlaceholder":296},[3110],{"type":65,"value":299},{"type":59,"tag":280,"props":3112,"children":3113},{"class":282,"line":879},[3114],{"type":59,"tag":280,"props":3115,"children":3116},{},[3117],{"type":65,"value":3118},"# Shockwave rings\n",{"type":59,"tag":280,"props":3120,"children":3121},{"class":282,"line":1371},[3122],{"type":59,"tag":280,"props":3123,"children":3124},{},[3125],{"type":65,"value":3126},"frame = create_shockwave_rings(frame, position=(240, 200), radii=[30, 60, 90])\n",{"type":59,"tag":579,"props":3128,"children":3130},{"id":3129},"easing-functions",[3131],{"type":65,"value":3132},"Easing Functions",{"type":59,"tag":68,"props":3134,"children":3135},{},[3136],{"type":65,"value":3137},"Smooth motion uses easing instead of linear interpolation:",{"type":59,"tag":268,"props":3139,"children":3141},{"className":270,"code":3140,"language":272,"meta":273,"style":273},"from core.easing import interpolate\n\n# Object falling (accelerates)\ny = interpolate(start=0, end=400, t=progress, easing='ease_in')\n\n# Object landing (decelerates)\ny = interpolate(start=0, end=400, t=progress, easing='ease_out')\n\n# Bouncing\ny = interpolate(start=0, end=400, t=progress, easing='bounce_out')\n\n# Overshoot (elastic)\nscale = interpolate(start=0.5, end=1.0, t=progress, easing='elastic_out')\n",[3142],{"type":59,"tag":276,"props":3143,"children":3144},{"__ignoreMap":273},[3145,3153,3160,3168,3176,3183,3191,3199,3206,3214,3222,3229,3237],{"type":59,"tag":280,"props":3146,"children":3147},{"class":282,"line":283},[3148],{"type":59,"tag":280,"props":3149,"children":3150},{},[3151],{"type":65,"value":3152},"from core.easing import interpolate\n",{"type":59,"tag":280,"props":3154,"children":3155},{"class":282,"line":292},[3156],{"type":59,"tag":280,"props":3157,"children":3158},{"emptyLinePlaceholder":296},[3159],{"type":65,"value":299},{"type":59,"tag":280,"props":3161,"children":3162},{"class":282,"line":302},[3163],{"type":59,"tag":280,"props":3164,"children":3165},{},[3166],{"type":65,"value":3167},"# Object falling (accelerates)\n",{"type":59,"tag":280,"props":3169,"children":3170},{"class":282,"line":311},[3171],{"type":59,"tag":280,"props":3172,"children":3173},{},[3174],{"type":65,"value":3175},"y = interpolate(start=0, end=400, t=progress, easing='ease_in')\n",{"type":59,"tag":280,"props":3177,"children":3178},{"class":282,"line":320},[3179],{"type":59,"tag":280,"props":3180,"children":3181},{"emptyLinePlaceholder":296},[3182],{"type":65,"value":299},{"type":59,"tag":280,"props":3184,"children":3185},{"class":282,"line":329},[3186],{"type":59,"tag":280,"props":3187,"children":3188},{},[3189],{"type":65,"value":3190},"# Object landing (decelerates)\n",{"type":59,"tag":280,"props":3192,"children":3193},{"class":282,"line":337},[3194],{"type":59,"tag":280,"props":3195,"children":3196},{},[3197],{"type":65,"value":3198},"y = interpolate(start=0, end=400, t=progress, easing='ease_out')\n",{"type":59,"tag":280,"props":3200,"children":3201},{"class":282,"line":346},[3202],{"type":59,"tag":280,"props":3203,"children":3204},{"emptyLinePlaceholder":296},[3205],{"type":65,"value":299},{"type":59,"tag":280,"props":3207,"children":3208},{"class":282,"line":355},[3209],{"type":59,"tag":280,"props":3210,"children":3211},{},[3212],{"type":65,"value":3213},"# Bouncing\n",{"type":59,"tag":280,"props":3215,"children":3216},{"class":282,"line":363},[3217],{"type":59,"tag":280,"props":3218,"children":3219},{},[3220],{"type":65,"value":3221},"y = interpolate(start=0, end=400, t=progress, easing='bounce_out')\n",{"type":59,"tag":280,"props":3223,"children":3224},{"class":282,"line":372},[3225],{"type":59,"tag":280,"props":3226,"children":3227},{"emptyLinePlaceholder":296},[3228],{"type":65,"value":299},{"type":59,"tag":280,"props":3230,"children":3231},{"class":282,"line":853},[3232],{"type":59,"tag":280,"props":3233,"children":3234},{},[3235],{"type":65,"value":3236},"# Overshoot (elastic)\n",{"type":59,"tag":280,"props":3238,"children":3239},{"class":282,"line":862},[3240],{"type":59,"tag":280,"props":3241,"children":3242},{},[3243],{"type":65,"value":3244},"scale = interpolate(start=0.5, end=1.0, t=progress, easing='elastic_out')\n",{"type":59,"tag":68,"props":3246,"children":3247},{},[3248,3250,3256,3258,3264,3265,3271,3272,3278,3279,3285,3286,3292,3293,3299,3301,3307],{"type":65,"value":3249},"Available easings: ",{"type":59,"tag":276,"props":3251,"children":3253},{"className":3252},[],[3254],{"type":65,"value":3255},"linear",{"type":65,"value":3257},", ",{"type":59,"tag":276,"props":3259,"children":3261},{"className":3260},[],[3262],{"type":65,"value":3263},"ease_in",{"type":65,"value":3257},{"type":59,"tag":276,"props":3266,"children":3268},{"className":3267},[],[3269],{"type":65,"value":3270},"ease_out",{"type":65,"value":3257},{"type":59,"tag":276,"props":3273,"children":3275},{"className":3274},[],[3276],{"type":65,"value":3277},"ease_in_out",{"type":65,"value":3257},{"type":59,"tag":276,"props":3280,"children":3282},{"className":3281},[],[3283],{"type":65,"value":3284},"bounce_out",{"type":65,"value":3257},{"type":59,"tag":276,"props":3287,"children":3289},{"className":3288},[],[3290],{"type":65,"value":3291},"elastic_out",{"type":65,"value":3257},{"type":59,"tag":276,"props":3294,"children":3296},{"className":3295},[],[3297],{"type":65,"value":3298},"back_out",{"type":65,"value":3300}," (overshoot), and more in ",{"type":59,"tag":276,"props":3302,"children":3304},{"className":3303},[],[3305],{"type":65,"value":3306},"core\u002Feasing.py",{"type":65,"value":3308},".",{"type":59,"tag":579,"props":3310,"children":3312},{"id":3311},"frame-composition",[3313],{"type":65,"value":3314},"Frame Composition",{"type":59,"tag":68,"props":3316,"children":3317},{},[3318],{"type":65,"value":3319},"Basic drawing utilities if you need them:",{"type":59,"tag":268,"props":3321,"children":3323},{"className":270,"code":3322,"language":272,"meta":273,"style":273},"from core.frame_composer import (\n    create_gradient_background,  # Gradient backgrounds\n    draw_emoji_enhanced,         # Emoji with optional shadow\n    draw_circle_with_shadow,     # Shapes with depth\n    draw_star                    # 5-pointed stars\n)\n\n# Gradient background\nframe = create_gradient_background(480, 480, top_color, bottom_color)\n\n# Emoji with shadow\ndraw_emoji_enhanced(frame, '🎉', position=(200, 200), size=80, shadow=True)\n",[3324],{"type":59,"tag":276,"props":3325,"children":3326},{"__ignoreMap":273},[3327,3335,3343,3351,3359,3367,3374,3381,3389,3397,3404,3412],{"type":59,"tag":280,"props":3328,"children":3329},{"class":282,"line":283},[3330],{"type":59,"tag":280,"props":3331,"children":3332},{},[3333],{"type":65,"value":3334},"from core.frame_composer import (\n",{"type":59,"tag":280,"props":3336,"children":3337},{"class":282,"line":292},[3338],{"type":59,"tag":280,"props":3339,"children":3340},{},[3341],{"type":65,"value":3342},"    create_gradient_background,  # Gradient backgrounds\n",{"type":59,"tag":280,"props":3344,"children":3345},{"class":282,"line":302},[3346],{"type":59,"tag":280,"props":3347,"children":3348},{},[3349],{"type":65,"value":3350},"    draw_emoji_enhanced,         # Emoji with optional shadow\n",{"type":59,"tag":280,"props":3352,"children":3353},{"class":282,"line":311},[3354],{"type":59,"tag":280,"props":3355,"children":3356},{},[3357],{"type":65,"value":3358},"    draw_circle_with_shadow,     # Shapes with depth\n",{"type":59,"tag":280,"props":3360,"children":3361},{"class":282,"line":320},[3362],{"type":59,"tag":280,"props":3363,"children":3364},{},[3365],{"type":65,"value":3366},"    draw_star                    # 5-pointed stars\n",{"type":59,"tag":280,"props":3368,"children":3369},{"class":282,"line":329},[3370],{"type":59,"tag":280,"props":3371,"children":3372},{},[3373],{"type":65,"value":670},{"type":59,"tag":280,"props":3375,"children":3376},{"class":282,"line":337},[3377],{"type":59,"tag":280,"props":3378,"children":3379},{"emptyLinePlaceholder":296},[3380],{"type":65,"value":299},{"type":59,"tag":280,"props":3382,"children":3383},{"class":282,"line":346},[3384],{"type":59,"tag":280,"props":3385,"children":3386},{},[3387],{"type":65,"value":3388},"# Gradient background\n",{"type":59,"tag":280,"props":3390,"children":3391},{"class":282,"line":355},[3392],{"type":59,"tag":280,"props":3393,"children":3394},{},[3395],{"type":65,"value":3396},"frame = create_gradient_background(480, 480, top_color, bottom_color)\n",{"type":59,"tag":280,"props":3398,"children":3399},{"class":282,"line":363},[3400],{"type":59,"tag":280,"props":3401,"children":3402},{"emptyLinePlaceholder":296},[3403],{"type":65,"value":299},{"type":59,"tag":280,"props":3405,"children":3406},{"class":282,"line":372},[3407],{"type":59,"tag":280,"props":3408,"children":3409},{},[3410],{"type":65,"value":3411},"# Emoji with shadow\n",{"type":59,"tag":280,"props":3413,"children":3414},{"class":282,"line":853},[3415],{"type":59,"tag":280,"props":3416,"children":3417},{},[3418],{"type":65,"value":3419},"draw_emoji_enhanced(frame, '🎉', position=(200, 200), size=80, shadow=True)\n",{"type":59,"tag":80,"props":3421,"children":3423},{"id":3422},"optimization-strategies",[3424],{"type":65,"value":3425},"Optimization Strategies",{"type":59,"tag":68,"props":3427,"children":3428},{},[3429],{"type":65,"value":3430},"When your GIF is too large:",{"type":59,"tag":68,"props":3432,"children":3433},{},[3434],{"type":59,"tag":74,"props":3435,"children":3436},{},[3437],{"type":65,"value":3438},"For Message GIFs (>2MB):",{"type":59,"tag":215,"props":3440,"children":3441},{},[3442,3447,3452,3457],{"type":59,"tag":104,"props":3443,"children":3444},{},[3445],{"type":65,"value":3446},"Reduce frames (lower FPS or shorter duration)",{"type":59,"tag":104,"props":3448,"children":3449},{},[3450],{"type":65,"value":3451},"Reduce colors (128 → 64 colors)",{"type":59,"tag":104,"props":3453,"children":3454},{},[3455],{"type":65,"value":3456},"Reduce dimensions (480x480 → 320x320)",{"type":59,"tag":104,"props":3458,"children":3459},{},[3460],{"type":65,"value":3461},"Enable duplicate frame removal",{"type":59,"tag":68,"props":3463,"children":3464},{},[3465],{"type":59,"tag":74,"props":3466,"children":3467},{},[3468],{"type":65,"value":3469},"For Emoji GIFs (>64KB) - be aggressive:",{"type":59,"tag":215,"props":3471,"children":3472},{},[3473,3478,3483,3488,3493],{"type":59,"tag":104,"props":3474,"children":3475},{},[3476],{"type":65,"value":3477},"Limit to 10-12 frames total",{"type":59,"tag":104,"props":3479,"children":3480},{},[3481],{"type":65,"value":3482},"Use 32-40 colors maximum",{"type":59,"tag":104,"props":3484,"children":3485},{},[3486],{"type":65,"value":3487},"Avoid gradients (solid colors compress better)",{"type":59,"tag":104,"props":3489,"children":3490},{},[3491],{"type":65,"value":3492},"Simplify design (fewer elements)",{"type":59,"tag":104,"props":3494,"children":3495},{},[3496,3498,3504],{"type":65,"value":3497},"Use ",{"type":59,"tag":276,"props":3499,"children":3501},{"className":3500},[],[3502],{"type":65,"value":3503},"optimize_for_emoji=True",{"type":65,"value":3505}," in save method",{"type":59,"tag":80,"props":3507,"children":3509},{"id":3508},"example-composition-patterns",[3510],{"type":65,"value":3511},"Example Composition Patterns",{"type":59,"tag":579,"props":3513,"children":3515},{"id":3514},"simple-reaction-pulsing",[3516],{"type":65,"value":3517},"Simple Reaction (Pulsing)",{"type":59,"tag":268,"props":3519,"children":3521},{"className":270,"code":3520,"language":272,"meta":273,"style":273},"builder = GIFBuilder(128, 128, 10)\n\nfor i in range(12):\n    frame = Image.new('RGB', (128, 128), (240, 248, 255))\n\n    # Pulsing scale\n    scale = 1.0 + math.sin(i * 0.5) * 0.15\n    size = int(60 * scale)\n\n    draw_emoji_enhanced(frame, '😱', position=(64-size\u002F\u002F2, 64-size\u002F\u002F2),\n                       size=size, shadow=False)\n    builder.add_frame(frame)\n\nbuilder.save('reaction.gif', num_colors=40, optimize_for_emoji=True)\n\n# Validate\nfrom core.validators import check_slack_size\ncheck_slack_size('reaction.gif', is_emoji=True)\n",[3522],{"type":59,"tag":276,"props":3523,"children":3524},{"__ignoreMap":273},[3525,3533,3540,3548,3556,3563,3571,3579,3587,3594,3602,3610,3617,3624,3632,3639,3647,3654],{"type":59,"tag":280,"props":3526,"children":3527},{"class":282,"line":283},[3528],{"type":59,"tag":280,"props":3529,"children":3530},{},[3531],{"type":65,"value":3532},"builder = GIFBuilder(128, 128, 10)\n",{"type":59,"tag":280,"props":3534,"children":3535},{"class":282,"line":292},[3536],{"type":59,"tag":280,"props":3537,"children":3538},{"emptyLinePlaceholder":296},[3539],{"type":65,"value":299},{"type":59,"tag":280,"props":3541,"children":3542},{"class":282,"line":302},[3543],{"type":59,"tag":280,"props":3544,"children":3545},{},[3546],{"type":65,"value":3547},"for i in range(12):\n",{"type":59,"tag":280,"props":3549,"children":3550},{"class":282,"line":311},[3551],{"type":59,"tag":280,"props":3552,"children":3553},{},[3554],{"type":65,"value":3555},"    frame = Image.new('RGB', (128, 128), (240, 248, 255))\n",{"type":59,"tag":280,"props":3557,"children":3558},{"class":282,"line":320},[3559],{"type":59,"tag":280,"props":3560,"children":3561},{"emptyLinePlaceholder":296},[3562],{"type":65,"value":299},{"type":59,"tag":280,"props":3564,"children":3565},{"class":282,"line":329},[3566],{"type":59,"tag":280,"props":3567,"children":3568},{},[3569],{"type":65,"value":3570},"    # Pulsing scale\n",{"type":59,"tag":280,"props":3572,"children":3573},{"class":282,"line":337},[3574],{"type":59,"tag":280,"props":3575,"children":3576},{},[3577],{"type":65,"value":3578},"    scale = 1.0 + math.sin(i * 0.5) * 0.15\n",{"type":59,"tag":280,"props":3580,"children":3581},{"class":282,"line":346},[3582],{"type":59,"tag":280,"props":3583,"children":3584},{},[3585],{"type":65,"value":3586},"    size = int(60 * scale)\n",{"type":59,"tag":280,"props":3588,"children":3589},{"class":282,"line":355},[3590],{"type":59,"tag":280,"props":3591,"children":3592},{"emptyLinePlaceholder":296},[3593],{"type":65,"value":299},{"type":59,"tag":280,"props":3595,"children":3596},{"class":282,"line":363},[3597],{"type":59,"tag":280,"props":3598,"children":3599},{},[3600],{"type":65,"value":3601},"    draw_emoji_enhanced(frame, '😱', position=(64-size\u002F\u002F2, 64-size\u002F\u002F2),\n",{"type":59,"tag":280,"props":3603,"children":3604},{"class":282,"line":372},[3605],{"type":59,"tag":280,"props":3606,"children":3607},{},[3608],{"type":65,"value":3609},"                       size=size, shadow=False)\n",{"type":59,"tag":280,"props":3611,"children":3612},{"class":282,"line":853},[3613],{"type":59,"tag":280,"props":3614,"children":3615},{},[3616],{"type":65,"value":2619},{"type":59,"tag":280,"props":3618,"children":3619},{"class":282,"line":862},[3620],{"type":59,"tag":280,"props":3621,"children":3622},{"emptyLinePlaceholder":296},[3623],{"type":65,"value":299},{"type":59,"tag":280,"props":3625,"children":3626},{"class":282,"line":870},[3627],{"type":59,"tag":280,"props":3628,"children":3629},{},[3630],{"type":65,"value":3631},"builder.save('reaction.gif', num_colors=40, optimize_for_emoji=True)\n",{"type":59,"tag":280,"props":3633,"children":3634},{"class":282,"line":879},[3635],{"type":59,"tag":280,"props":3636,"children":3637},{"emptyLinePlaceholder":296},[3638],{"type":65,"value":299},{"type":59,"tag":280,"props":3640,"children":3641},{"class":282,"line":1371},[3642],{"type":59,"tag":280,"props":3643,"children":3644},{},[3645],{"type":65,"value":3646},"# Validate\n",{"type":59,"tag":280,"props":3648,"children":3649},{"class":282,"line":1638},[3650],{"type":59,"tag":280,"props":3651,"children":3652},{},[3653],{"type":65,"value":403},{"type":59,"tag":280,"props":3655,"children":3656},{"class":282,"line":1647},[3657],{"type":59,"tag":280,"props":3658,"children":3659},{},[3660],{"type":65,"value":3661},"check_slack_size('reaction.gif', is_emoji=True)\n",{"type":59,"tag":579,"props":3663,"children":3665},{"id":3664},"action-with-impact-bounce-flash",[3666],{"type":65,"value":3667},"Action with Impact (Bounce + Flash)",{"type":59,"tag":268,"props":3669,"children":3671},{"className":270,"code":3670,"language":272,"meta":273,"style":273},"builder = GIFBuilder(480, 480, 20)\n\n# Phase 1: Object falls\nfor i in range(15):\n    frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))\n    t = i \u002F 14\n    y = interpolate(0, 350, t, 'ease_in')\n    draw_emoji_enhanced(frame, '⚽', position=(220, int(y)), size=80)\n    builder.add_frame(frame)\n\n# Phase 2: Impact + flash\nfor i in range(8):\n    frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))\n\n    # Flash on first frames\n    if i \u003C 3:\n        frame = create_impact_flash(frame, (240, 350), radius=120, intensity=0.6)\n\n    draw_emoji_enhanced(frame, '⚽', position=(220, 350), size=80)\n\n    # Text appears\n    if i > 2:\n        draw_text_with_outline(frame, \"GOAL!\", position=(240, 150),\n                              font_size=60, text_color=(255, 68, 68),\n                              outline_color=(0, 0, 0), outline_width=4, centered=True)\n\n    builder.add_frame(frame)\n\nbuilder.save('goal.gif', num_colors=128)\n",[3672],{"type":59,"tag":276,"props":3673,"children":3674},{"__ignoreMap":273},[3675,3683,3690,3698,3706,3714,3722,3730,3738,3745,3752,3760,3768,3775,3782,3790,3798,3806,3813,3821,3828,3836,3844,3852,3860,3868,3875,3882,3889],{"type":59,"tag":280,"props":3676,"children":3677},{"class":282,"line":283},[3678],{"type":59,"tag":280,"props":3679,"children":3680},{},[3681],{"type":65,"value":3682},"builder = GIFBuilder(480, 480, 20)\n",{"type":59,"tag":280,"props":3684,"children":3685},{"class":282,"line":292},[3686],{"type":59,"tag":280,"props":3687,"children":3688},{"emptyLinePlaceholder":296},[3689],{"type":65,"value":299},{"type":59,"tag":280,"props":3691,"children":3692},{"class":282,"line":302},[3693],{"type":59,"tag":280,"props":3694,"children":3695},{},[3696],{"type":65,"value":3697},"# Phase 1: Object falls\n",{"type":59,"tag":280,"props":3699,"children":3700},{"class":282,"line":311},[3701],{"type":59,"tag":280,"props":3702,"children":3703},{},[3704],{"type":65,"value":3705},"for i in range(15):\n",{"type":59,"tag":280,"props":3707,"children":3708},{"class":282,"line":320},[3709],{"type":59,"tag":280,"props":3710,"children":3711},{},[3712],{"type":65,"value":3713},"    frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))\n",{"type":59,"tag":280,"props":3715,"children":3716},{"class":282,"line":329},[3717],{"type":59,"tag":280,"props":3718,"children":3719},{},[3720],{"type":65,"value":3721},"    t = i \u002F 14\n",{"type":59,"tag":280,"props":3723,"children":3724},{"class":282,"line":337},[3725],{"type":59,"tag":280,"props":3726,"children":3727},{},[3728],{"type":65,"value":3729},"    y = interpolate(0, 350, t, 'ease_in')\n",{"type":59,"tag":280,"props":3731,"children":3732},{"class":282,"line":346},[3733],{"type":59,"tag":280,"props":3734,"children":3735},{},[3736],{"type":65,"value":3737},"    draw_emoji_enhanced(frame, '⚽', position=(220, int(y)), size=80)\n",{"type":59,"tag":280,"props":3739,"children":3740},{"class":282,"line":355},[3741],{"type":59,"tag":280,"props":3742,"children":3743},{},[3744],{"type":65,"value":2619},{"type":59,"tag":280,"props":3746,"children":3747},{"class":282,"line":363},[3748],{"type":59,"tag":280,"props":3749,"children":3750},{"emptyLinePlaceholder":296},[3751],{"type":65,"value":299},{"type":59,"tag":280,"props":3753,"children":3754},{"class":282,"line":372},[3755],{"type":59,"tag":280,"props":3756,"children":3757},{},[3758],{"type":65,"value":3759},"# Phase 2: Impact + flash\n",{"type":59,"tag":280,"props":3761,"children":3762},{"class":282,"line":853},[3763],{"type":59,"tag":280,"props":3764,"children":3765},{},[3766],{"type":65,"value":3767},"for i in range(8):\n",{"type":59,"tag":280,"props":3769,"children":3770},{"class":282,"line":862},[3771],{"type":59,"tag":280,"props":3772,"children":3773},{},[3774],{"type":65,"value":3713},{"type":59,"tag":280,"props":3776,"children":3777},{"class":282,"line":870},[3778],{"type":59,"tag":280,"props":3779,"children":3780},{"emptyLinePlaceholder":296},[3781],{"type":65,"value":299},{"type":59,"tag":280,"props":3783,"children":3784},{"class":282,"line":879},[3785],{"type":59,"tag":280,"props":3786,"children":3787},{},[3788],{"type":65,"value":3789},"    # Flash on first frames\n",{"type":59,"tag":280,"props":3791,"children":3792},{"class":282,"line":1371},[3793],{"type":59,"tag":280,"props":3794,"children":3795},{},[3796],{"type":65,"value":3797},"    if i \u003C 3:\n",{"type":59,"tag":280,"props":3799,"children":3800},{"class":282,"line":1638},[3801],{"type":59,"tag":280,"props":3802,"children":3803},{},[3804],{"type":65,"value":3805},"        frame = create_impact_flash(frame, (240, 350), radius=120, intensity=0.6)\n",{"type":59,"tag":280,"props":3807,"children":3808},{"class":282,"line":1647},[3809],{"type":59,"tag":280,"props":3810,"children":3811},{"emptyLinePlaceholder":296},[3812],{"type":65,"value":299},{"type":59,"tag":280,"props":3814,"children":3815},{"class":282,"line":2048},[3816],{"type":59,"tag":280,"props":3817,"children":3818},{},[3819],{"type":65,"value":3820},"    draw_emoji_enhanced(frame, '⚽', position=(220, 350), size=80)\n",{"type":59,"tag":280,"props":3822,"children":3823},{"class":282,"line":2057},[3824],{"type":59,"tag":280,"props":3825,"children":3826},{"emptyLinePlaceholder":296},[3827],{"type":65,"value":299},{"type":59,"tag":280,"props":3829,"children":3830},{"class":282,"line":2066},[3831],{"type":59,"tag":280,"props":3832,"children":3833},{},[3834],{"type":65,"value":3835},"    # Text appears\n",{"type":59,"tag":280,"props":3837,"children":3838},{"class":282,"line":2074},[3839],{"type":59,"tag":280,"props":3840,"children":3841},{},[3842],{"type":65,"value":3843},"    if i > 2:\n",{"type":59,"tag":280,"props":3845,"children":3846},{"class":282,"line":2082},[3847],{"type":59,"tag":280,"props":3848,"children":3849},{},[3850],{"type":65,"value":3851},"        draw_text_with_outline(frame, \"GOAL!\", position=(240, 150),\n",{"type":59,"tag":280,"props":3853,"children":3854},{"class":282,"line":2091},[3855],{"type":59,"tag":280,"props":3856,"children":3857},{},[3858],{"type":65,"value":3859},"                              font_size=60, text_color=(255, 68, 68),\n",{"type":59,"tag":280,"props":3861,"children":3862},{"class":282,"line":2099},[3863],{"type":59,"tag":280,"props":3864,"children":3865},{},[3866],{"type":65,"value":3867},"                              outline_color=(0, 0, 0), outline_width=4, centered=True)\n",{"type":59,"tag":280,"props":3869,"children":3870},{"class":282,"line":2107},[3871],{"type":59,"tag":280,"props":3872,"children":3873},{"emptyLinePlaceholder":296},[3874],{"type":65,"value":299},{"type":59,"tag":280,"props":3876,"children":3877},{"class":282,"line":2116},[3878],{"type":59,"tag":280,"props":3879,"children":3880},{},[3881],{"type":65,"value":2619},{"type":59,"tag":280,"props":3883,"children":3884},{"class":282,"line":2125},[3885],{"type":59,"tag":280,"props":3886,"children":3887},{"emptyLinePlaceholder":296},[3888],{"type":65,"value":299},{"type":59,"tag":280,"props":3890,"children":3891},{"class":282,"line":2134},[3892],{"type":59,"tag":280,"props":3893,"children":3894},{},[3895],{"type":65,"value":3896},"builder.save('goal.gif', num_colors=128)\n",{"type":59,"tag":579,"props":3898,"children":3900},{"id":3899},"combining-primitives-move-shake",[3901],{"type":65,"value":3902},"Combining Primitives (Move + Shake)",{"type":59,"tag":268,"props":3904,"children":3906},{"className":270,"code":3905,"language":272,"meta":273,"style":273},"from templates.shake import create_shake_animation\n\n# Create shake animation\nshake_frames = create_shake_animation(\n    object_type='emoji',\n    object_data={'emoji': '😰', 'size': 70},\n    num_frames=20,\n    shake_intensity=12\n)\n\n# Create moving element that triggers the shake\nbuilder = GIFBuilder(480, 480, 20)\nfor i in range(40):\n    t = i \u002F 39\n\n    if i \u003C 20:\n        # Before trigger - use blank frame with moving object\n        frame = create_blank_frame(480, 480, (255, 255, 255))\n        x = interpolate(50, 300, t * 2, 'linear')\n        draw_emoji_enhanced(frame, '🚗', position=(int(x), 300), size=60)\n        draw_emoji_enhanced(frame, '😰', position=(350, 200), size=70)\n    else:\n        # After trigger - use shake frame\n        frame = shake_frames[i - 20]\n        # Add the car in final position\n        draw_emoji_enhanced(frame, '🚗', position=(300, 300), size=60)\n\n    builder.add_frame(frame)\n\nbuilder.save('scare.gif')\n",[3907],{"type":59,"tag":276,"props":3908,"children":3909},{"__ignoreMap":273},[3910,3917,3924,3932,3940,3947,3955,3962,3970,3977,3984,3992,3999,4007,4015,4022,4030,4038,4046,4054,4062,4070,4077,4085,4093,4101,4109,4116,4123,4130],{"type":59,"tag":280,"props":3911,"children":3912},{"class":282,"line":283},[3913],{"type":59,"tag":280,"props":3914,"children":3915},{},[3916],{"type":65,"value":599},{"type":59,"tag":280,"props":3918,"children":3919},{"class":282,"line":292},[3920],{"type":59,"tag":280,"props":3921,"children":3922},{"emptyLinePlaceholder":296},[3923],{"type":65,"value":299},{"type":59,"tag":280,"props":3925,"children":3926},{"class":282,"line":302},[3927],{"type":59,"tag":280,"props":3928,"children":3929},{},[3930],{"type":65,"value":3931},"# Create shake animation\n",{"type":59,"tag":280,"props":3933,"children":3934},{"class":282,"line":311},[3935],{"type":59,"tag":280,"props":3936,"children":3937},{},[3938],{"type":65,"value":3939},"shake_frames = create_shake_animation(\n",{"type":59,"tag":280,"props":3941,"children":3942},{"class":282,"line":320},[3943],{"type":59,"tag":280,"props":3944,"children":3945},{},[3946],{"type":65,"value":630},{"type":59,"tag":280,"props":3948,"children":3949},{"class":282,"line":329},[3950],{"type":59,"tag":280,"props":3951,"children":3952},{},[3953],{"type":65,"value":3954},"    object_data={'emoji': '😰', 'size': 70},\n",{"type":59,"tag":280,"props":3956,"children":3957},{"class":282,"line":337},[3958],{"type":59,"tag":280,"props":3959,"children":3960},{},[3961],{"type":65,"value":646},{"type":59,"tag":280,"props":3963,"children":3964},{"class":282,"line":346},[3965],{"type":59,"tag":280,"props":3966,"children":3967},{},[3968],{"type":65,"value":3969},"    shake_intensity=12\n",{"type":59,"tag":280,"props":3971,"children":3972},{"class":282,"line":355},[3973],{"type":59,"tag":280,"props":3974,"children":3975},{},[3976],{"type":65,"value":670},{"type":59,"tag":280,"props":3978,"children":3979},{"class":282,"line":363},[3980],{"type":59,"tag":280,"props":3981,"children":3982},{"emptyLinePlaceholder":296},[3983],{"type":65,"value":299},{"type":59,"tag":280,"props":3985,"children":3986},{"class":282,"line":372},[3987],{"type":59,"tag":280,"props":3988,"children":3989},{},[3990],{"type":65,"value":3991},"# Create moving element that triggers the shake\n",{"type":59,"tag":280,"props":3993,"children":3994},{"class":282,"line":853},[3995],{"type":59,"tag":280,"props":3996,"children":3997},{},[3998],{"type":65,"value":3682},{"type":59,"tag":280,"props":4000,"children":4001},{"class":282,"line":862},[4002],{"type":59,"tag":280,"props":4003,"children":4004},{},[4005],{"type":65,"value":4006},"for i in range(40):\n",{"type":59,"tag":280,"props":4008,"children":4009},{"class":282,"line":870},[4010],{"type":59,"tag":280,"props":4011,"children":4012},{},[4013],{"type":65,"value":4014},"    t = i \u002F 39\n",{"type":59,"tag":280,"props":4016,"children":4017},{"class":282,"line":879},[4018],{"type":59,"tag":280,"props":4019,"children":4020},{"emptyLinePlaceholder":296},[4021],{"type":65,"value":299},{"type":59,"tag":280,"props":4023,"children":4024},{"class":282,"line":1371},[4025],{"type":59,"tag":280,"props":4026,"children":4027},{},[4028],{"type":65,"value":4029},"    if i \u003C 20:\n",{"type":59,"tag":280,"props":4031,"children":4032},{"class":282,"line":1638},[4033],{"type":59,"tag":280,"props":4034,"children":4035},{},[4036],{"type":65,"value":4037},"        # Before trigger - use blank frame with moving object\n",{"type":59,"tag":280,"props":4039,"children":4040},{"class":282,"line":1647},[4041],{"type":59,"tag":280,"props":4042,"children":4043},{},[4044],{"type":65,"value":4045},"        frame = create_blank_frame(480, 480, (255, 255, 255))\n",{"type":59,"tag":280,"props":4047,"children":4048},{"class":282,"line":2048},[4049],{"type":59,"tag":280,"props":4050,"children":4051},{},[4052],{"type":65,"value":4053},"        x = interpolate(50, 300, t * 2, 'linear')\n",{"type":59,"tag":280,"props":4055,"children":4056},{"class":282,"line":2057},[4057],{"type":59,"tag":280,"props":4058,"children":4059},{},[4060],{"type":65,"value":4061},"        draw_emoji_enhanced(frame, '🚗', position=(int(x), 300), size=60)\n",{"type":59,"tag":280,"props":4063,"children":4064},{"class":282,"line":2066},[4065],{"type":59,"tag":280,"props":4066,"children":4067},{},[4068],{"type":65,"value":4069},"        draw_emoji_enhanced(frame, '😰', position=(350, 200), size=70)\n",{"type":59,"tag":280,"props":4071,"children":4072},{"class":282,"line":2074},[4073],{"type":59,"tag":280,"props":4074,"children":4075},{},[4076],{"type":65,"value":2588},{"type":59,"tag":280,"props":4078,"children":4079},{"class":282,"line":2082},[4080],{"type":59,"tag":280,"props":4081,"children":4082},{},[4083],{"type":65,"value":4084},"        # After trigger - use shake frame\n",{"type":59,"tag":280,"props":4086,"children":4087},{"class":282,"line":2091},[4088],{"type":59,"tag":280,"props":4089,"children":4090},{},[4091],{"type":65,"value":4092},"        frame = shake_frames[i - 20]\n",{"type":59,"tag":280,"props":4094,"children":4095},{"class":282,"line":2099},[4096],{"type":59,"tag":280,"props":4097,"children":4098},{},[4099],{"type":65,"value":4100},"        # Add the car in final position\n",{"type":59,"tag":280,"props":4102,"children":4103},{"class":282,"line":2107},[4104],{"type":59,"tag":280,"props":4105,"children":4106},{},[4107],{"type":65,"value":4108},"        draw_emoji_enhanced(frame, '🚗', position=(300, 300), size=60)\n",{"type":59,"tag":280,"props":4110,"children":4111},{"class":282,"line":2116},[4112],{"type":59,"tag":280,"props":4113,"children":4114},{"emptyLinePlaceholder":296},[4115],{"type":65,"value":299},{"type":59,"tag":280,"props":4117,"children":4118},{"class":282,"line":2125},[4119],{"type":59,"tag":280,"props":4120,"children":4121},{},[4122],{"type":65,"value":2619},{"type":59,"tag":280,"props":4124,"children":4125},{"class":282,"line":2134},[4126],{"type":59,"tag":280,"props":4127,"children":4128},{"emptyLinePlaceholder":296},[4129],{"type":65,"value":299},{"type":59,"tag":280,"props":4131,"children":4132},{"class":282,"line":2143},[4133],{"type":59,"tag":280,"props":4134,"children":4135},{},[4136],{"type":65,"value":4137},"builder.save('scare.gif')\n",{"type":59,"tag":80,"props":4139,"children":4141},{"id":4140},"philosophy",[4142],{"type":65,"value":4143},"Philosophy",{"type":59,"tag":68,"props":4145,"children":4146},{},[4147],{"type":65,"value":4148},"This toolkit provides building blocks, not rigid recipes. To work with a GIF request:",{"type":59,"tag":215,"props":4150,"children":4151},{},[4152,4162,4172,4182,4192],{"type":59,"tag":104,"props":4153,"children":4154},{},[4155,4160],{"type":59,"tag":74,"props":4156,"children":4157},{},[4158],{"type":65,"value":4159},"Understand the creative vision",{"type":65,"value":4161}," - What should happen? What's the mood?",{"type":59,"tag":104,"props":4163,"children":4164},{},[4165,4170],{"type":59,"tag":74,"props":4166,"children":4167},{},[4168],{"type":65,"value":4169},"Design the animation",{"type":65,"value":4171}," - Break it into phases (anticipation, action, reaction)",{"type":59,"tag":104,"props":4173,"children":4174},{},[4175,4180],{"type":59,"tag":74,"props":4176,"children":4177},{},[4178],{"type":65,"value":4179},"Apply primitives as needed",{"type":65,"value":4181}," - Shake, bounce, move, effects - mix freely",{"type":59,"tag":104,"props":4183,"children":4184},{},[4185,4190],{"type":59,"tag":74,"props":4186,"children":4187},{},[4188],{"type":65,"value":4189},"Validate constraints",{"type":65,"value":4191}," - Check file size, especially for emoji GIFs",{"type":59,"tag":104,"props":4193,"children":4194},{},[4195,4200],{"type":59,"tag":74,"props":4196,"children":4197},{},[4198],{"type":65,"value":4199},"Iterate if needed",{"type":65,"value":4201}," - Reduce frames\u002Fcolors if over size limits",{"type":59,"tag":68,"props":4203,"children":4204},{},[4205],{"type":59,"tag":74,"props":4206,"children":4207},{},[4208],{"type":65,"value":4209},"The goal is creative freedom within Slack's technical constraints.",{"type":59,"tag":80,"props":4211,"children":4213},{"id":4212},"dependencies",[4214],{"type":65,"value":4215},"Dependencies",{"type":59,"tag":68,"props":4217,"children":4218},{},[4219],{"type":65,"value":4220},"To use this toolkit, install these dependencies only if they aren't already present:",{"type":59,"tag":268,"props":4222,"children":4226},{"className":4223,"code":4224,"language":4225,"meta":273,"style":273},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","pip install pillow imageio numpy\n","bash",[4227],{"type":59,"tag":276,"props":4228,"children":4229},{"__ignoreMap":273},[4230],{"type":59,"tag":280,"props":4231,"children":4232},{"class":282,"line":283},[4233,4239,4245,4250,4255],{"type":59,"tag":280,"props":4234,"children":4236},{"style":4235},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[4237],{"type":65,"value":4238},"pip",{"type":59,"tag":280,"props":4240,"children":4242},{"style":4241},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[4243],{"type":65,"value":4244}," install",{"type":59,"tag":280,"props":4246,"children":4247},{"style":4241},[4248],{"type":65,"value":4249}," pillow",{"type":59,"tag":280,"props":4251,"children":4252},{"style":4241},[4253],{"type":65,"value":4254}," imageio",{"type":59,"tag":280,"props":4256,"children":4257},{"style":4241},[4258],{"type":65,"value":4259}," numpy\n",{"type":59,"tag":4261,"props":4262,"children":4263},"style",{},[4264],{"type":65,"value":4265},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4267,"total":4353},[4268,4284,4300,4309,4319,4331,4340],{"slug":4269,"name":4270,"fn":4271,"description":4272,"org":4273,"tags":4274,"stars":26,"repoUrl":27,"updatedAt":4283},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4275,4277,4278,4280],{"name":4276,"slug":35,"type":16},"Automation",{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},"MCP",{"name":4281,"slug":4282,"type":16},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":4285,"name":4286,"fn":4287,"description":4288,"org":4289,"tags":4290,"stars":26,"repoUrl":27,"updatedAt":4299},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4291,4292,4295,4296],{"name":4276,"slug":35,"type":16},{"name":4293,"slug":4294,"type":16},"Communications","communications",{"name":4279,"slug":42,"type":16},{"name":4297,"slug":4298,"type":16},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":4301,"name":4301,"fn":4302,"description":4303,"org":4304,"tags":4305,"stars":26,"repoUrl":27,"updatedAt":4308},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4306,4307],{"name":4276,"slug":35,"type":16},{"name":4279,"slug":42,"type":16},"2026-07-12T08:09:55.453088",{"slug":4310,"name":4310,"fn":4311,"description":4312,"org":4313,"tags":4314,"stars":26,"repoUrl":27,"updatedAt":4318},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4315,4316,4317],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},"2026-07-15T05:45:16.470309",{"slug":4320,"name":4320,"fn":4321,"description":4322,"org":4323,"tags":4324,"stars":26,"repoUrl":27,"updatedAt":4330},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4325,4326,4327],{"name":4276,"slug":35,"type":16},{"name":4279,"slug":42,"type":16},{"name":4328,"slug":4329,"type":16},"Security","security","2026-07-15T05:56:20.013366",{"slug":4332,"name":4332,"fn":4333,"description":4334,"org":4335,"tags":4336,"stars":26,"repoUrl":27,"updatedAt":4339},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4337,4338],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},"2026-07-15T05:54:50.762889",{"slug":4341,"name":4341,"fn":4342,"description":4343,"org":4344,"tags":4345,"stars":26,"repoUrl":27,"updatedAt":4352},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4346,4347,4348,4351],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4349,"slug":4350,"type":16},"CRM","crm",{"name":4279,"slug":42,"type":16},"2026-07-15T05:48:43.429136",860,{"items":4355,"total":4459},[4356,4363,4370,4375,4381,4387,4392,4399,4413,4426,4439,4449],{"slug":4269,"name":4270,"fn":4271,"description":4272,"org":4357,"tags":4358,"stars":26,"repoUrl":27,"updatedAt":4283},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4359,4360,4361,4362],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},{"name":4281,"slug":4282,"type":16},{"slug":4285,"name":4286,"fn":4287,"description":4288,"org":4364,"tags":4365,"stars":26,"repoUrl":27,"updatedAt":4299},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4366,4367,4368,4369],{"name":4276,"slug":35,"type":16},{"name":4293,"slug":4294,"type":16},{"name":4279,"slug":42,"type":16},{"name":4297,"slug":4298,"type":16},{"slug":4301,"name":4301,"fn":4302,"description":4303,"org":4371,"tags":4372,"stars":26,"repoUrl":27,"updatedAt":4308},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4373,4374],{"name":4276,"slug":35,"type":16},{"name":4279,"slug":42,"type":16},{"slug":4310,"name":4310,"fn":4311,"description":4312,"org":4376,"tags":4377,"stars":26,"repoUrl":27,"updatedAt":4318},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4378,4379,4380],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},{"slug":4320,"name":4320,"fn":4321,"description":4322,"org":4382,"tags":4383,"stars":26,"repoUrl":27,"updatedAt":4330},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4384,4385,4386],{"name":4276,"slug":35,"type":16},{"name":4279,"slug":42,"type":16},{"name":4328,"slug":4329,"type":16},{"slug":4332,"name":4332,"fn":4333,"description":4334,"org":4388,"tags":4389,"stars":26,"repoUrl":27,"updatedAt":4339},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4390,4391],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"slug":4341,"name":4341,"fn":4342,"description":4343,"org":4393,"tags":4394,"stars":26,"repoUrl":27,"updatedAt":4352},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4395,4396,4397,4398],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4349,"slug":4350,"type":16},{"name":4279,"slug":42,"type":16},{"slug":4400,"name":4400,"fn":4401,"description":4402,"org":4403,"tags":4404,"stars":26,"repoUrl":27,"updatedAt":4412},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4405,4406,4409],{"name":4276,"slug":35,"type":16},{"name":4407,"slug":4408,"type":16},"Documents","documents",{"name":4410,"slug":4411,"type":16},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":4414,"name":4414,"fn":4415,"description":4416,"org":4417,"tags":4418,"stars":26,"repoUrl":27,"updatedAt":4425},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4419,4420,4421,4422],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},{"name":4423,"slug":4424,"type":16},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":4427,"name":4427,"fn":4428,"description":4429,"org":4430,"tags":4431,"stars":26,"repoUrl":27,"updatedAt":4438},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4432,4433,4434,4435],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4349,"slug":4350,"type":16},{"name":4436,"slug":4437,"type":16},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":4440,"name":4440,"fn":4441,"description":4442,"org":4443,"tags":4444,"stars":26,"repoUrl":27,"updatedAt":4448},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4445,4446,4447],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},"2026-07-15T05:47:51.742515",{"slug":4450,"name":4450,"fn":4451,"description":4452,"org":4453,"tags":4454,"stars":26,"repoUrl":27,"updatedAt":4458},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4455,4456,4457],{"name":4276,"slug":35,"type":16},{"name":9,"slug":8,"type":16},{"name":4279,"slug":42,"type":16},"2026-07-15T05:45:05.303254",863]