wp-aos-animator

wp-aos-animator is a skill for Claude Code from yojahny55/claude-wp-builder. It costs 70 tokens per session (1,701 once invoked), scanned A, original, MIT.

A WordPress tool that adds Animate On Scroll (AOS), a library that reveals or moves elements as someone scrolls through a page. It checks the theme, installs the library when needed, loads it, starts it, and adds animations to templates.

In plain words
What is it for?
Use it to audit or add fade-ins and other scroll animations across WordPress PHP templates.
Why use it?
It removes the repeated setup work required to make scroll-based entrance effects work throughout a theme.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the claude-wp-builder plugin — 15 skills, 30 commands, 15 agents shipped together

Good fit Use it to audit or add fade-ins and other scroll animations across WordPress PHP templates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yojahny55/claude-wp-builder/wp-aos-animator
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 yojahny55/claude-wp-builder --skill wp-aos-animator
Clone the repo
git clone --depth 1 https://github.com/yojahny55/claude-wp-builder

Made for: Claude Code.

Or install claude-wp-builder, the plugin that ships this one along with the rest of its 15 skills, 30 commands, 15 agents.

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 wp-aos-animator

README.md
[![agentmods](https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-aos-animator/github.svg)](https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-aos-animator)
Your own site
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-aos-animator"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-aos-animator/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 wp-aos-animator

Your own site · 80×15
<a href="https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-aos-animator"><img src="https://agentmods.dev/badge/skills/yojahny55/claude-wp-builder/wp-aos-animator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,701 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00070 $0.01701
Opus 5 $0.00035 $0.00851
Sonnet 5 $0.00014 $0.00340
Haiku 4.5 $0.00007 $0.00170

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

Security

Grade A, and why

wp-aos-animator scanned grade A with 1 finding 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 8d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL "https://raw.githubusercontent.com/michalsnik/aos/v2.3.4/dist/aos.js" -o aos/aos.js
skills/wp-aos-animator/SKILL.md · 155 lines

How it starts

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

WP AOS Animator

Automates AOS (Animate On Scroll) implementation in WordPress themes. Covers the full pipeline: audit → install → enqueue → init → animate.

Phases

Run these in order. Each phase depends on the previous one succeeding.

Phase 1: Audit

Check if AOS is already present:

ls <theme>/vendors/aos/aos.js
ls <theme>/vendors/aos/aos.css

Check if enqueued in functions.php:

grep -n "aos" <theme>/functions.php

Check if AOS.init() exists in main JS:

grep -n "AOS.init" <theme>/assets/js/*.js

Report findings: what's present, what's missing.

Phase 2: Install (if missing)

If vendors/aos/ doesn't exist, download AOS:

cd <theme>/vendors/
mkdir -p aos
curl -sL "https://raw.githubusercontent.com/michalsnik/aos/v2.3.4/dist/aos.js" -o aos/aos.js
curl -sL "https://raw.githubusercontent.com/michalsnik/aos/v2.3.4/dist/aos.css" -o aos/aos.css

Phase 3: Enqueue (if missing)

In functions.php, inside the wp_enqueue_scripts action, add:

// AOS
wp_enqueue_style('aos-css', get_template_directory_uri() . '/vendors/aos/aos.css', array(), _RATIO_WEB_);
wp_enqueue_script('aos-js', get_template_directory_uri() . '/vendors/aos/aos.js', array('jquery'), _RATIO_WEB_, array('in_footer' => true, 'strategy' => 'defer'));

If AOS JS is already enqueued but CSS is missing, add just the CSS line right before the JS line. Put them together with a // AOS comment.

Phase 4: Initialize (if missing)

In the theme's main JS file, add inside $(document).ready(...):

AOS.init({
  once: true,
});

If there's no $(document).ready, wrap it:

$(document).ready(function () {
  AOS.init({
    once: true,
  });
});

Phase 5: Animate templates

Scan every .php template in the theme root and template-parts/ directory. For each file:

Never animate an element that also needs a stacking order or a slide. AOS's [data-aos^=fade] rule leaves an identity transform behind for the whole life of the page, and a transform does two things that outlive the animation:

Read the full file on GitHub · 155 lines

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. 8d ago Changed · +22 lines 8e91dd096def
  2. 11d ago First seen · 133 lines · 70 tokens per session scan A 19973a68b02c

Subscribe to this mod's changes

wp-aos-animator is a skill published in the GitHub repository yojahny55/claude-wp-builder (6 stars, last pushed today), licensed MIT. It adds 70 tokens to every session and 1,701 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens

design-with-claude

Use when design work needs a product designer's eye: auditing a codebase for design-system gaps, fixing WCAG contrast and unlabeled inputs, choosing type scales or spacing steps, reviewing UI that looks generic or AI-generated, or designing forms, tables, dashboards, navigation, checkout, onboarding, dark mode, and…

imsaif/design-with-claude · 0 tokens

foreman

Run a website build as the brain agent. Interview the user, force the scope and design decisions they would otherwise skip, lock a visual system, write one high-quality build brief, then either build it in this session or hand it to a coding agent (Codex, Claude Code, or any harness), and verify and ship it live. Use…

Turki-Sh/Foreman · 204 tokens

river-review-frontend

A frontend review skill that checks user-interface changes for accessibility, design-system consistency, styling issues, UI states, and framework boundaries in React and Next.js.

s977043/river-review · 72 tokens

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", or "vs best practices".

martineserios/thebrana · 37 tokens

design-pipeline

A build-and-test workflow for turning Figma designs into shadcn/ui components, a reusable set of interface components for React-based projects. It checks the result in a real browser at three screen sizes and runs accessibility checks.

sodam-ai/SoDam-Design-Kit · 77 tokens