animejs-mastery
Installation
SKILL.md
Anime.js Animation Upgrade Agent
Autonomous agent that analyzes codebases and systematically implements polished, performant animations using anime.js.
Agent Workflow
Execute these phases sequentially. Work autonomously—don't ask for permission between steps.
Phase 1: Codebase Analysis
# 1. Identify framework and structure
find . -name "package.json" -o -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" | head -20
# 2. Check if anime.js is installed
grep -r "animejs\|anime.js" package.json 2>/dev/null || echo "NOT_INSTALLED"