Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
heygen-com avatar

Hyperframes Registry

  • 263k installs
  • 38.1k repo stars
  • Updated July 28, 2026
  • heygen-com/hyperframes

hyperframes-registry is a HyperFrames agent skill that adds animated charts, data visualizations, and UI effects into video compositions for developers building programmatic video projects.

About

hyperframes-registry is a HyperFrames skill for adding animated charts, data visualizations, and UI effects into video compositions. Developers install blocks with `hyperframes add`, wire them into index.html compositions using data-composition-id and timing attributes, then customize via scoped CSS and JavaScript. Developers use hyperframes-registry when existing HyperFrames projects need data visualization or animated UI effects composited with video content.

  • Registry blocks installed via `hyperframes add data-chart` and wired into index.html with timed data attributes
  • Components like shimmer-sweep are customizable via scoped CSS and JS with GSAP timeline integration
  • Supports layered video plus animated data overlays with independent timelines on separate tracks

Hyperframes Registry by the numbers

  • 263,085 all-time installs (skills.sh)
  • +33,834 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #40 of 1,340 Generative Media skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

hyperframes-registry capabilities & compatibility

Capabilities
block installation · composition wiring · animation integration
Use cases
video generation
npx skills add https://github.com/heygen-com/hyperframes --skill hyperframes-registry

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs263k
repo stars38.1k
Security audit2 / 3 scanners passed
Last updatedJuly 28, 2026
Repositoryheygen-com/hyperframes

How do you add charts to HyperFrames video?

Add animated charts, data visualizations, and UI effects into HyperFrames video compositions

Who is it for?

Developers building HyperFrames video projects who need animated charts or UI effects composited with speaker video on a timed stage

Skip if: Developers not using HyperFrames or needing static image export only outside the HyperFrames block registry system

When should I use this skill?

An existing HyperFrames project needs an animated chart, data visualization, or UI effect block added and wired into index.html

What you get

Installed registry block, updated index.html composition markup with timed data-chart overlay alongside video tracks.

  • installed registry block
  • updated index.html composition

By the numbers

  • Example composition uses 1920x1080 resolution with 30-second data-duration stage

Files

SKILL.mdMarkdownGitHub ↗

HyperFrames Registry

The registry provides reusable blocks and components installable via hyperframes add <name>.

  • Blocks — standalone sub-compositions (own dimensions, duration, timeline). Included via data-composition-src in a host composition.
  • Components — effect snippets (no own dimensions). Pasted directly into a host composition's HTML.

Quick reference

hyperframes add data-chart              # install a block
hyperframes add grain-overlay           # install a component
hyperframes add shimmer-sweep --dir .   # target a specific project
hyperframes add data-chart --json       # machine-readable output
hyperframes add data-chart --no-clipboard  # skip clipboard (CI/headless)

After install, the CLI prints which files were written and a snippet to paste into your host composition. The snippet is a starting point — you'll need to add data-composition-id (must match the block's internal composition ID), data-start, and data-track-index attributes when wiring blocks.

Note: hyperframes add only works for blocks and components. For examples, use hyperframes init <dir> --example <name> instead.

Install locations

Blocks install to compositions/<name>.html by default. Components install to compositions/components/<name>.html by default.

These paths are configurable in hyperframes.json:

{
  "registry": "https://raw.githubusercontent.com/heygen-com/hyperframes/main/registry",
  "paths": {
    "blocks": "compositions",
    "components": "compositions/components",
    "assets": "assets"
  }
}

See install-locations.md for full details.

Wiring blocks

Blocks are standalone compositions — include them via data-composition-src in your host index.html:

<div
  data-composition-id="data-chart"
  data-composition-src="compositions/data-chart.html"
  data-start="2"
  data-duration="15"
  data-track-index="1"
  data-width="1920"
  data-height="1080"
></div>

Key attributes:

  • data-composition-src — path to the block HTML file
  • data-composition-id — must match the block's internal ID
  • data-start — when the block appears in the host timeline (seconds)
  • data-duration — how long the block plays
  • data-width / data-height — block canvas dimensions
  • data-track-index — layer ordering (higher = in front)

See wiring-blocks.md for full details.

Wiring components

Components are snippets — paste their HTML into your composition's markup, their CSS into your style block, and their JS into your script (if any):

1. Read the installed file (e.g., compositions/components/grain-overlay.html) 2. Copy the HTML elements into your composition's <div data-composition-id="..."> 3. Copy the <style> block into your composition's styles 4. Copy any <script> content into your composition's script (before your timeline code) 5. If the component exposes GSAP timeline integration (see the comment block in the snippet), add those calls to your timeline

See wiring-components.md for full details.

Discovery

Browse available items:

# Read the registry manifest
curl -s https://raw.githubusercontent.com/heygen-com/hyperframes/main/registry/registry.json

Each item's registry-item.json contains: name, type, title, description, tags, dimensions (blocks only), duration (blocks only), and file list.

See discovery.md for details on filtering by type and tags.

Contributing a new block or component

To author a NEW registry item (caption style, VFX block, transition, lower third, or a reusable component) and ship it as an upstream PR — not install an existing one — follow the full idea → scaffold → build → validate → preview → ship workflow in contributing.md. Copy-paste starter templates (caption / VFX / component / registry-item.json) are in templates.md.

Related skills

Forks & variants (2)

Hyperframes Registry has 2 known copies in the catalog totaling 255 installs. They canonicalize to this original listing.

FAQ

How do you install a HyperFrames registry block?

Developers install HyperFrames registry blocks with `hyperframes add data-chart` or similar block names. The hyperframes-registry skill then wires the block into index.html inside a stage div with composition timing attributes.

What HTML attributes configure HyperFrames compositions?

HyperFrames compositions use data-composition-id, data-width, data-height, and data-duration on the stage element. Individual blocks use data-start, data-duration, and data-track-index for timed positioning alongside video sources.

Is Hyperframes Registry safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.