heygen-avatars

SKILL.md

HeyGen Avatars

AI avatar video creation using HeyGen API for talking head videos, avatar generation, and text-to-video workflows.

Quick Start

// Check remaining quota
const response = await fetch("https://api.heygen.com/v2/user/remaining_quota", {
  headers: { "X-Api-Key": process.env.HEYGEN_API_KEY! }
});

// Generate avatar video
const video = await fetch("https://api.heygen.com/v2/video/generate", {
  method: "POST",
  headers: {
    "X-Api-Key": process.env.HEYGEN_API_KEY!,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    video_inputs: [{
      character: { type: "avatar", avatar_id: "your-avatar-id" },
      voice: { type: "text", input_text: "Hello world!", voice_id: "your-voice-id" }
    }],
    dimension: { width: 1280, height: 720 }
  })
});

When to use

Use this skill whenever you are dealing with HeyGen API code to obtain domain-specific knowledge for creating AI avatar videos, managing avatars, handling video generation workflows, and integrating with HeyGen's services.

How to use

Read individual rule files for detailed explanations and code examples:

Foundation

Core Video Creation

Video Customization

Advanced Features

Integration

Related Skills

  • remotion-composer: Video composition for combining HeyGen avatars with other assets
  • elevenlabs-narration: Alternative TTS for narration without avatars
  • demo-producer: Full demo pipeline that can include avatar segments
  • video-pacing: Timing patterns for avatar-based content
Weekly Installs
28
GitHub Stars
95
First Seen
Jan 26, 2026
Installed on
claude-code17
gemini-cli16
opencode14
codex14
antigravity11
cursor10