lottie-animations

lottie-animations is a skill for Claude Code from Gekkos-tech/agency-os. It costs 95 tokens per session (4,538 once invoked), scanned A, a copy of lottie-animations, MIT.

A guide for adding Lottie animations to websites and React applications. Lottie is a format and renderer for After Effects animations exported as JSON, including animated icons, loaders, and interface effects.

In plain words
What is it for?
Use it to implement animated icons, loading indicators, onboarding sequences, micro-interactions, and other web or React animations with controls such as play, pause, looping, and speed changes.
Why use it?
It helps developers use designer-created animations without converting them into GIFs or videos, while keeping them scalable and controllable in the application.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the motion-3d plugin — 6 skills shipped together

Good fit Use it to implement animated icons, loading indicators, onboarding sequences, micro-interactions, and other web or React animations with controls such as play, pause, looping, and speed changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gekkos-tech/agency-os/lottie-animations
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Gekkos-tech/agency-os --skill lottie-animations
Clone the repo
git clone --depth 1 https://github.com/Gekkos-tech/agency-os

Made for: Claude Code.

Or install motion-3d, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lottie-animations

README.md
[![agentmods](https://agentmods.dev/badge/skills/gekkos-tech/agency-os/lottie-animations/github.svg)](https://agentmods.dev/skills/gekkos-tech/agency-os/lottie-animations)
Your own site
<a href="https://agentmods.dev/skills/gekkos-tech/agency-os/lottie-animations"><img src="https://agentmods.dev/badge/skills/gekkos-tech/agency-os/lottie-animations/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lottie-animations

Your own site · 80×15
<a href="https://agentmods.dev/skills/gekkos-tech/agency-os/lottie-animations"><img src="https://agentmods.dev/badge/skills/gekkos-tech/agency-os/lottie-animations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,538 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.04538
Opus 5 $0.00048 $0.02269
Sonnet 5 $0.00019 $0.00908
Haiku 4.5 $0.00010 $0.00454

Measured 12d ago against content hash 13e64ab83e3f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

lottie-animations scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/generate_lottie_component.py, scripts/optimize_lottie.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to lottie-animations — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/motion-3d/skills/lottie-animations/SKILL.md · 693 lines

How it starts

The opening of the file, as written. The whole thing — 693 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Lottie Animations

Overview

Lottie is a library for rendering After Effects animations in real-time on web, iOS, Android, and React Native. Created by Airbnb, it allows designers to ship animations as easily as shipping static assets. Animations are exported from After Effects as JSON files using the Bodymovin plugin, then rendered natively with minimal performance overhead.

When to use Lottie:

  • Designer-created animations that need pixel-perfect fidelity
  • Complex animated icons and micro-interactions
  • Loading animations and progress indicators
  • Onboarding sequences and tutorial animations
  • Marketing animations and promotional content
  • Alternative to GIF/video with smaller file sizes and scalability

Key advantages:

  • Vector-based (scalable without quality loss)
  • Significantly smaller file sizes than GIF or video
  • Editable at runtime (colors, speed, segments)
  • Full designer control via After Effects
  • Cross-platform rendering consistency
  • Interactive controls (play, pause, seek, loop)

Core Concepts

Lottie Format Types

1. JSON Lottie (.json)

  • Original Lottie format
  • Exported from After Effects via Bodymovin plugin
  • Human-readable JSON structure
  • Larger file sizes (not compressed)
  • Widely supported across all platforms

2. dotLottie (.lottie)

  • Modern compressed format
  • ZIP archive containing JSON + assets
  • Supports multiple animations and themes in one file
  • Smaller file sizes (up to 90% reduction)
  • Recommended for production use

Library Options

lottie-web (original library):

import lottie from 'lottie-web';

lottie.loadAnimation({
  container: document.getElementById('lottie-container'),
  renderer: 'svg', // or 'canvas', 'html'
  loop: true,
  autoplay: true,
  path: 'animation.json' // or animationData: jsonData
});

@lottiefiles/dotlottie-web (modern, recommended):

import { DotLottie } from '@lottiefiles/dotlottie-web';

new DotLottie({
  canvas: document.getElementById('canvas'),
  src: 'animation.lottie',
  autoplay: true,
  loop: true
});

Read the full file on GitHub · 693 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 693 lines · 95 tokens per session scan A 13e64ab83e3f

Subscribe to this mod's changes

lottie-animations is a skill published in the GitHub repository Gekkos-tech/agency-os (5 stars, last pushed 2mo ago), licensed MIT. It adds 95 tokens to every session and 4,538 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to lottie-animations, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

remotion-render

Render videos from React/Remotion component code via inference.sh. Pass TSX code, get MP4. Supports all Remotion APIs: useCurrentFrame, useVideoConfig, spring, interpolate, AbsoluteFill, Sequence. Configurable resolution, FPS, duration, codec. Use for: programmatic video generation, animated graphics, motion design…

aiskillstore/marketplace · 123 tokens

snapdom

Fast, dependency-free DOM-to-image capture library for converting HTML elements into scalable SVG or raster image formats.

aiskillstore/marketplace · 53 tokens

remotion-markup

Best practices for writing Remotion React Markup.

guanyang/open-agent-hub · 14 tokens

render-ios-keyboard

Render a static iOS QWERTY keyboard as inline HTML+CSS sized for the 750-wide 9:16 stage. Includes the 3-suggestion bar, alpha keys, shift/backspace, 123/emoji/space/return row, and the bottom globe+mic strip. No animation logic — slide up/down is the molecule's job (CSS transform on the .keyboard root).

gooseworks-ai/goose-skills · 86 tokens

slide-deck

When you want to draft, update, convert, or export a slide deck for a React/Next.js slide system (${SLIDEDECKREPO:-$HOME/code/your-slide-deck-site}/src/app/slides/). Writes TypeScript Slide[] arrays using your primitives (Eyebrow, Heading, Accent, Body, BulletList, Divider, TwoCol, GradientText), 12 cycling brand…

coreyhaines31/makerskills · 259 tokens

elevenlabs

Convert documents and text to audio using ElevenLabs text-to-speech. Use this skill when the user wants to create a podcast, narrate a document, read aloud text, generate audio from a file, or convert text to speech.

sanjay3290/ai-skills · 51 tokens