hyperframes-oversized-cursor

hyperframes-oversized-cursor is a skill for Claude Code from oyi77/1ai-skills. It costs 95 tokens per session (1,969 once invoked), scanned A, original, MIT.

A reusable oversized cursor effect for HyperFrames product demos and walkthrough videos. The animated pointer moves to points of interest and can click to start an action or transition.

In plain words
What is it for?
Use it to highlight buttons, guide viewers through a user interface, start typing or transitions, and connect scenes with cursor movement.
Why use it?
It makes clicks and interface actions easier to follow and adds movement to otherwise static scenes.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the 1ai-skills plugin — 209 skills, 4 commands shipped together

Good fit Use it to highlight buttons, guide viewers through a user interface, start typing or transitions, and connect scenes with cursor movement.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/hyperframes-oversized-cursor
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 oyi77/1ai-skills --skill hyperframes-oversized-cursor
Clone the repo
git clone --depth 1 https://github.com/oyi77/1ai-skills

Made for: Claude Code.

Or install 1ai-skills, the plugin that ships this one along with the rest of its 209 skills, 4 commands.

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 hyperframes-oversized-cursor

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-oversized-cursor/github.svg)](https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-oversized-cursor)
Your own site
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-oversized-cursor"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-oversized-cursor/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 hyperframes-oversized-cursor

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-oversized-cursor"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-oversized-cursor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,969 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.00095 $0.01969
Opus 5 $0.00048 $0.00984
Sonnet 5 $0.00019 $0.00394
Haiku 4.5 $0.00010 $0.00197

Measured today against content hash 62600597df85, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

hyperframes-oversized-cursor 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 today.

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.

content/hyperframes-oversized-cursor/SKILL.md · 176 lines

How it starts

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

Overview

This skill creates the oversized animated cursor effect popular in product demo and walkthrough videos, as a HyperFrames composition. Use it to draw attention to exact click points and drag gestures in a UI demo. It renders the annotated MP4 from the HTML timeline.

HyperFrames — Oversized Cursor

A deliberately oversized macOS-style pointer that travels the frame as a visible protagonist: enters from off-screen, walks the eye to the next point of interest, clicks to cause the next thing that happens, and leaves.

When to Use

  • User wants a cursor in the video (demo, tutorial, UI walkthrough)
  • User wants to kick off a UI scene with a cursor click
  • User wants to ignite a morph/transition/typing with a click
  • User wants to add motion to a static scene (the cursor carries the eye)
  • User wants a cross-scene handoff via cursor

When NOT to Use

  • User wants a full video workflow (use hyperframes-product-launch-video)
  • User wants transitions without a cursor (use hyperframes-cut-the-curve)
  • User wants a real hand/finger (not stylized cursor)

Why It Exists

Big cursor movement is one of the cheapest high-yield motion sources: one element, transform-only tweens, and it (1) brings the eye across the screen, (2) gives causal ignition to morphs/transitions, (3) segments the eye out of a stale state. Bigger is better — an actual-size cursor disappears at video scale.

Size & Look

  • Full-frame scenes: 7cqw (≈134px at 1920). In-mock / small-frame: 4.6-5.5cqw. Never smaller.

Workflow

1 · Size and style the cursor

#root .cursor {
  position: absolute;
  left: 48%;
  top: 115%;
  width: 7cqw;
  height: 7cqw;
  z-index: 20;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  pointer-events: none;
  will-change: transform;
}

2 · Animate entry from off-screen

tl.fromTo(
  cursor,
  { left: "48.6%", top: "115%" },
  { left: "48.6%", top: "55%", duration: 0.85, ease: "power3.out", immediateRender: false },
  0.25,
);

Read the full file on GitHub · 176 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. today First seen · 176 lines · 95 tokens per session scan A 62600597df85

Subscribe to this mod's changes

hyperframes-oversized-cursor is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 95 tokens to every session and 1,969 once invoked, about $0.0005 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-10.

Related

Other skills, from other repositories

gsap-timeline

Official GSAP skill for timelines — gsap.timeline(), position parameter, nesting, playback. Use when sequencing animations, choreographing keyframes, or when the user asks about animation sequencing, timelines, or animation order (in GSAP or when recommending a library that supports timelines).

calesthio/OpenMontage · 61 tokens

svg-character-animation

Animate SVG character rigs with GSAP, CSS transforms, Remotion frame control, and HyperFrames-compatible browser previews.

calesthio/OpenMontage · 27 tokens

gpt-taste

Use when generating elite GSAP-heavy frontend pages with strict AIDA structure, wide hero typography, and gapless bento grids.

aboalrejal-ai/skills · 31 tokens

sn-motion-html

Build continuous-shot motion-driven HTML stories from a subject or narrative, including research, story structure, consistent AI stills, Seedance scene and connector clips, interface styling, media normalization, and browser QA. Use for immersive journeys, timelines, product stories, fictional worlds, or other…

OpenSenseNova/SenseNova-Skills · 84 tokens

gsap-plugins

Official GSAP skill for GSAP plugins — registration, ScrollToPlugin, ScrollSmoother, Flip, Draggable, Inertia, Observer, SplitText, ScrambleText, SVG and physics plugins, CustomEase, EasePack, CustomWiggle, CustomBounce, GSDevTools. Use when the user asks about a GSAP plugin, scroll-to, flip animations, draggable, SVG…

calesthio/OpenMontage · 91 tokens

tailwind-design-system

Build scalable design systems with Tailwind CSS v4, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI patterns.

calesthio/OpenMontage · 42 tokens