Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计通过

video-gen视频生成器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

240

周安装

10

GitHub Stars

公开资料未说明

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/maxgent-ai/maxgent-plugin --skill video-gen

简介

video-gen 用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。

  • 它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需要确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。
  • video-gen 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Video Generator

Generate videos via Maxgent FAL API proxy. Supports text-to-video, image-to-video, and first/last frame mode.

Prerequisites

  1. MAX_API_KEY environment variable (auto-injected by Max)
  2. Python 3.10+ (supports uv run or python3)

Routing

  1. Default auto-routing (high quality)

- Text-to-video: fal-ai/veo3.1 - Image-to-video: fal-ai/sora-2/image-to-video/pro

  1. Optional explicit models

- veo-3.1 - sora-2-pro - kling-v3-pro - kling-v3-standard

First/last frame default routing:

  1. fal-ai/veo3.1/first-last-frame-to-video
  2. With --fast-first-last: fal-ai/veo3.1/fast/first-last-frame-to-video

Usage

uv run skills/video-gen/video-gen.py \
  --model MODEL --prompt "PROMPT" --size SIZE --seconds N \
  --output-dir DIR \
  [--start-image PATH] [--end-image PATH] \
  [--frame-mode auto|start|start-end] [--fast-first-last] \
  [--generate-audio true|false] [--enhance-prompt true|false] \
  [--negative-prompt TEXT] [--cfg-scale N]

Parameters:

  • --model: auto (recommended), veo-3.1, sora-2-pro, kling-v3-pro, kling-v3-standard
  • --prompt: video description
  • --size: 720P, 1080P, 1280x720, 720x1280
  • --seconds: duration, e.g. 8 or 8s
  • --output-dir: output directory — default to $MAX_PROJECT_PATH (the user's project root)
  • --start-image: start frame image path or URL (for image-to-video)
  • --end-image: end frame image path or URL (for first/last frame mode)
  • --frame-mode: auto (default), start, start-end
  • --fast-first-last: use Veo fast first/last frame route
  • --generate-audio: enable audio generation (default true)
  • --enhance-prompt: enable prompt enhancement (default true)
  • --negative-prompt: negative prompt (Kling only)
  • --cfg-scale: CFG scale (Kling only)

Examples

# Text-to-video (default routing)
uv run skills/video-gen/video-gen.py --model auto --prompt "a golden retriever running on the beach, camera follows" --size 720P --seconds 8 --output-dir "$MAX_PROJECT_PATH"

# Image-to-video (Sora Pro)
uv run skills/video-gen/video-gen.py --model sora-2-pro --prompt "make the person smile and wave" --size 1280x720 --seconds 8 --output-dir "$MAX_PROJECT_PATH" --start-image "/path/to/start.jpg"

# First/last frame (Veo)
uv run skills/video-gen/video-gen.py --model auto --prompt "smooth transition from winter to spring" --size 1080P --seconds 8 --output-dir "$MAX_PROJECT_PATH" \
  --start-image "/path/to/start.jpg" \
  --end-image "/path/to/end.jpg" \
  --frame-mode start-end

Instructions

  1. Check MAX_API_KEY.
  2. Use AskUserQuestion to collect: prompt, duration, resolution, first/last frame option, quality tier. Default output path to $MAX_PROJECT_PATH.
  3. For local images, the script auto-uploads via proxy to get an accessible URL.
  4. Wait for queue completion and download the output mp4.
  5. On success, report the saved path.
  6. On failure:

- HTTP 402 (insufficient credits): Stop immediately. Do NOT retry. Tell the user their API credits are exhausted. - Other errors: retry once with a different model or adjusted parameters. If it fails again, stop and report the error.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.23%
按下载量换算26

Claude

30.25%
按下载量换算24

Cursor

20.61%
按下载量换算16

Gemini CLI

10.18%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills