motion-review

motion-review is a skill for Codex from Eliyce/paqad-ai. It costs 17 tokens per session (686 once invoked), scanned A, original, MIT.

An animation review that compares interface motion with documented timing, easing, and reduced-motion rules. Reduced motion is an accessibility setting that asks software to limit animation.

In plain words
What is it for?
Use it to review transition timings, easing choices, and prefers-reduced-motion behavior in a web interface.
Why use it?
It finds animations that run too long, use undeclared easing curves, or ignore users who prefer less motion.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to review transition timings, easing choices, and prefers-reduced-motion behavior in a web interface.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliyce/paqad-ai/motion-review
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 Eliyce/paqad-ai --skill motion-review
Clone the repo
git clone --depth 1 https://github.com/Eliyce/paqad-ai

Made for: Codex.

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 motion-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliyce/paqad-ai/motion-review/github.svg)](https://agentmods.dev/skills/eliyce/paqad-ai/motion-review)
Your own site
<a href="https://agentmods.dev/skills/eliyce/paqad-ai/motion-review"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/motion-review/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 motion-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliyce/paqad-ai/motion-review"><img src="https://agentmods.dev/badge/skills/eliyce/paqad-ai/motion-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 686 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00017 $0.00686
Opus 5 $0.00009 $0.00343
Sonnet 5 $0.00003 $0.00137
Haiku 4.5 $0.00002 $0.00069

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

Security

Grade A, and why

motion-review scanned grade A with 0 findings 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.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/find-reduced-motion-violations.sh, scripts/lint-findings.sh, scripts/parse-motion-budget.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

runtime/capabilities/coding/skills/motion-review/SKILL.md · 68 lines

How it starts

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

What It Does

Audits the project's motion against motion.md: declared duration ceiling, easing curve set, reduced-motion behavior. Catches transitions that exceed the duration budget, ad-hoc easing curves not in the declared set, and components that ignore prefers-reduced-motion.

Use This When

Use for every design-test run after responsive-review.

Inputs

  • Read docs/instructions/design-system/motion.md.
  • Read references/motion-checklist.md.
  • Read the live phase's reduced-motion screenshot results from runtime-checks.ts if available.

Procedure

Scan and budget parsing are deterministic — drive them with the scripts.

  1. Run scripts/parse-motion-budget.sh <motion.md> → key/value rows: duration-ceiling, easing, reduced-motion. This is the declared budget.
  2. Run scripts/scan-animations.sh [search-root]<file>:<line>\t<duration-ms>\t<excerpt> rows. Every duration is normalized to milliseconds (300ms, 0.5s500ms, framer-motion duration: 0.3300ms).
  3. Compare each emitted ms value to the declared duration ceiling. Over budget → motion finding, medium by default.
  4. Run scripts/find-reduced-motion-violations.sh [search-root] → one row per file that animates without prefers-reduced-motion or useReducedMotion(). Each row is a high severity finding (a11y blocker).
  5. Cross-check with the live phase: did the reduced-motion walk produce identical screenshots to the static walk for animated components?

Output Contract

  • Match assets/output.template.md. contract_ref is motion.md → duration / motion.md → easing / motion.md → reduced-motion.
  • Severity: ignored prefers-reduced-motionhigh (accessibility), over-budget duration → medium, ad-hoc easing → low.
  • Output must pass scripts/lint-findings.sh (exit 0).

Escalate / Stop Conditions

  • Ask when motion.md is missing.

Resources

  • references/motion-checklist.md
  • scripts/parse-motion-budget.sh — declared budget from motion.md.
  • scripts/scan-animations.sh — every animation declaration in source, duration normalized to ms.
  • scripts/find-reduced-motion-violations.sh — files that animate without a reduced-motion guard.
  • scripts/lint-findings.sh
  • assets/output.template.md
  • agents/openai.yaml

Read the full file on GitHub · 68 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 First seen · 68 lines · 17 tokens per session scan A f268e99ae61e

Subscribe to this mod's changes

motion-review is a skill published in the GitHub repository Eliyce/paqad-ai (8 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 686 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

auto-verify

A frontend user-experience verification workflow built around Playwright, a tool for controlling browsers in automated tests. It checks important user flows and visual states in a frontend.

Insajin/autopus-adk · 24 tokens

auto-canary

A deployment health-check skill for testing whether a recently deployed or staging website is working. It runs build, end-to-end, and browser checks, then reports a pass, warning, or failure.

Insajin/autopus-adk · 24 tokens

testing-strategy

A testing guide that explains how to combine unit, integration, contract, and end-to-end tests. End-to-end tests check complete user flows, while integration tests check components working together.

Insajin/autopus-adk · 20 tokens

auto-test

An end-to-end testing helper that runs the test scenarios written in a `scenarios.md` file. End-to-end tests check a complete user flow across the relevant parts of an application.

Insajin/autopus-adk · 20 tokens

hatch3r-a11y-audit

Runs a WCAG AA accessibility audit with findings and fixes across 7 scan categories (keyboard, contrast, ARIA, reduced motion, screen reader, high contrast, automated axe). Use when auditing and remediating accessibility.

hatch3r/hatch3r · 55 tokens

vue-component-testing

Applies the three-tier test taxonomy for Vue 3 applications: writes unit tests for composables and Pinia stores with Vitest, component tests for behaviour and user interactions with @testing-library/vue, and acceptance tests for full user flows with Playwright. Ensures tests focus on observable behaviour, not…

soulcodex/agentic · 79 tokens