seedance

seedance is a skill for Claude Code, Codex from netease-youdao/LobsterAI. It costs 52 tokens per session (4,432 once invoked), scanned A, original, MIT.

A guide for generating videos with Volcengine's Seedance model. It supports text-to-video, image-to-video, and videos synchronized with audio.

In plain words
What is it for?
Use it to create videos from written descriptions or images, including audio-synced video, with a Volcengine API key.
Why use it?
It defines the steps for submitting an asynchronous video-generation job, checking its status, and downloading the finished video.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/yourname/Pictures/girl.jpg.

Good fit Use it to create videos from written descriptions or images, including audio-synced video, with a Volcengine API key.

Compare 6 skills from other repositories ↓
About the project

LobsterAI is an open-source desktop AI agent that operates files, commands, browsers, documents, spreadsheets, slides, messaging channels, and scheduled jobs in a user's working environment. It supports office work, research, and custom multi-agent workflows, while catalogue add-ons extend the agent with additional skills and workflows.

netease-youdao/LobsterAI · 6,012 stars · on GitHub · lobsterai.youdao.com

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seedance

README.md
[![agentmods](https://agentmods.dev/badge/skills/netease-youdao/lobsterai/seedance/github.svg)](https://agentmods.dev/skills/netease-youdao/lobsterai/seedance)
Your own site
<a href="https://agentmods.dev/skills/netease-youdao/lobsterai/seedance"><img src="https://agentmods.dev/badge/skills/netease-youdao/lobsterai/seedance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for seedance

Your own site · 80×15
<a href="https://agentmods.dev/skills/netease-youdao/lobsterai/seedance"><img src="https://agentmods.dev/badge/skills/netease-youdao/lobsterai/seedance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.04432
Opus 5 $0.00026 $0.02216
Sonnet 5 $0.00010 $0.00886
Haiku 4.5 $0.00005 $0.00443

Measured 12d ago against content hash b46044a4b655, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

seedance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/generate_video.js, scripts/generate-video.ps1, scripts/generate-video.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • seedance — 97% identical, 12 lines differ
SKILLs/seedance/SKILL.md · 458 lines

How it starts

The opening of the file, as written. The whole thing — 458 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Seedance 视频生成

使用火山引擎 Seedance 模型生成高质量 AI 视频,支持文本生成视频(T2V)、图片生成视频(I2V)、音画同步等多种创作模式。

Node.js 版本:此脚本使用 Node.js 实现,无需 Python 环境。通过入口脚本自动检测 Node.js 运行时(优先使用系统 node,回退到 LobsterAI 内置运行时),Windows 和 Mac 用户都可以开箱即用。

配置

  • Base URL: https://ark.cn-beijing.volces.com/api/v3
  • API Key: 从环境变量 ARK_API_KEY 读取
  • 认证方式: Authorization: Bearer {API_KEY}
  • SDK: 兼容火山方舟 Python SDK

如何配置 API Key

方式一:通过环境变量配置(推荐)

在终端中设置环境变量:

# macOS/Linux
export ARK_API_KEY="你的API密钥"

# 或者添加到 ~/.zshrc 或 ~/.bashrc 以永久生效
echo 'export ARK_API_KEY="你的API密钥"' >> ~/.zshrc
source ~/.zshrc
# Windows PowerShell
$env:ARK_API_KEY="你的API密钥"

# 或者设置系统环境变量以永久生效
[System.Environment]::SetEnvironmentVariable('ARK_API_KEY', '你的API密钥', 'User')

方式二:通过 LobsterAI 启动时注入

LobsterAI 会自动读取系统环境变量,确保在启动 LobsterAI 前已设置 ARK_API_KEY

如何获取 API Key:

  1. 访问火山方舟控制台:https://console.volcengine.com/ark/region:ark+cn-beijing/apikey
  2. 创建新的 API Key
  3. 复制密钥并设置为环境变量

前置检查

无需安装任何依赖! 该脚本已兼容 Node.js 内置模块。

LobsterAI 已包含 Node.js 运行时,所有必要的依赖已被自动打包。Windows 和 Mac 用户无需额外配置。

工作流程

Seedance 视频生成是一个异步过程:

  1. 提交任务 - 调用 API 创建视频生成任务,获得 task_id
  2. 轮询状态 - 每隔几秒查询任务状态,直到状态变为 succeeded
  3. 下载视频 - 从 video_url 字段下载生成的 MP4 文件

配额和限制

免费额度

所有 Seedance 模型在 **default 模式(在线推理)**下提供:

  • 200万 token 免费额度
  • flex 模式(离线推理)无免费额度

注意:文档中未明确说明 200万 token 能生成多少个视频,消耗取决于视频时长、分辨率和是否使用图片/音频。建议先小批量测试。

限流限制

模型系列 RPM(每分钟请求数) 并发数 TPD(离线模式每日token)
Pro 系列 600 10 5000亿
Lite 系列 300 5 2500亿
  • RPM 限流:账号下同模型每分钟允许创建的任务数量上限
  • 并发数限制:同一时刻在处理中的任务数量上限
  • TPD 限流:flex 模式下一天内对同一模型的总调用 token 上限

视频保存时间

⚠️ 重要提醒

  • 任务数据(包括视频URL)仅保留 24 小时
  • 超时后会被自动清除
  • 务必及时下载保存生成的视频

使用示例

路径说明:下面的示例使用 $SKILLS_ROOT 环境变量来引用脚本路径。LobsterAI 会自动设置这个变量,指向实际的 SKILLs 目录位置,因此无需手动修改路径。

1. 文本生成视频(T2V)

根据文字描述生成视频,适合创意激发和概念验证。

bash "$SKILLS_ROOT/seedance/scripts/generate-video.sh" \
  --prompt "一只小猫在草地上玩耍,阳光明媚,镜头缓缓推进" \
  --duration 5 \
  --output generated_video.mp4

Read the full file on GitHub · 458 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 458 lines · 52 tokens per session scan A b46044a4b655

Subscribe to this mod's changes

seedance is a skill published in the GitHub repository netease-youdao/LobsterAI (6,012 stars, last pushed today), licensed MIT. It adds 52 tokens to every session and 4,432 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hive.image-generation

Required before calling imagegenerate. Create and edit images from a prompt — generate an image, make a picture / logo / illustration / icon / banner / poster / thumbnail / hero image / mockup / product shot / social graphic, or edit / restyle / combine existing images from reference images. Uses OpenAI gpt-image-2…

aden-hive/hive · 149 tokens

qwen-image

Generate images using Qwen Image API (Alibaba Cloud DashScope). Use when users request image generation with Chinese prompts or need high-quality AI-generated images from text descriptions.

xyva-yuangui/XyvaClaw · 37 tokens

screenshot-sender

Capture screenshots on macOS and optionally send them to Feishu chats. Use when the user asks to take a screenshot, capture the screen, send a screenshot, or needs visual evidence of something on screen. Supports full screen, window, and region capture modes.

xyva-yuangui/XyvaClaw · 57 tokens

video-subtitles

Generate SRT subtitles from video/audio with translation support. Transcribes Chinese (FunASR/Whisper), English (Whisper), Hebrew (ivrit.ai), translates between languages, burns subtitles into video. Use for creating captions, transcripts, or hardcoded subtitles.

xyva-yuangui/XyvaClaw · 58 tokens

chart-image

A chart-making tool that turns data into PNG images. It supports line, bar, pie, scatter, area, heatmap, box, and radar charts in three visual styles.

xyva-yuangui/XyvaClaw · 70 tokens

voice

A voice tool that converts text to spoken audio and audio recordings to text. It uses edge-tts for speech output and either the Whisper API or local whisper.cpp for transcription.

xyva-yuangui/XyvaClaw · 56 tokens