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.
npx skills add yojahny55/claude-wp-builder --skill wp-aos-animatorgit clone --depth 1 https://github.com/yojahny55/claude-wp-builderWrote 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.
[](https://agentmods.dev/skills/yojahny55/claude-wp-builder/wp-aos-animator)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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 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:
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.
- 8d ago Changed · +22 lines 8e91dd096def
- 11d ago First seen · 133 lines · 70 tokens per session scan A 19973a68b02c
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.
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…
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…
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…
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.
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".
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.