Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

superouter-video-gensuperouter video GEN 视频

Agent Skill

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

总安装

3,457

周安装

147

GitHub Stars

公开资料未说明

下载量

1,211
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install superouter-video-gen

简介

基于 Remotion 的视频合成框架,支持镜头编排与素材异步提交。

  • 适用于动画短片、宣传片或交互式视频项目开发。superouter-video-gen 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需准备有序资源包并按流程提交,确保渲染成功。
  • 安装后需配置 FFmpeg 与 Node.js 环境依赖。
  • 涉及人物肖像或商业素材时,应提前获得版权许可。

SKILL.md

name
superouter-video-gen
description
Use when the user wants to generate a video through the superouter, especially the seedance-2.0-v1 omni-reference workflow with ordered assets, async submission, taskId polling, and direct download URLs.
metadata

superouter Video Gen

Overview

This skill is for the superouter platform API, not for talking to Jimeng upstream directly.

Default model: seedance-2.0-v1,you can get model list from the server.

Use this skill when the user wants to:

  • upload ordered reference assets
  • submit an async video generation task
  • query status with platform taskId
  • download the final video from the real URL returned by the platform

The platform currently exposes:

  • POST /v1/video/assets/upload
  • POST /v1/video/omni-reference/task/submit
  • GET /v1/video/omni-reference/task/query
  • GET /v1/video/models
  • GET /me/balance
  • GET /me/tasks

Preconditions

  • SUPER_KEY must be a superouter client API key
  • If the platform returns 401 or 403, stop and tell the user the client key is invalid or disabled
  • Default ratio for short drama generation is 9:16 only when the user did not give a ratio
  • Default model is seedance-2.0-v1; do not invent other fields that affect generation

Current Platform Rules

Prompt

  • prompt max length: 2000 characters

File types

  • Images: jpg jpeg png webp gif bmp
  • Video: mp4 mov m4v
  • Audio: mp3 wav

File limits

  • Single file max: 30MB
  • Total referenced asset size per task max: 100MB
  • Image shortest side min: 320px
  • Image long/short side ratio max: 3:1
  • Video duration max: 15s
  • Audio duration max: 15s

Seedance submit limits

  • aspectRatio: 1:1 4:3 3:4 16:9 9:16 21:9
  • resolution: 720p
  • duration: 4 to 15
  • generatingCount: currently only 1

Pricing

For seedance-2.0-v1:

  • no video reference: 5 credits / second
  • any video reference present: 10 credits / second
  • if duration is omitted, use 4 seconds for estimation

upload and query currently do not deduct credits.

Asset selection principles

  • Only upload the people or scene references that actually matter for the current shot
  • Keep the asset list as small and ordered as possible
  • If clothing continuity is critical, add clothing references explicitly instead of assuming them
  • Video generation is sensitive to reference order; keep references[] in the exact business order

Workflow

1. Check balance before submit

Use platform balance, not upstream quota:

curl "http://superouter.nesports.top/me/balance" \
  -H "Authorization: Bearer ${SUPER_KEY}"

Estimate credits before submit:

  • use duration if provided, otherwise 4
  • if any reference asset is video, multiply by 10
  • otherwise multiply by 5

If balance is insufficient, stop before upload/submit and explain the estimated cost.

2. Validate local inputs

Before any upload:

  • confirm every referenced local file exists
  • confirm prompt length is <= 2000
  • do not invent file order
  • keep placeholder names aligned with reference order

If the prompt uses named placeholders such as <<<Image1>>>, make sure the corresponding references[].name values match exactly.

3. Upload assets first

Upload each local file to the platform and collect fileId.

curl --request POST "http://superouter.nesports.top/v1/video/assets/upload" \
  --header "Authorization: Bearer ${SUPER_KEY}" \
  --form "file=@/absolute/path/to/reference-1.png"

Response example:

{
  "code": "200",
  "message": "Success",
  "result": {
    "fileId": "asset_xxx",
    "fileName": "reference-1.png",
    "contentType": "image/png",
    "mediaType": "image",
    "sizeBytes": 12345,
    "status": "uploaded"
  }
}

Rules:

  • always save the returned fileId
  • same-client duplicate upload may return an existing fileId
  • do not assume one upload call accepts multiple files unless the user specifically wants to script multiple sequential uploads
  • you can save fileId for next submit if file is same.

4. Submit the task

Submit to the platform, not to Jimeng directly.

curl --request POST "http://superouter.nesports.top/v1/video/omni-reference/task/submit" \
  --header "Authorization: Bearer ${SUPER_KEY}" \
  --header "Content-Type: application/json" \
  --data '{
    "model": "seedance-2.0-v1",
    "prompt": "让 @1 中的人物根据 @2 的内容说话。",
    "references": [
      { "fileId": "asset_image_1", "name": "Image1" },
      { "fileId": "asset_audio_1", "name": "Audio1" }
    ],
    "aspectRatio": "9:16",
    "resolution": 720,
    "duration": 4,
    "generatingCount": 1
  }'

Rules:

  • keep references[] in the exact intended order
  • first reference is the first logical asset, second reference is the second logical asset, and so on
  • do not invent aspectRatio, resolution, duration, or references[].name
  • default to async submit behavior; the platform returns taskId
  • after success, report taskId and the estimated credit cost

Successful response shape:

{
  "code": "200",
  "message": "Success",
  "result": {
    "taskId": "task_xxx",
    "status": "submitted"
  }
}

5. Query task status

Use platform taskId.

curl --get "http://superouter.nesports.top/v1/video/omni-reference/task/query" \
  --header "Authorization: Bearer ${SUPER_KEY}" \
  --data-urlencode "taskId=task_xxx"

Possible status values you should expect:

  • submitted
  • processing
  • completed
  • failed

Completed response example:

{
  "code": "200",
  "message": "Success",
  "result": {
    "taskId": "task_xxx",
    "status": "completed",
    "errorMessage": null,
    "videos": [
      {
        "url": "https://..."
      }
    ]
  }
}

Rules:

  • the returned videos[].url is the real download URL; give it directly to the user
  • do not proxy-download unless the user explicitly asks you to save the file locally
  • if status is processing, report that clearly and stop unless the user asked you to keep polling
  • if status is failed, return errorMessage; the platform may refund automatically

6. Optional task list

If the user wants recent tasks instead of querying a single task:

curl "http://superouter.nesports.top/me/tasks?limit=50" \
  -H "Authorization: Bearer ${SUPER_KEY}"

Use this to inspect recent platform tasks. The platform may refresh incomplete tasks when listing them.

Prompt / ordering rules

  • Keep the reference list in the same order the user intends the model to read it
  • Use @1 placeholders only when the request actually names references
  • If the user gives unnamed files only, keep order and do not invent semantic names
  • If the user asks for a shot prompt rewrite, keep the asset references consistent with the final references[]

Fixed rules

  • Use the superouter platform API only
  • Default only the model; ask for missing generation inputs that materially affect output
  • Do not claim success before you have a platform taskId
  • Do not wait for completion by default after submit
  • If the service is unreachable, tell the user to check whether the superouter API is running

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.67%
按下载量换算1,146

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills