What problem does it solve? Anime.js animations run on their own clock by default, which breaks deterministic frame rendering in HyperFrames. This Skill provides the adapter contract and patterns to make Anime.js animations seekable and render-safe inside HyperFrames compositions. ## Core Features & Use Cases - Seek-Driven Registration: Push animations and timelines onto window.__hfAnime so HyperFrames controls time via instance.seek(timeMs). - Timeline Patterns: Build multi-target Anime.js timelines with autoplay disabled and finite durations for deterministic playback. - Module and IIFE Support: Works with both the CDN IIFE build and ES module imports, as long as instances expose seek() and pause(). - Use Case: You are porting an Anime.js example into a HyperFrames composition and need it to render identically at any frame; follow the contract to disable autoplay, register the instance, and validate with npx hyperframes lint. ## Quick Start Convert my Anime.js animation into a seek-driven HyperFrames composition by disabling autoplay and registering it on window.__hfAnime.