Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

shortapi-ai-video-generationShortapi ai 视频生成

Agent Skill

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

总安装

9,163

周安装

378

GitHub Stars

2

下载量

2,994
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install shortapi-ai-video-generation

简介

使用此技能作为入口点来发现、选择和获取所有支持的 AI 视频生成模型的特定集成参数。

SKILL.md

name
ShortApi Video Models Aggregation Skill
description
Use this skill as an entry point to discover, select, and fetch specific integration parameters for all supported AI video generation models.
metadata

Video Generation Models Integration Skill

Use this skill to explore and integrate all available Video Generation models through the ShortAPI platform.

Overview

ShortAPI provides a unified /api/v1/job/create endpoint for video generation across multiple top-tier providers natively. This skill provides an overview of all available video generation models and how to dynamically acquire the specific JSON schema required to invoke them.

  • API Endpoint: https://api.shortapi.ai/api/v1/job/create
  • Category: text-to-video, image-to-video
  • Kind: inference

Available Video Models

Here is the list of fully supported video generation model IDs you can use:

Model IDDescription
google/veo-3.1/text-to-videoGenerate videos from text using Veo 3.1
google/veo-3.1/image-to-videoGenerate videos from images using Veo 3.1
google/veo-3.1/extend-videoExtend existing videos using Veo 3.1
google/veo-3.1/first-last-frame-to-videoGenerate videos from first and last frames (Veo 3.1)
google/veo-3.1/reference-to-videoGenerate videos from reference using Veo 3.1
google/veo-3/text-to-videoGenerate videos from text using Veo 3
google/veo-3/image-to-videoGenerate videos from images using Veo 3
kwaivgi/kling-3.0/text-to-videoGenerate videos from text using Kling 3.0
kwaivgi/kling-3.0/image-to-videoGenerate videos from images using Kling 3.0
kwaivgi/kling-o1/text-to-videoGenerate videos from text using Kling O1
kwaivgi/kling-o1/image-to-videoGenerate videos from images using Kling O1
kwaivgi/kling-o1/video-to-videoTransform videos using Kling O1
kwaivgi/kling-2.6/text-to-videoGenerate videos from text using Kling 2.6
kwaivgi/kling-2.6/image-to-videoGenerate videos from images using Kling 2.6
bytedance/seedance-2.0/text-to-videoGenerate videos from text using Seedance 2.0
vidu/vidu-q3/text-to-videoGenerate videos from text using Vidu Q3
vidu/vidu-q3/image-to-videoGenerate videos from images using Vidu Q3
vidu/vidu-q3/start-end-to-videoGenerate videos from start/end frames (Vidu Q3)
vidu/vidu-q2/text-to-videoGenerate videos from text using Vidu Q2
vidu/vidu-q2/image-to-videoGenerate videos from images using Vidu Q2
vidu/vidu-q2/reference-to-videoGenerate videos from reference using Vidu Q2
vidu/vidu-q2/start-end-to-videoGenerate videos from start/end frames (Vidu Q2)
pixverse/pixverse-5.5/text-to-videoGenerate videos from text using Pixverse 5.5
pixverse/pixverse-5.5/image-to-videoGenerate videos from images using Pixverse 5.5
pixverse/pixverse-5.5/transitionCreate video transitions using Pixverse 5.5
alibaba/wan-2.6/text-to-videoGenerate videos from text using Wan 2.6
alibaba/wan-2.6/image-to-videoGenerate videos from images using Wan 2.6
alibaba/wan-2.6/reference-to-videoGenerate videos from reference using Wan 2.6

How to use a Video Model

Because each video model supports different parameters (such as duration, resolution, aspect_ratio, fps, or advanced controls), you need to fetch the specific model's schema document to construct a valid API request payload.

Step 1: Fetch the specific Model API Skill Document (MANDATORY)

