Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

heygenheygen 演示文稿

Agent Skill

heygen 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

470

周安装

20

GitHub Stars

56

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:heygen(heygen 演示文稿)
来源仓库:https://github.com/vm0-ai/vm0-skills
仓库路径:skills/heygen
安装命令:
npx skills add https://github.com/vm0-ai/vm0-skills --skill heygen
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vm0-ai/vm0-skills --skill heygen

简介

heygen 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意是否会触发联网或数据访问。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Troubleshooting

If requests fail, run zero doctor check-connector --env-name HEYGEN_TOKEN or zero doctor check-connector --url https://api.heygen.com/v2/avatars --method GET

How to Use

All examples below assume you have HEYGEN_TOKEN set.

The base URL for the HeyGen API is:

  • v1 endpoints: https://api.heygen.com/v1
  • v2 endpoints: https://api.heygen.com/v2

1. List Available Avatars

Get all avatars available to your account:

curl -s -X GET "https://api.heygen.com/v2/avatars" --header "x-api-key: $HEYGEN_TOKEN" | jq '.data.avatars[] | {avatar_id, avatar_name, gender}'

Each avatar has an avatar_id needed for video generation.

2. Get Avatar Details

Retrieve detailed information about a specific avatar. Replace <avatar_id> with an actual avatar ID:

curl -s -X GET "https://api.heygen.com/v2/avatar/<avatar_id>/details" --header "x-api-key: $HEYGEN_TOKEN" | jq .data

3. List Available Voices

Get all AI voices for video narration:

curl -s -X GET "https://api.heygen.com/v2/voices" --header "x-api-key: $HEYGEN_TOKEN" | jq '.data.voices[] | {voice_id, name, language, gender}'

Voice properties include:

  • voice_id: Unique identifier for use in video generation
  • language: Primary language (e.g., "English", "Multilingual")
  • gender: "female", "male", or "unknown"
  • emotion_support: Whether the voice supports emotion variations

4. Create an Avatar Video

Generate a video with an AI avatar presenter. Replace <avatar_id> and <voice_id> with actual IDs from the list endpoints.

Write to /tmp/heygen_request.json:

{
  "video_inputs": [
    {
      "character": {
        "type": "avatar",
        "avatar_id": "<avatar_id>",
        "avatar_style": "normal"
      },
      "voice": {
        "type": "text",
        "input_text": "Hello! Welcome to our product demo. Let me walk you through the key features.",
        "voice_id": "<voice_id>",
        "speed": 1.0
      },
      "background": {
        "type": "color",
        "value": "#FFFFFF"
      }
    }
  ],
  "dimension": {
    "width": 1920,
    "height": 1080
  },
  "title": "Product Demo Video"
}

Then run:

curl -s -X POST "https://api.heygen.com/v2/video/generate" --header "x-api-key: $HEYGEN_TOKEN" --header "Content-Type: application/json" -d @/tmp/heygen_request.json | jq .

The response contains a video_id to track the generation progress.

5. Check Video Status

Poll for video generation status using the video_id from the generate response. Replace <video_id> with the actual video ID:

curl -s -X GET "https://api.heygen.com/v1/video_status.get?video_id=<video_id>" --header "x-api-key: $HEYGEN_TOKEN" | jq '{status: .data.status, video_url: .data.video_url, duration: .data.duration}'

Status values:

  • pending: Video is queued
  • processing: Video is being rendered
  • completed: Video is ready (includes video_url)
  • failed: Generation failed (includes error details)

6. List Videos

Retrieve all videos associated with your account:

curl -s -X GET "https://api.heygen.com/v1/video.list" --header "x-api-key: $HEYGEN_TOKEN" | jq .

7. Delete a Video

Remove a video from your account. Replace <video_id> with the actual video ID:

curl -s -X DELETE "https://api.heygen.com/v1/video.delete" --header "x-api-key: $HEYGEN_TOKEN" --header "Content-Type: application/json" -d '{"video_id": "<video_id>"}' | jq .

8. List Templates

Get all video templates created in your account:

curl -s -X GET "https://api.heygen.com/v2/templates" --header "x-api-key: $HEYGEN_TOKEN" | jq .data

9. Get Template Details

Retrieve a template configuration and its variables. Replace <template_id> with the actual template ID:

curl -s -X GET "https://api.heygen.com/v2/template/<template_id>" --header "x-api-key: $HEYGEN_TOKEN" | jq .data

10. Generate Video from Template

Create a video using a template with variable substitution. Replace <template_id> and variable keys with actual values from the template details.

Write to /tmp/heygen_request.json:

{
  "caption": false,
  "title": "Video from Template",
  "variables": {
    "script": {
      "name": "script",
      "type": "text",
      "properties": {
        "content": "Your custom script text goes here."
      }
    }
  }
}

Then run:

curl -s -X POST "https://api.heygen.com/v2/template/<template_id>/generate" --header "x-api-key: $HEYGEN_TOKEN" --header "Content-Type: application/json" -d @/tmp/heygen_request.json | jq .

11. Translate a Video

Translate an existing video into another language. Replace <video_url> and <language> with actual values:

Write to /tmp/heygen_request.json:

{
  "video_url": "<video_url>",
  "output_language": "<language>",
  "title": "Translated Video"
}

Then run:

curl -s -X POST "https://api.heygen.com/v2/video_translate" --header "x-api-key: $HEYGEN_TOKEN" --header "Content-Type: application/json" -d @/tmp/heygen_request.json | jq .

12. List Supported Translation Languages

Get all languages available for video translation:

curl -s -X GET "https://api.heygen.com/v2/video_translate/target_languages" --header "x-api-key: $HEYGEN_TOKEN" | jq .data

13. Share a Video

Generate a public sharing URL for a video. Replace <video_id> with the actual video ID:

curl -s -X POST "https://api.heygen.com/v1/video/share" --header "x-api-key: $HEYGEN_TOKEN" --header "Content-Type: application/json" -d '{"video_id": "<video_id>"}' | jq .

Guidelines

  1. Poll for completion: Video generation is asynchronous. After calling the generate endpoint, poll video_status.get until status is completed or failed
  2. Download promptly: Video and thumbnail URLs expire after 7 days
  3. Use templates for consistency: Create templates in the HeyGen dashboard and use the template generate endpoint for repeatable video production
  4. Choose appropriate avatars: List avatars first to find one matching your use case, then get details for supported styles
  5. Monitor credits: Video generation consumes API credits based on video duration
  6. Use JSON files for complex bodies: Write request bodies to /tmp/heygen_request.json to avoid shell quoting issues

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.21%
按下载量换算56

Claude

31.96%
按下载量换算53

Cursor

19.01%
按下载量换算31

Gemini CLI

9.02%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vm0-ai/vm0-skills --skill heygen 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills