premium-html-build

Builds self-contained single-file HTML artifacts with motion effects and static verification fallbacks.

Updated Aug 21, 2026
One-click install
npx skills add https://github.com/TylerSimons1127/vibe --skill premium-html-build-tylersimons1127
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: premium-html-build
Source: https://github.com/TylerSimons1127/vibe/tree/main/skills/creative/premium-html-build
Command: npx skills add https://github.com/TylerSimons1127/vibe --skill premium-html-build-tylersimons1127

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Building polished single-file HTML pages with tasteful motion is error-prone: effects like text-scramble and per-letter weight-hover conflict, neon "slop" styling creeps in, and when the browser automation tool is blocked by Chrome's remote-debugging prompt there is no way to visually verify the result. ## Core Features & Use Cases - Token and motion system: Enforces a matte color palette, variable display fonts, defined spacing/radius scales, and a restrained library of 2-4 motion effects (scroll reveal, count-up, 3D tilt, marquee, weight-hover, text-scramble). - Documented pitfall fixes: Provides proven sequencing rules for combining text-scramble with per-letter variable-font weight-hover, including the recursive frame-counter completion check and reduced-motion guards. - Static verification fallback: Ships scripts/verify_html.py to extract inline JavaScript, run node --check, and execute grep assertions when live browser rendering is blocked. - Use Case: You need a self-contained dashboard HTML file that opens via file:// with scroll-reveal and count-up animations, but the browser tool is permission-blocked; the skill guides the build and verifies it statically without claiming a visual pass. ## Quick Start Build a single-file premium HTML dashboard with matte styling and two motion effects, then verify it statically using the included script since the browser is blocked.

Frequently Asked Questions about premium-html-build

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a single-file HTML page with scroll animations?▼

Define a small matte color token set and variable display font, then pick two to four motion effects such as IntersectionObserver scroll-reveal with staggered translateY and opacity, or requestAnimationFrame count-up on stats. Keep everything inline so the file opens via file:// with no server.

How to combine text-scramble and variable-font weight-hover effects?▼

Put the title text in an inner span and point the scramble at that span, then build per-letter spans only after the scramble completes. The recursive frame counter must check completion at the top of the tick function, or the completion branch becomes dead code and weight-hover never attaches.

How do I verify HTML when the browser tool is blocked?▼

Extract the inline script and run node --check for syntax validation, then run grep assertions for required structure like effect classes and prefers-reduced-motion guards. For sequencing logic, use a small Node DOM simulation, and never claim a visual pass you did not get.

Why does Chrome block browser automation with a remote debugging prompt?▼

Chrome shows a per-connection "Allow remote debugging?" permission popup that only the user can dismiss; the agent cannot bypass it. Until the user clicks Allow, verification must fall back to static syntax and structural checks.

What color palettes avoid the AI slop look in web design?▼

Use matte, low-chroma tokens: a muted slate or indigo canvas with clay, sage, and amber accents. Avoid electric cyan, magenta, lime, saturated colored box-shadows, glow effects, and purple-blue gradient heroes.