You MUST first fetch the detailed skill document for the specific <model_id> (e.g. google/veo-3.1/text-to-video) before attempting to construct the POST request payload. DO NOT skip this step. DO NOT hallucinate parameters because different video models have completely different parameter names for the same concept (e.g. one model might use duration while another uses length, one might use resolution while another uses quality).

Send a GET request to:

https://shortapi.ai/api/skill/<model_id>

_(For example: GET https://shortapi.ai/api/skill/google/veo-3.1/text-to-video)_

This URL will return a Markdown (.md) text document containing the exact Input Parameters Schema for that specific model, alongside code examples. You must parse it to understand which arguments go into the args object.

Step 2: Construct the JSON Payload

Using the exact schema document fetched from Step 1, construct a valid JSON payload. Only include arguments that were defined in the document fetched in Step 1. At a minimum, standard structures generally look like this:

{
  "model": "<model_id>",
  "args": {
    "prompt": "Your descriptive text prompt here..."
    // ...other model-specific required or optional parameters strictly parsed from Step 1
  },
  "callback_url": "YOUR_OPTIONAL_WEBHOOK_URL"
}

Step 3: Invoke the Unified Generation Endpoint

Make an HTTP POST request to the API Endpoint. Include the Bearer token in the Authorization header.

Bash (cURL) Example

response=$(curl --request POST \
  --url https://api.shortapi.ai/api/v1/job/create \
  --header "Authorization: Bearer $SHORTAPI_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "model": "google/veo-3.1/text-to-video",
    "args": {
      "prompt": "A cinematic drone shot flying over a futuristic city at sunset"
    }
  }')
JOB_ID=$(echo "$response" | grep -o '"job_id": *"[^"]*"' | sed 's/"job_id": *//; s/"//g')

Step 4: Fetch Generation Status (Background Polling)

Use the returned job_id to poll the query API:

curl --request GET \
  --url "https://api.shortapi.ai/api/v1/job/query?id=$JOB_ID" \
  --header "Authorization: Bearer $SHORTAPI_KEY"

Security & Privacy Compliance

  • Endpoint Isolation: This skill only communicates with https://api.shortapi.ai.
  • Callback Lockdown: The callback_url parameter is strictly user-defined. The Agent is prohibited from auto-generating or hallucinating this value.
  • Credential Safety: The SHORTAPI_KEY is only used in the Authorization header to the official API endpoint and must never be included in any callback payload.

CRITICAL BEHAVIOR FOR AGENTS:

  1. Authentication First (SHORTAPI_KEY): Before any other step, you MUST verify if the user has a SHORTAPI_KEY. If it is missing, you MUST proactively direct the user to https://shortapi.ai to obtain their API key. DO NOT ask for or accept any other type of API key (e.g., OpenAI, Anthropic, etc.); the only valid key is the SHORTAPI_KEY from ShortAPI.ai.
  2. Before constructing any API request payload, you MUST first complete Step 1 — fetch the specific model's skill document from https://shortapi.ai/api/skill/<model_id>. DO NOT skip this step. DO NOT guess or hallucinate parameters. The document returned in Step 1 is the sole source of truth for the model's input schema.
  3. Video generation takes time. Once you receive the job_id from Step 3, you MUST immediately inform the user that the task has started and release them so they can ask other questions or start new conversations.
  4. You MUST continue to poll the status endpoint in the background silently.
  5. Once the polling returns a completed state (status: "succeeded"), you must proactively message the user with the final generation results (e.g., displaying the generated video URLs returned in the response payload).
  6. When presenting results, you MUST not only provide the raw URL but also render the content inline for direct preview in the chat. For videos, use an HTML <video controls src="video_url"></video> tag to embed an inline video player. For images, use markdown image syntax ![description](image_url). For audio/music, use an HTML <audio controls src="audio_url"></audio> tag. The user should be able to see and play the generated result immediately without needing to open a separate browser tab.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

96.33%
按下载量换算2,884

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills