heygen-avatars

📁 yonatangross/orchestkit 📅 Jan 26, 2026
28
总安装量
28
周安装量
#7407
全站排名
安装命令
npx skills add https://github.com/yonatangross/orchestkit --skill heygen-avatars

Agent 安装分布

claude-code 17
gemini-cli 16
opencode 14
codex 14
antigravity 11
cursor 10

Skill 文档

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