skills$openclaw/heygen-avatar-lite
daaab9.8kβ˜…

by daaab

heygen-avatar-lite – OpenClaw Skill

heygen-avatar-lite is an OpenClaw Skills integration for coding workflows. Create AI digital human videos with HeyGen API. Free starter guide.

9.8k stars4.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameheygen-avatar-lite
descriptionCreate AI digital human videos with HeyGen API. Free starter guide. OpenClaw Skills integration.
ownerdaaab
repositorydaaab/heygen-avatar-lite
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @daaab/heygen-avatar-lite
last updatedFeb 7, 2026

Maintainer

daaab

daaab

Maintains heygen-avatar-lite in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
298 B
SKILL.md
3.6 KB
SKILL.md

name: heygen-avatar-lite description: Create AI digital human videos with HeyGen API. Free starter guide. version: 1.0.0 author: LittleLobster license: MIT

🎬 HeyGen AI Avatar Video (Lite)

Create professional AI-generated videos with your own digital human avatar!

🎯 What You'll Build

  • Generate videos with AI avatars speaking any text
  • Support for multiple languages
  • Portrait (9:16) and Landscape (16:9) formats
  • Custom voice cloning integration

πŸ“‹ Prerequisites

  1. HeyGen Account (Creator plan or above)

  2. Custom Avatar (optional)

    • Upload training video to create your digital twin
    • Or use HeyGen's stock avatars

πŸ—οΈ Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   Your App  │────▢│  HeyGen API │────▢│   Video     β”‚
β”‚  (trigger)  β”‚     β”‚  (generate) β”‚     β”‚   Output    β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β”‚                  β”‚
        β–Ό                  β–Ό
   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”      β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
   β”‚  Text   β”‚      β”‚   Avatar +  β”‚
   β”‚  Input  β”‚      β”‚   Voice     β”‚
   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜      β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

πŸš€ Quick Start

Step 1: Get Your API Key

HEYGEN_API_KEY="your_api_key_here"

Step 2: List Available Avatars

curl -X GET "https://api.heygen.com/v2/avatars" \
  -H "X-Api-Key: $HEYGEN_API_KEY" | jq '.data.avatars[:5]'

Step 3: List Available Voices

curl -X GET "https://api.heygen.com/v2/voices" \
  -H "X-Api-Key: $HEYGEN_API_KEY" | jq '.data.voices[:5]'

Step 4: Generate a Video

curl -X POST "https://api.heygen.com/v2/video/generate" \
  -H "X-Api-Key: $HEYGEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "video_inputs": [{
      "character": {
        "type": "avatar",
        "avatar_id": "YOUR_AVATAR_ID",
        "avatar_style": "normal"
      },
      "voice": {
        "type": "text",
        "input_text": "Hello! This is my AI avatar speaking.",
        "voice_id": "YOUR_VOICE_ID"
      }
    }],
    "dimension": {
      "width": 1280,
      "height": 720
    }
  }'

Step 5: Check Video Status

VIDEO_ID="your_video_id"
curl -X GET "https://api.heygen.com/v1/video_status.get?video_id=$VIDEO_ID" \
  -H "X-Api-Key: $HEYGEN_API_KEY"

πŸ“ Video Dimensions

FormatDimensionsUse Case
Landscape1280x720YouTube, Website
Portrait720x1280TikTok, Reels, Shorts
Square1080x1080Instagram

πŸ’° Cost Estimate

PlanPriceCredits
Creator$29/month15 min/month
Business$89/month30 min/month
Per-minute overage~$1-2/min-

⚠️ Limitations of Lite Version

  • Basic API guide only
  • No automation scripts
  • No error handling
  • No subtitle integration
  • Community support only

πŸš€ Want More?

Premium Version includes:

  • βœ… Complete Python generation script
  • βœ… Automatic video download
  • βœ… Portrait + Landscape presets
  • βœ… Integration with ZapCap subtitles
  • βœ… Batch video generation
  • βœ… LINE/Telegram delivery integration
  • βœ… Priority support

Get it on Virtuals ACP: Find @LittleLobster


Made with 🦞 by LittleLobster

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install heygen-avatar-lite?

Run openclaw add @daaab/heygen-avatar-lite in your terminal. This installs heygen-avatar-lite into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/daaab/heygen-avatar-lite. Review commits and README documentation before installing.