seaart-video

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.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "seaart-video" with this command: npx skills add foxwzh/seaart-video

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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Vidu

调用vwu.ai平台上的vidu系列模型,支持7种型号,兼容OpenAI API格式,需配置vwu.ai API密钥使用。

Registry SourceRecently Updated
2740Profile unavailable
General

Qwen Video Generator

阿里云百炼文生视频工具。使用 wan2.2-t2v-plus 模型将文本描述生成视频。**当以下情况时使用此 Skill**:(1) 用户需要根据文字描述生成视频 (2) 用户提到"文生视频"、"生成视频"、"AI视频"、"text to video" (3) 需要创建短视频内容 (4) 需要可视化场景描述。支持...

Registry SourceRecently Updated
1090Profile unavailable
General

Sora 2 Generate

Generate videos with the NanoPhoto.AI Sora 2 API in text-to-video or image-to-video mode. Use when: (1) User wants to create a Sora 2 video from a prompt, (2...

Registry Source
5660Profile unavailable
Automation

Create Video

Create videos from a text prompt using HeyGen's Video Agent (POST /v3/video-agents). The default for most video requests — AI handles script, avatar, visuals...

Registry SourceRecently Updated
3401Profile unavailable