hyperframes-slideshow

hyperframes-slideshow is a skill for Claude Code from oyi77/1ai-skills. It costs 68 tokens per session (906 once invoked), scanned A, original, MIT.

A guide for building presentations and pitch decks as navigable slides, with timed reveals, links, branching paths, and presenter mode. A pitch deck is a short presentation used to explain an idea, product, or business.

In plain words
What is it for?
Use it to create sales decks, portfolios, interactive presentations, slide sequences, and decks that can also be rendered as video.
Why use it?
It supports interactive presentations instead of limiting the output to a video or a static set of slides.

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 to create sales decks, portfolios, interactive presentations, slide sequences, and decks that can also be rendered as video.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/hyperframes-slideshow
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-slideshow
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-slideshow

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/hyperframes-slideshow"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/hyperframes-slideshow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 906 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.00068 $0.00906
Opus 5 $0.00034 $0.00453
Sonnet 5 $0.00014 $0.00181
Haiku 4.5 $0.00007 $0.00091

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

Security

Grade A, and why

hyperframes-slideshow 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-slideshow/SKILL.md · 105 lines

How it starts

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

Overview

This skill builds a timed slideshow video from a set of images with transitions, as a HyperFrames composition. Use it for portfolios, recaps, or gallery sequences. It renders the final MP4 with exact per-slide timing.

HyperFrames — Slideshow / Deck

A presentation, pitch deck, or interactive deck. Discrete slides, fragment reveals, branching, hotspot navigation, presenter mode. Output is a navigable deck, not a rendered video.

When to Use

  • User wants a presentation or pitch deck
  • User wants slides with animated reveals
  • User wants an interactive deck (branching, hotspots)
  • User wants a slide deck that can also render to video
  • User says "make me slides" or "pitch deck"

When NOT to Use

  • User wants a rendered MP4 video (use hyperframes-product-launch-video)
  • User wants a PowerPoint file (use document-creator skill)
  • User wants a single motion graphic (use hyperframes-motion-graphics)

Workflow

1 · Plan the deck

  • Slide count: 5-15 for pitches, 10-30 for deep dives
  • Structure: title → problem → solution → proof → CTA
  • Timing: if rendering to video, 5-10s per slide

2 · Author slides as scenes

Each slide is a clip with full-canvas duration:

<div class="slide" data-start="0" data-duration="8" data-track-index="0">
  <h1 class="slide-title">Problem</h1>
  <p class="slide-body">Customers waste 3 hours daily on manual reports.</p>
</div>
<div class="slide" data-start="8" data-duration="8" data-track-index="1">
  <h1 class="slide-title">Solution</h1>
  <p class="slide-body">Automated pipeline in one click.</p>
</div>

3 · Add fragment reveals

Within a slide, stagger element entrances for presenter-paced reveals:

.fragment { opacity: 0; }
.fragment.visible { animation: fadeInUp 0.5s forwards; }
.fragment:nth-child(2) { animation-delay: 0.3s; }
.fragment:nth-child(3) { animation-delay: 0.6s; }

4 · Wire navigation (interactive mode)

  • Linear: arrow keys / click advance __player.seek(nextSlide)
  • Branching: hotspot buttons jump to named slides
  • Presenter mode: speaker notes in separate pane, synced via same clock

Read the full file on GitHub · 105 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 · 105 lines · 68 tokens per session scan A 12c14cb89f67

Subscribe to this mod's changes

hyperframes-slideshow is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 68 tokens to every session and 906 once invoked, about $0.0003 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.