creator-plugin-development
Installation
SKILL.md
Creator Plugin Development
Creator Plugins extend the LottieFiles Creator animation application. They have a two-part sandboxed architecture:
- Plugin Sandbox (
plugin/plugin.ts) — Runs in isolation with access to thecreatorglobal API. Can manipulate scenes, layers, shapes, keyframes. Cannot make network requests. - UI (
src/) — Standard React application rendered in an iframe. Can make network requests viafetch. Cannot access thecreatorAPI.
The two parts communicate exclusively via message passing.