hyperframes-registry — for Claude Code hyperframes-registry, Reframe, community, for Claude Code, ide skills, ai-design, ai-native, ai-native-design, anthropic, claude-code

v1.0.0

Sobre este Skill

Cenario recomendado: Ideal for AI agents that need hyperframes registry. Resumo localizado: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Recursos

HyperFrames Registry
The registry provides reusable blocks and components installable via hyperframes add <name .
Components — effect snippets (no own dimensions). Pasted directly into a host composition's HTML.
When to use this skill
User mentions hyperframes add, "block", "component", or hyperframes.json

# Tópicos principais

ilya-makarov-dev ilya-makarov-dev
[3]
[1]
Atualizado: 4/22/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Cenario recomendado: Ideal for AI agents that need hyperframes registry. Resumo localizado: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Por que usar essa habilidade

Recomendacao: hyperframes-registry helps agents hyperframes registry. Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor).

Melhor para

Cenario recomendado: Ideal for AI agents that need hyperframes registry.

Casos de Uso Práticos for hyperframes-registry

Caso de uso: Applying HyperFrames Registry
Caso de uso: Applying The registry provides reusable blocks and components installable via hyperframes add <name
Caso de uso: Applying Components — effect snippets (no own dimensions). Pasted directly into a host composition's HTML

! Segurança e Limitações

  • Limitacao: You need to wire an installed item into an existing composition
  • Limitacao: data-composition-id — must match the block's internal ID
  • Limitacao: Note: hyperframes add only works for blocks and components

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ e etapas de instalação

These questions and steps mirror the structured data on this page for better search understanding.

? Perguntas frequentes

O que é hyperframes-registry?

Cenario recomendado: Ideal for AI agents that need hyperframes registry. Resumo localizado: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Como instalar hyperframes-registry?

Execute o comando: npx killer-skills add ilya-makarov-dev/Reframe/hyperframes-registry. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de hyperframes-registry?

Os principais casos de uso incluem: Caso de uso: Applying HyperFrames Registry, Caso de uso: Applying The registry provides reusable blocks and components installable via hyperframes add <name, Caso de uso: Applying Components — effect snippets (no own dimensions). Pasted directly into a host composition's HTML.

Quais IDEs são compatíveis com hyperframes-registry?

Esta skill é compatível com Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use a CLI do Killer-Skills para uma instalação unificada.

hyperframes-registry tem limitações?

Limitacao: You need to wire an installed item into an existing composition. Limitacao: data-composition-id — must match the block's internal ID. Limitacao: Note: hyperframes add only works for blocks and components.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add ilya-makarov-dev/Reframe/hyperframes-registry. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar hyperframes-registry imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

hyperframes-registry

Install hyperframes-registry, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

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.

When to use this skill

  • User mentions hyperframes add, "block", "component", or hyperframes.json
  • Output from hyperframes add appears in the session (file paths, clipboard snippet)
  • You need to wire an installed item into an existing composition
  • You want to discover what's available in the registry

Quick reference

bash
1hyperframes add data-chart # install a block 2hyperframes add grain-overlay # install a component 3hyperframes add shimmer-sweep --dir . # target a specific project 4hyperframes add data-chart --json # machine-readable output 5hyperframes 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:

json
1{ 2 "registry": "https://raw.githubusercontent.com/heygen-com/hyperframes/main/registry", 3 "paths": { 4 "blocks": "compositions", 5 "components": "compositions/components", 6 "assets": "assets" 7 } 8}

See install-locations.md for full details.

Wiring blocks

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

html
1<div 2 data-composition-id="data-chart" 3 data-composition-src="compositions/data-chart.html" 4 data-start="2" 5 data-duration="15" 6 data-track-index="1" 7 data-width="1920" 8 data-height="1080" 9></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:

bash
1# Read the registry manifest 2curl -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.

Habilidades Relacionadas

Looking for an alternative to hyperframes-registry or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resumo localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resumo localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desenvolvedor