Hypervideo Skill
The Hypervideo skill gives AI coding assistants built-in knowledge of the Hypervideo platform — SDK setup, transparent video player integration, and background removal workflows. Works with Claude Code and other tools that support skills.
Install
What You Get
Once installed, your AI assistant automatically understands Hypervideo when you mention "transparent video", "stacked alpha", "remove background", or "hypervideo". No need to paste docs — the skill provides context directly.
Commands
| Command | What it does |
|---|---|
/setup | Installs @hypervideo-dev/sdk, creates a client, configures your API key |
/add-player | Adds a stacked-alpha video player component (React, Expo, or Swift) |
/remove-bg | Removes the background from an image or video via the API |
Auto-context
The skill activates automatically when your conversation involves Hypervideo concepts. It provides your AI with knowledge about:
- SDK methods and configuration
- Output formats (WebP, APNG, Stacked-Alpha, WebM, MOV)
- Async job polling patterns
- Player component props and setup
- API authentication and endpoints
Helper Agent
A hypervideo-helper agent is available for deeper debugging — stacked-alpha format issues, WebGL player problems, and API integration questions.
Example Workflow
# Install the skillnpx skills add hypervideo
# Then in Claude Code or another compatible assistant, just say:> "Set up Hypervideo in my Next.js project"# → Runs /setup, installs SDK, configures client
> "Add a transparent video player for this mascot"# → Runs /add-player, adds StackedAlphaVideo component
> "Remove the background from video.mp4 and give me WebP"# → Runs /remove-bg, calls the API, saves outputWhat's Inside
hypervideo/├── agents/│ └── hypervideo-helper.md # Deep debugging agent├── commands/│ ├── setup.md # /setup — SDK installation│ ├── add-player.md # /add-player — video player│ └── remove-bg.md # /remove-bg — background removal└── skills/ └── hypervideo.md # Auto-activating contextSource
The skill is open source:
