feat(skills): add hyperframes-cli skill - #154
Merged
Merged
Conversation
Adds a new skill that teaches AI agents how to use the HyperFrames CLI (init, lint, dev, render, doctor). Previously, agents had no way to discover the CLI — the compose-video skill only covered HTML authoring. This led to agents searching for binaries, finding the monorepo, and running bun run studio manually instead of using npx hyperframes dev. Also registers the skill in init.ts so new projects get it bundled alongside hyperframes-compose and hyperframes-captions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
bin-heygen
approved these changes
Mar 31, 2026
The command starts a preview server — "preview" describes what users are doing more accurately than "dev". Updates the command name, file name, all CLI references, docs, skills, and template CLAUDE.md. 22 files updated across CLI source, docs, skills, and templates. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- testing-local-changes.mdx: two inline command examples - troubleshooting.mdx: anchor link #dev → #preview, "dev server" → "preview server" - cli.mdx: "dev server" → "preview server" Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
hyperframes-cliskill that teaches AI agents the CLI workflow: scaffold → lint → preview → renderdevcommand topreviewacross the entire codebase (22 files)init.tsso new projects get it bundled alongsidehyperframes-composeandhyperframes-captionsWhy
CLI skill: Without this skill, agents have no way to discover the CLI — the compose-video skill only covers HTML authoring. In a real session, an agent was asked to "open it in the studio" and resorted to searching for binaries, finding the monorepo via Spotlight, and running
bun run studiomanually. With the skill, agents correctly runnpx hyperframes lintthennpx hyperframes preview.dev → preview: The command starts a preview server for viewing compositions. "preview" describes what users are actually doing more accurately than "dev".
Test plan
npx tsx scripts/lint-skills.ts)hyperframes devreferences in.md,.mdx,.tsfilesnpx hyperframes previewhyperframes initbundles the new skill into.claude/skills/hyperframes-cli/hyperframes previewworks end-to-end🤖 Generated with Claude Code