hyperframes-product-launch-video

hyperframes-product-launch-video is a skill for Claude Code from oyi77/1ai-skills. It costs 97 tokens per session (2,380 once invoked), scanned A, original, MIT.

A guide for creating product launch videos from a website, brief, or script using HyperFrames. It assembles product visuals, feature callouts, timing, overlays, captions, and music into a rendered video.

In plain words
What is it for?
Use it for release announcements, website tours, product showcases, social clips, and marketing videos based on supplied product material.
Why use it?
It provides a defined structure for turning product information into a short promotional video.

Skill for Claude Code

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

Part of the 1ai-skills plugin — 209 skills, 4 commands shipped together

Good fit Use it for release announcements, website tours, product showcases, social clips, and marketing videos based on supplied product material.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/hyperframes-product-launch-video
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 oyi77/1ai-skills --skill hyperframes-product-launch-video
Clone the repo
git clone --depth 1 https://github.com/oyi77/1ai-skills

Made for: Claude Code.

Or install 1ai-skills, the plugin that ships this one along with the rest of its 209 skills, 4 commands.

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 hyperframes-product-launch-video

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-product-launch-video/github.svg)](https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-product-launch-video)
Your own site
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-product-launch-video"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-product-launch-video/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 hyperframes-product-launch-video

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-product-launch-video"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-product-launch-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,380 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.00097 $0.02380
Opus 5 $0.00048 $0.01190
Sonnet 5 $0.00019 $0.00476
Haiku 4.5 $0.00010 $0.00238

Measured today against content hash 1f42485cbdee, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

hyperframes-product-launch-video 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 today.

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.

content/hyperframes-product-launch-video/SKILL.md · 268 lines

How it starts

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

Overview

This skill assembles a product launch video — hero shot, feature callouts, timing — as a HyperFrames composition. Use it when a new release needs a tight, brandable announcement clip. It renders the final MP4 from the product assets you supply.

HyperFrames — Product Launch Video

Create product launch videos by writing HTML compositions that HyperFrames renders to deterministic MP4. The agent-native video pipeline: LLMs write HTML (their first language), HyperFrames renders frame-exact video via headless Chrome + FFmpeg.

When to Use

  • User wants a product launch video from a URL, brief, or script
  • User wants a site tour / showcase featuring the product's own visuals
  • User wants a social clip (TikTok/Reels/Shorts) with kinetic captions and branding
  • User wants a marketing/promo video with animated overlays and music
  • User says "make me a video" and provides a product URL or description

When NOT to Use

  • User wants real-person / UGC / studio content (needs camera, not HTML)
  • User wants live streaming / live commerce (needs RTMP ingest)
  • User wants a talking-head interview (use hyperframes-embedded-captions or hyperframes-talking-head-recut)
  • User wants a pure explainer with no product/URL (use hyperframes-faceless-explainer)
  • User wants a presentation/deck (use hyperframes-slideshow)

Workflow

0 · Bootstrap the project

npx hyperframes init my-launch-video
cd my-launch-video

This creates the project scaffold with index.html, package.json, and the HyperFrames CLI configured.

1 · Plan the video

  • Input: product URL, brief, or script
  • Output: 3-6 scene storyboard with timing (total 30-90s sweet spot)
  • Budget: title ≤2s, outro ≤3s, middle scenes ≈8-12s each
  • Pick a design language: browse hyperframes.heygen.com/design for frame.md templates

2 · Write the composition HTML

The composition contract:

<!doctype html>
<html lang="en">
  <body>
    <div
      id="main"
      data-composition-id="intro"
      data-start="0"
      data-duration="15"
      data-width="1080"
      data-height="1920"
      data-fps="30"
    >
      <div
        class="clip"
        data-start="0"
        data-duration="5"
        data-track-index="0"
      >
        <!-- Scene content -->
      </div>
    </div>
  </body>
</html>

Read the full file on GitHub · 268 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. today First seen · 268 lines · 97 tokens per session scan A 1f42485cbdee

Subscribe to this mod's changes

hyperframes-product-launch-video is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 97 tokens to every session and 2,380 once invoked, about $0.0005 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-09-10.