Install
openclaw skills install @michaelwang11394/avatar-videoCreate AI avatar videos with precise control over avatars, voices, scripts, and backgrounds using HeyGen's v3 API (POST /v3/videos). Two modes: type="avatar" with avatar_id, or type="image" with an image AssetInput (Avatar IV). Use when: (1) Choosing a specific avatar and voice for a video, (2) Writing exact scripts for an avatar to speak, (3) Animating a photo into a speaking video (type="image"), (4) Transparent background videos with remove_background, (5) Integrating HeyGen avatars with Remotion, (6) Batch video generation with exact specs, (7) Brand-consistent production videos with precise control.
openclaw skills install @michaelwang11394/avatar-videoCreate AI avatar videos with full control over avatars, voices, scripts, and backgrounds using POST /v3/videos. Two creation modes via discriminated union on type:
"type": "avatar" + avatar_id — use a HeyGen avatar from the library"type": "image" + image (AssetInput) — animate any photo via Avatar IVAll requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable.
curl -X GET "https://api.heygen.com/v3/avatars" \
-H "X-Api-Key: $HEYGEN_API_KEY"
If HeyGen MCP tools are available (mcp__heygen__*), prefer them over direct HTTP API calls — they handle authentication and request formatting automatically.
| Task | MCP Tool | Fallback (Direct API) |
|---|---|---|
| Check video status / get URL | mcp__heygen__get_video | GET /v3/videos/{video_id} |
| List account videos | mcp__heygen__list_videos | GET /v3/videos |
| Delete a video | mcp__heygen__delete_video | DELETE /v3/videos/{video_id} |
Video generation (POST /v3/videos) and avatar/voice listing are done via direct API calls — see reference files below.
GET /v3/avatars/looks → pick a look, note its id (this is the avatar_id) and default_voice_id. See avatars.mdGET /v3/voices → pick a voice matching the avatar's gender/language. See voices.mdPOST /v3/videos with avatar_id, voice_id, script, and optional background per scene. See video-generation.mdGET /v3/videos/{video_id} until status is completed. See video-status.mdThis skill = precise control (specific avatar, exact script, custom background). create-video = prompt-based ("make me a video about X", AI handles the rest).
Read these as needed — they contain endpoint details, request/response schemas, and code examples (curl, TypeScript, Python).
Core workflow:
POST /v3/videos request fields, avatar input modes, voice settings, backgroundsGET /v3/avatars (groups) and GET /v3/avatars/looks (looks → avatar_id)GET /v3/voices with filtering by language, gender, engineGET /v3/videos/{id} polling patterns and downloadCustomization:
Advanced:
type: "image" (Avatar IV), AI-generated avatarsGET /v3/avatars/looks and download preview_image_url so the user can see the avatar before committingdefault_voice_id pre-matched for natural resultstest: true to avoid consuming credits (output will be watermarked)