install-hyperframes

Wires HyperFrames into a marketing-engine clone as a video provider with idempotent bootstrap steps.

9|Updated May 8, 2026
One-click install
npx skills add https://github.com/simpletibr/simplicio-loop-marketing --skill install-hyperframes-simpletibr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: install-hyperframes
Source: https://github.com/simpletibr/simplicio-loop-marketing/tree/main/.skills/install-hyperframes
Command: npx skills add https://github.com/simpletibr/simplicio-loop-marketing --skill install-hyperframes-simpletibr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Integrating a new video provider into a marketing-engine repository requires touching skills, provider classes, routing matrices, env vars, and documentation across many files, and redoing this after a fresh clone or a rebase is error-prone. This Skill encodes the entire HyperFrames integration as a single verifiable, idempotent checklist. ## Core Features & Use Cases - One-shot bootstrap: Creates the three HyperFrames runtime skills, the provider class and mock, routing matrix rows, env vars, and CLAUDE.md updates in one pass. - Idempotent verification: Checks every artefact before writing, skipping files that already exist and surfacing diffs when content conflicts. - Safe git workflow: Never commits on main, stages only touched files, and commits with a canonical message on a feature branch. - Use Case: After rebasing a marketing-engine clone and losing the HyperFrames wiring, run this Skill to restore the provider class, matrix rows, and skills, then verify with typecheck and router checks before opening a draft PR. ## Quick Start Run the install-hyperframes skill against this repository to wire HyperFrames in as a video provider and open a draft PR with the changes.

Frequently Asked Questions about install-hyperframes

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

FAQPage Schema
How do I add HyperFrames as a video provider to marketing-engine?▼

Invoke the install-hyperframes skill against the repository root. It creates the three runtime skills, adds the HyperframesVideoProvider class and mock, extends the routing matrix with motion-typography, data-viz-reel, and programmatic-short rows, and updates env vars and CLAUDE.md.

What task kinds does HyperFrames handle in the routing matrix?▼

HyperFrames handles three video task kinds: motion-typography for kinetic type, data-viz-reel for re-renderable charts, and programmatic-short for parametrized HTML compositions. Each defaults to hyperframes in the embedded routing matrix.

Is the HyperFrames installation skill safe to re-run?▼

Yes, the skill is idempotent. Re-running on an already-integrated repo touches zero files; each step verifies the artefact exists and matches canonical content before writing, and conflicting hand-edited files are surfaced for operator review.

Does HyperFrames need an API key to render videos?▼

No. HyperFrames is a local HTML-to-MP4 renderer requiring no API key. Set HYPERFRAMES_ACTIVE=true only after npx hyperframes doctor passes locally, which requires Node 22 or later and FFmpeg on PATH.

Why does the skill refuse to run on my repository?▼

The preflight step refuses to run if CLAUDE.md lacks the provider contract section or if lib/providers files are missing, since that indicates the target is not a marketing-engine repo. It also refuses to commit on the main branch.