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 S3YED/appie-kit --skill scroll-scrub-herogit clone --depth 1 https://github.com/S3YED/appie-kitWrote 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/s3yed/appie-kit/scroll-scrub-hero)<a href="https://agentmods.dev/skills/s3yed/appie-kit/scroll-scrub-hero"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/scroll-scrub-hero.svg" alt="Measured on agentmods" height="20"></a>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.00049 | $0.01523 |
| Opus 5 | $0.00024 | $0.00762 |
| Sonnet 5 | $0.00010 | $0.00305 |
| Haiku 4.5 | $0.00005 | $0.00152 |
Grade A, and why
scroll-scrub-hero 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 4d 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.
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.
How it starts
The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scroll-Scrub Video Hero
Build a hero section where a video scrubs frame-by-frame driven by the user's scroll position — Apple-product-page style. The video plays forward (and rewinds) exactly as fast as you scroll.
Trigger conditions:
- User wants a "scroll scrub video", "scroll-driven animation", "Apple-style hero", or "sticky video hero"
- User wants a before/after transformation revealed by scrolling
- User asks to fix a "janky" or "not smooth" scroll video
- User points to a reference (Soleiman Advocatuur, Apple product pages, Apex scroll hero)
Architecture
<section.hero> ← 250vh tall (the scroll runway)
<div.hero-sticky> ← position: sticky; top: 0; height: 100vh (the viewport-pinned stage)
<video> ← positioned absolute, inset 0, object-fit: cover
.hero-overlay ← text/CTAs that fade out during scrub
.scroll-hint ← "Scroll" indicator that fades early
The Core Loop (rAF + Lerp)
The critical piece — a requestAnimationFrame loop that smoothly interpolates between the current scroll position and video.currentTime. This is what makes it smooth.
let duration = 0;
video.addEventListener('loadedmetadata', () => { duration = video.duration; });
if (video.readyState >= 1) duration = video.duration;
let cur = 0;
const LERP = 0.12; // Soleiman uses 0.12, apex uses 0.14
const PIN = 1.5; // viewport heights to scrub over
function tick() {
requestAnimationFrame(tick);
const p = Math.min(1, Math.max(0, window.scrollY / (window.innerHeight * PIN)));
const target = p * duration;
cur += (target - cur) * LERP;
if (Math.abs(target - cur) < 0.004) cur = target;
if (video.readyState >= 2 && Number.isFinite(cur) && duration > 0) {
const t = Math.min(cur, duration - 0.05);
if (Math.abs(video.currentTime - t) > 0.01) {
video.currentTime = t;
}
}
// Overlay + hint fade
overlay.style.opacity = Math.max(0, 1 - Math.max(0, p - 0.05) / 0.2);
hint.style.opacity = Math.max(0, 1 - p / 0.08);
}
What ships with it
1 file 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.
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.
- 4d ago First seen · 135 lines · 49 tokens per session scan A 1a57c842c55e
scroll-scrub-hero is a skill published in the GitHub repository S3YED/appie-kit (7 stars, last pushed 12d ago), licensed MIT. It adds 49 tokens to every session and 1,523 once invoked, about $0.0002 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.
Other skills, from other repositories
clone-website
Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…
animation-patterns
Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.
component-library-patterns
Design system token management, component API design, Storybook, and visual regression testing patterns.
design-loop
Autonomous multi-page site builder using a baton-passing loop. Each iteration reads a task from .design/next-prompt.md, generates a page in HTML/Tailwind, integrates it into the site, verifies visually, then writes the next task to keep the loop alive. Use whenever the user asks to build an entire site autonomously…
accessibility-a11y
WCAG 2.2 compliance, ARIA patterns, keyboard navigation, screen readers, automated testing.
color-palette
Generate complete, accessible colour palettes from a single brand hex. Produces 11-shade scale (50-950), semantic tokens, dark mode variants, Tailwind v4 CSS output, WCAG contrast checks. Use whenever the user supplies a brand hex and asks for a palette, mentions setting up a design system, wants Tailwind theme…