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

seaart-video海艺术视频

Agent Skill

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

总安装

3,708

周安装

150

GitHub Stars

公开资料未说明

下载量

1,164
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seaart-video

简介

seaart-video 利用 SeaArt 平台生成高质量 AI 视频,支持文本到视频与图像到视频合成。

  • 适用于动画短片、宣传片脚本化制作及 Remotion 项目渲染支持。
  • 可配置分辨率、时长与导出格式,适配不同发布平台要求。
  • 需确保外部素材版权清晰,避免肖像权或商标争议。
  • 商业用途前应完成内容审核与授权确认流程。

SKILL.md

name
seaart-video
version
1.0.0
description
Use this skill to generate high-quality AI videos using the SeaArt platform (seaart.ai). Supports both Text-to-Video and Image-to-Video generation using various models. Use this whenever the user wants to "create a video", "generate a video", "turn this image into a video", or explicitly mentions SeaArt video generation.
tags
["video", "ai", "seaart", "text-to-video", "image-to-video"]
metadata
clawdbot
requires
env
primary
true
description
SeaArt session token (T cookie). Treat like a password.
binaries
primary
true
description
Required to install the requests library if not present.

SeaArt Video Generator

This skill helps you generate AI videos via the SeaArt platform. You can create videos from text prompts (Text-to-Video) or animate existing images (Image-to-Video).

Prerequisites: SeaArt Token

To use this skill, you need a SeaArt authentication token. This token is passed in the T cookie.

How to get your token:

  1. Log into your account on seaart.ai in your browser.
  2. Open Developer Tools (F12 or Right Click -> Inspect).
  3. Go to the "Application" tab (or "Storage" in Firefox).
  4. Expand "Cookies" and select https://www.seaart.ai.
  5. Find the cookie named T.
  6. Copy its value (it will look like a long string: eyJhbGci...).

How to store your token:

To avoid passing the token every time, store it as an environment variable (SEAART_TOKEN).

Run the following command in your terminal (never paste the token into chat):

/update-config set SEAART_TOKEN="your_token_value_here"
Security note: Never share your token in chat messages or logs. The token will be persisted in your local agent config by /update-config — ensure only you have access to that config file.

Supported Models and Parameters

We currently support the following models for video generation.

Default Model: SeaArt Sono Cast (if user doesn't specify, use this one)

Model Namemodel_nomodel_ver_noNotes
SeaArt Sono Cast (Default)d4t763te878c73csvcf021a5fc20-68dd-4d4b-9afd-7bfe2e8f5166Great overall quality.
Vidu Q3 Turbod6l3adte878c73dr6a3g26ca53e1-e6f2-44e4-8227-13e38bb73945
Kling 3.0d62lo1te878c73f8eua093636e78-3d55-4416-92e3-d7d3b89f023d
Wan 2.6d4t6pkle878c73cpsif05856d251-5b8f-4704-970e-e301982eb532

Supported Aspect Ratios (Text-to-Video only)

  • 16:9 (Landscape)
  • 9:16 (Portrait) - Default
  • 1:1 (Square)
  • 4:3
  • 3:4

How to use this skill

When a user asks to generate a video, follow these steps:

1. Check for the Token

First, check if the SEAART_TOKEN environment variable is set. You can do this by running a simple bash command: echo $SEAART_TOKEN. If it's empty, ask the user to provide their token. Once they provide it, you should guide them to set it as an environment variable in their specific environment (OpenClaw, Claude Code, or terminal) as described above. Wait for them to do this before proceeding.

2. Gather Requirements

If the token is available, ensure you have:

  • The prompt (what should happen in the video)
  • The type (Text-to-Video or Image-to-Video)
  • If Image-to-Video, the image URL
  • The desired model (default to SeaArt Sono Cast)
  • If Text-to-Video, the desired aspect ratio (default to 9:16)

3. Generate the Video

Use the included python script to start the generation and poll for completion.

# For Text-to-Video
python3 ~/.claude/skills/seaart-video/scripts/generate.py \
  --type t2v \
  --prompt "A child crying" \
  --model seaart-sono-cast \
  --aspect-ratio "9:16"

# For Image-to-Video
python3 ~/.claude/skills/seaart-video/scripts/generate.py \
  --type i2v \
  --prompt "He got married" \
  --image-url "https://image.cdn2.seaart.me/..." \
  --model seaart-sono-cast

The script will handle making the request and polling the status until the video is complete, then return the final video URL.

Example Usage

User: "Can you make a video of a cat playing with a ball of yarn using Kling 3.0?"

Claude:

  1. Checks for $SEAART_TOKEN. Let's assume it's set.
  2. Runs the generation script:
python3 ~/.claude/skills/seaart-video/scripts/generate.py --type t2v --prompt "A cat playing with a ball of yarn" --model kling3.0
  1. Presents the final video URL to the user.

External Endpoints

URLMethodData Sent
https://www.seaart.ai/api/v1/task/v2/video/text-to-videoPOSTPrompt, model ID, aspect ratio, generation params
https://www.seaart.ai/api/v1/task/v2/video/img-to-videoPOSTPrompt, image URL, model ID, generation params
https://www.seaart.ai/api/v1/task/batch-progressPOSTTask ID (for polling status)

All requests are authenticated via your SEAART_TOKEN cookie, which never leaves your machine in plaintext — it is only sent to *.seaart.ai as an HTTP cookie header.


Security & Privacy

  • What leaves your machine: Your text prompt, any image URLs you provide, and your SEAART_TOKEN are sent to seaart.ai servers as an HTTP cookie header on every API request.
  • Token storage: SEAART_TOKEN is persisted locally in your agent config file by /update-config. Ensure only you have access to that config. It is not logged or transmitted by this skill beyond the API calls to seaart.ai listed above.
  • No additional data persistence: This skill does not write any other files to disk. Generated video URLs are returned inline.
  • Input handling: All inputs are passed as structured JSON fields via the requests library — no shell interpolation is used.

Trust Statement

By using this skill, your prompt and any provided image URLs are sent to seaart.ai. Only install and use this skill if you trust SeaArt with your creative content. This skill is not affiliated with or endorsed by SeaArt.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.08%
按下载量换算1,049

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills