GitHub Copilot CLI brings AI-powered coding assistance to your terminal. HyperFrames skills teach it how to write correct compositions, GSAP timelines, and framework-specific patterns — so you get valid video HTML without reading the docs yourself.Documentation Index
Fetch the complete documentation index at: https://hyperframes.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- GitHub Copilot subscription — Free, Pro, Pro+, Business, or Enterprise all include CLI access
- Copilot CLI installed —
npm install -g @github/copilot(or via the install script) - Node.js 22+ and FFmpeg for the HyperFrames CLI
Install skills
Install the HyperFrames skill package into your project:.agents/skills/ in your project — the path Copilot CLI scans automatically for workspace-scoped skills.
If you install skills during an active session, run /skills to open the skills picker and verify they appear. New skills installed to the project directory are picked up automatically on the next prompt.
Using skills
Copilot CLI supports both explicit invocation via slash commands and automatic detection based on your prompt.Slash commands
Prefix a skill name with/ to load it explicitly:
Auto-detection
Copilot also matches skills based on thedescription field in each SKILL.md. If your prompt mentions compositions, timelines, or video rendering, the agent loads the right skills without you specifying them:
Skill management
| Command | What it does |
|---|---|
/skills | Open the interactive skills picker — browse, enable, or disable skills |
/skills add <path> | Add an additional skill directory to the current session |
Create and preview a video
Prompt with the skill
data-* attributes, class="clip" on timed elements, paused GSAP timelines registered on window.__timelines. The preview updates as files are saved.Agent mode
Copilot CLI’s agent mode can handle multi-step tasks autonomously — scaffolding a project, writing the composition, installing registry blocks, and rendering in sequence:npx hyperframes init and npx hyperframes render) on your behalf. Review the commands before approving them — especially if the skill pre-approves shell in its allowed-tools.
MCP alternative
Copilot CLI also supports MCP servers for cloud-based authoring without the local CLI. Use the--additional-mcp-config flag to add the HyperFrames MCP server to your session:
Tips
- Always start with
/hyperframesfor composition work. This loads the full skill context — composition rules, data attributes, GSAP patterns, caption formats — that generic web knowledge doesn’t cover. - Use
/skillsto check skill status. If output looks wrong, open the skills picker to verify the HyperFrames skills are enabled. - Run
npx hyperframes lintbefore rendering. The linter catches structural issues the agent might miss on complex multi-scene edits. - Keep the preview server running in a separate terminal. You see every edit reflected in real time while prompting in Copilot CLI.
- Install registry blocks for transitions and effects.
npx hyperframes add shimmer-sweepinstalls pre-built blocks, then prompt the agent to wire them in.
Next steps
Prompting guide
Vocabulary and patterns that produce better compositions.
Catalog
50+ ready-to-use blocks the agent can install and wire.
GSAP Animation
Motion principles and timeline authoring.
Pipeline guide
The 7-step structure agents follow for multi-beat videos.