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

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need hyperframes registry. Локализованное описание: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Возможности

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

# Ключевые темы

ilya-makarov-dev ilya-makarov-dev
[3]
[1]
Обновлено: 4/22/2026

Skill Overview

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

Подходящий сценарий: Ideal for AI agents that need hyperframes registry. Локализованное описание: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Зачем использовать этот навык

Рекомендация: hyperframes-registry helps agents hyperframes registry. Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor).

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need hyperframes registry.

Реализуемые кейсы использования for hyperframes-registry

Сценарий использования: 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

! Безопасность и ограничения

  • Ограничение: You need to wire an installed item into an existing composition
  • Ограничение: data-composition-id — must match the block's internal ID
  • Ограничение: Note: hyperframes add only works for blocks and components

About The Source

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

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 и шаги установки

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

? Частые вопросы

Что такое hyperframes-registry?

Подходящий сценарий: Ideal for AI agents that need hyperframes registry. Локализованное описание: Agents live inside the canvas — no switching, plug any MCP agent (Claude, Codex, Cursor). It covers ai-design, ai-native, ai-native-design workflows.

Как установить hyperframes-registry?

Выполните команду: npx killer-skills add ilya-makarov-dev/Reframe. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать hyperframes-registry?

Ключевые сценарии использования: Сценарий использования: 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.

Какие IDE совместимы с hyperframes-registry?

Этот навык совместим с 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. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у hyperframes-registry?

Ограничение: You need to wire an installed item into an existing composition. Ограничение: data-composition-id — must match the block's internal ID. Ограничение: Note: hyperframes add only works for blocks and components.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add ilya-makarov-dev/Reframe. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать hyperframes-registry в текущем проекте.

! 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 is adapted 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 is adapted 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.

Связанные навыки

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

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # 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

Локализованное описание: 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

flags

Logo of vercel
vercel

Локализованное описание: 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
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: 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
Разработчик