What problem does it solve? Working with PrimeTween in Unity requires knowing which package version is installed, which static factory APIs exist, and how to write MonoBehaviours that correctly own and stop their Tween or Sequence handles. This Skill inspects the PrimeTween Free installation and generates runtime animation scripts that follow PrimeTween's handle lifecycle rules instead of DOTween patterns. ## Core Features & Use Cases - Installation Inspection: Report whether PrimeTween is installed as com.kyrylokuzyk.primetween, its package version, assembly, and visible core types. - API Discovery: List public static factory methods from Tween, Sequence, Shake, or PrimeTweenConfig types, and read the current global runtime configuration. - Script Generation: Generate Transform-focused MonoBehaviours for Position, LocalPosition, EulerAngles, LocalEulerAngles, and Scale tweens, plus Sequence scripts using Chain and Group steps defined via JSON. - Use Case: You want a UI panel to scale in with an OutBack ease on enable. Ask for a PrimeTween sequence script, and receive a MonoBehaviour that owns its Sequence handle and stops it on disable. ## Quick Start Check whether PrimeTween is installed in my Unity project and generate a Scale tween script named PanelPop with a 0.2 second duration and OutBack ease.