sparkle-that-page

sparkle-that-page is a skill for Claude Code from wan-huiyan/cutify-this. It costs 185 tokens per session (3,148 once invoked), scanned A, original, MIT.

A web-development skill for adding playful visual effects with small, dependency-free JavaScript or CSS files. It covers cursors, sparkle trails, scroll indicators, confetti, floating decorations, and other browser details.

In plain words
What is it for?
It is for adding cute cursors, mouse trails, click effects, scroll progress displays, ambient animations, and related visual touches to a web page.
Why use it?
It gives a web page personality without requiring a framework, package installation, or build step.

Skill for Claude Code

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

Part of the sparkle-that-page plugin — 1 skill shipped together

Good fit It is for adding cute cursors, mouse trails, click effects, scroll progress displays, ambient animations, and related visual touches to a web page.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wan-huiyan/cutify-this/sparkle-that-page
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 wan-huiyan/cutify-this --skill sparkle-that-page
Clone the repo
git clone --depth 1 https://github.com/wan-huiyan/cutify-this

Made for: Claude Code.

Or install sparkle-that-page, the plugin that ships this one along with the rest of its 1 skill.

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 sparkle-that-page

README.md
[![agentmods](https://agentmods.dev/badge/skills/wan-huiyan/cutify-this/sparkle-that-page/github.svg)](https://agentmods.dev/skills/wan-huiyan/cutify-this/sparkle-that-page)
Your own site
<a href="https://agentmods.dev/skills/wan-huiyan/cutify-this/sparkle-that-page"><img src="https://agentmods.dev/badge/skills/wan-huiyan/cutify-this/sparkle-that-page/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 sparkle-that-page

Your own site · 80×15
<a href="https://agentmods.dev/skills/wan-huiyan/cutify-this/sparkle-that-page"><img src="https://agentmods.dev/badge/skills/wan-huiyan/cutify-this/sparkle-that-page.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 185 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,148 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.00185 $0.03148
Opus 5 $0.00093 $0.01574
Sonnet 5 $0.00037 $0.00630
Haiku 4.5 $0.00018 $0.00315

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

Security

Grade A, and why

sparkle-that-page 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 12d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (examples/ambient_floaters.js, examples/click_confetti.js, examples/fairy_cursor.js, …), 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.

plugins/sparkle-that-page/skills/sparkle-that-page/SKILL.md · 227 lines

How it starts

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

Sparkle That Page ✨

Make the whole browser page delightful — not just the favicon (that's the sibling skill cutify-that-tab). Seven self-contained, zero-dependency effects you paste in: a fairy-wand cursor, a sparkle trail, an animated scroll indicator, tab-title peekaboo, click confetti, ambient floaters, and cute-chrome touches. Each is one short vanilla file — copy, drop in, tweak a data-* attribute. No npm, no build, no framework.

Problem

A web app feels flat. The user wants personality — magic on the cursor, sparkle on a click, a little mascot that climbs as you scroll — without pulling in a particle framework, a build step, or a pile of dependencies. They want to point at an effect and have it just work, and to be able to hand-edit it afterward.

Context / Trigger conditions

Use when any of:

  • User asks for a "cute cursor / fairy cursor / magic wand cursor / sparkle cursor", "sparkles when I move/click the mouse", "cursor trail".
  • "scroll progress bar / scroll indicator / reading progress / a thing that fills as you scroll".
  • "confetti / heart burst on click", "celebrate when they click".
  • "floating petals / snow / bubbles / leaves / fairy dust in the background".
  • "make the tab say something when you leave", "come back message".
  • "cute selection color / bouncy buttons / kawaii spinner".
  • General: "make this page cuter / more playful / more alive / add some magic."

Skip if: the user wants a serious/corporate UI, a full design system, or a heavyweight, highly-configurable particle engine (point them at the libraries in Prior art instead). Also skip motion-heavy effects for users who've asked for a calm/minimal experience — though every effect here already self-disables under prefers-reduced-motion.

Solution — pick the effect(s), copy the file, wire it in

Every effect ships as one file in examples/. Wire JS with a <script> and CSS with a <link>, then set options via data-* attributes on <html>:

<!-- one line per effect you want -->
<script src="/static/fairy_cursor.js"></script>
<script src="/static/sparkle_trail.js"></script>
<link rel="stylesheet" href="/static/cute_chrome.css">
<!-- options live on the html tag -->
<html data-wand="sailormoon" data-trail="fairydust" data-palette="candy">

Read the full file on GitHub · 227 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. 12d ago First seen · 227 lines · 185 tokens per session scan A 423c42ddbbe7

Subscribe to this mod's changes

sparkle-that-page is a skill published in the GitHub repository wan-huiyan/cutify-this (1 stars, last pushed 1mo ago), licensed MIT. It adds 185 tokens to every session and 3,148 once invoked, about $0.0009 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-08-31.

Related

Other skills, from other repositories

aceternity-ui

100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI integration errors.

secondsky/claude-skills · 48 tokens

tools-unity-ugui

Unity UI patterns including Canvas optimization, list virtualization, and mobile-friendly UI.

IdoCohen560/claude-unity-game-studio · 22 tokens

motion

UIForge's motion layer — art-directs motion for React/Next.js + Tailwind interfaces built with Motion-Primitives (the shadcn-style copy-in registry, powered by Motion / ex Framer Motion). Use whenever you build or polish a landing page, hero, dashboard, pricing table, feature section, empty state, or any screen where…

TaewoooPark/UIForge · 164 tokens

window-alert-confirm

Guidelines for using window.alert() and window.confirm() in web applications. Use when implementing error notifications or destructive action confirmations.

ncaq/konoka · 29 tokens

design-director

UIForge's always-on design brain — the art director for any web UI. Use whenever you build or elevate a landing page, hero, dashboard, pricing table, marketing site, app screen, component, or design system, or when asked to make something feel premium, distinctive, high-end, polished, "not generic," or "not…

TaewoooPark/UIForge · 139 tokens

content

UIForge's microcopy layer — words are UI. Use when writing or fixing any interface text: headlines, subheads, button/CTA labels, empty states, error and loading messages, tooltips, form labels, onboarding, or marketing copy, or when copy feels generic, hypey, or "AI-written." Enforces outcome-driven labels…

TaewoooPark/UIForge · 113 tokens