Agent skill · Backend & API

seedance-2-prompt

Render a single 3-15s video clip via Seedance 2.0. Supports two backends: OpenRouter (default, model bytedance/seedance-2.0) and the official Volcengine ARK / BytePlus ModelArk endpoint (model doubao-seedance-2-0-260128 / dreamina-seedance-2-0-260128). Accepts a structured English video prompt, optional first-frame image, and optional identity/style reference image. Trigger when the user asks for AI video clip generation, 分镜视频, seedance, or wants a short cinematic shot from a prompt + frame.

opensquilla6,385★ · +160/wk · 1 repos on radarProfile →
claude-codeships scriptsApache-2.0
Install
npx skills add opensquilla/opensquilla --skill seedance-2-prompt --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 8 KB
Bundled scripts: yes
Path: src/opensquilla/skills/bundled/seedance-2-prompt/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 6,515 · +130 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# seedance-2-prompt — Seedance 2.0 video clip generator (dual backend) Submits a Seedance 2.0 generation job and downloads the resulting MP4. Two backends share one CLI, picked via `with.provider`: | `with.provider` | Endpoint | Auth env | Default model | |---|---|---|---| | `openrouter` (default) | `https://openrouter.ai/api/v1/videos` | `OPENROUTER_API_KEY` | `bytedance/seedance-2.0` | | `volcengine` (CN) | `https://ark.cn-beijing.volces.com/api/v3/contents/generations/tasks` | `ARK_API_KEY` (or `VOLC_ARK_API_KEY`) | `doubao-seedance-2-0-260128` | | `byteplus` (intl) | `https://ark.ap-southeast.bytepluses.com/api/v3/contents/generations/tasks` | `ARK_API_KEY` (or `BYTEPLUS_API_KEY`) | `dreamina-seedance-2-0-260128` | Both flavours follow submit-then-poll, but differ in request shape (OpenRouter uses a flat `prompt` field; ARK packs everything into a `content[]` array), polling URL (OpenRouter returns `polling_url`; ARK gets `id` and you construct `/contents/generations/tasks/{id}`), the terminal-success status (`completed` vs `succeeded`), and where the final MP4 URL sits (top-level `unsigned_urls[0]` vs `content.video_url`). This script normalises both into a single Python contr

What's inside
Steps it walks through
  1. Inputs (with:)
  2. Prompt rules (from upstream + OpenSquilla tightening)
  3. Auth
  4. Output
  5. Cost / latency
  6. Multi-segment workflows (>15s)
Ships with 4 files
  • references/camera-and-styles.md
  • references/modes-and-recipes.md
  • references/recipes.md
  • scripts/generate_video.py
More from opensquilla
All skills →
About this skill
What does the seedance-2-prompt skill do?

Render a single 3-15s video clip via Seedance 2.0. Supports two backends: OpenRouter (default, model bytedance/seedance-2.0) and the official Volcengine ARK / BytePlus ModelArk endpoint (model doubao-seedance-2-0-260128 / dreamina-seedance-2-0-260128). Accepts a structured English video prompt, optional first-frame image, and optional identity/style reference image. Trigger when the user asks for AI video clip generation, 分镜视频, seedance, or wants a short cinematic shot from a prompt + frame.

How do I install it?

Run `npx skills add opensquilla/opensquilla --skill seedance-2-prompt --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From opensquilla/opensquilla, a repository with 6,515 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going