Google Antigravity is Google’s agent-first IDE built on VS Code. Its agent discovers and loads HyperFrames skills automatically based on your prompts, so you get correct compositions without memorizing framework internals.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.
Install skills
Install the HyperFrames skill package into your project:.agents/skills/ at your workspace root — the location Antigravity scans for workspace-scoped skills.
Verify the skills are installed:
hyperframes/, hyperframes-cli/, gsap/, tailwind/, and others — each containing a SKILL.md that the agent reads on demand.
How skills work in Antigravity
Antigravity uses semantic matching — when you type a prompt, the agent compares it against thedescription field of every available skill and loads the ones that are relevant. You don’t need to invoke skills with a slash command (though you can reference them by name for precision).
| You say | Agent loads |
|---|---|
| ”Create a 10-second product intro with captions” | hyperframes, hyperframes-cli |
| ”Add a GSAP scale-pop to the title” | gsap |
| ”Use Tailwind for styling” | tailwind |
| ”Transcribe this audio and add captions” | hyperframes-media |
| ”Add a shimmer sweep transition” | hyperframes-registry |
For the best results, mention “HyperFrames” or “composition” in your prompt so the agent matches the right skills immediately instead of guessing at generic web-video conventions.
Create and preview a video
Scaffold a project
Open Antigravity’s integrated terminal and run:The wizard walks you through example selection and media import. Skills are installed automatically inside the new project.
Start the preview server
index.html appear instantly.Prompt the agent
In Antigravity’s agent sidebar, describe the video you want:
Create a 15-second dark-themed product intro for my SaaS app with a fade-in title, hype-style captions, and a flash transition to the CTA.The agent reads the HyperFrames skill, writes valid HTML with
data-* attributes and GSAP timelines, and saves it to your project files. The preview updates automatically.Iterate
Talk to the agent like a video editor — don’t re-prompt from scratch:
Make the title 2x bigger and swap the transition to a whip pan.
Add a lower third at 0:03 with my name.
Replace the background with assets/hero.mp4.
Using multiple agents in Manager view
Antigravity’s Manager view lets you orchestrate multiple agents in parallel. For complex multi-scene videos, you can split the work:- Agent 1: Author the intro scene and transitions
- Agent 2: Generate TTS narration and caption timing
- Agent 3: Build the data visualization scene
index.html with data-composition-src references when all agents finish.
MCP alternative
If you prefer zero-install cloud authoring, Antigravity supports remote MCP servers. Add the HyperFrames MCP connector to author and render compositions without the CLI — see Antigravity’s MCP documentation for the exact setup steps in your version, then use the server URL:Agent instruction files
HyperFrames projects created withnpx hyperframes init scaffold both CLAUDE.md and AGENTS.md automatically — these give the agent additional composition context beyond what the skills provide.
AGENTS.md— the cross-agent convention. Antigravity reads this regardless of which model you’ve selected (Gemini, Claude, or others).CLAUDE.md— read when Antigravity’s agent uses a Claude model (Sonnet or Opus), providing Claude-specific project instructions.
Tips
- Mention the skill by name when precision matters. “Using the hyperframes skill, add a grain overlay” is more reliable than “add a grain overlay” when the agent has many skills loaded.
- Use
npx hyperframes lintbefore rendering. The linter catches structural issues (missingclass="clip", unregistered timelines, muted video violations) that the agent might miss on complex edits. - Install registry blocks for advanced effects. Run
npx hyperframes add shimmer-sweepto install pre-built blocks, then ask the agent to wire them into your composition. - Keep the preview server running. Antigravity’s file watcher + HyperFrames’ hot reload means you see every agent edit in real time.
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.