DeepSeek Harness plugin

dsh-seedance2

Generate images and Seedance videos in DeepSeek Harness through the Seedance 2 AI API

Jump to install

Source facts

Repository
synmindai/dsh-seedance2
Latest update
Aug 14, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/synmindai/dsh-seedance2
Plugin: dsh-seedance2
Author: synmindai

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

Seedance 2 for DeepSeek Harness

![npm](https://www.npmjs.com/package/dsh-seedance2) ![DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) ![License: MIT](./LICENSE)

dsh-seedance2 adds image and video generation to DeepSeek Harness through the Seedance 2 AI public API. The same plugin can create images with Nano Banana Pro, Nano Banana 2 Lite, or GPT Image 2 and create videos with Seedance 2 or Seedance 2.5.

Tools:

  • seedance2_generate_image
  • seedance2_generate_video
  • seedance2_get_task
  • seedance2_account_help

中文说明

Account, credits, and API key

1. Sign up or sign in at <https://seedance2ai.io/sign-up>. 2. Buy credits at <https://seedance2ai.io/pricing>. 3. Create and manage an API key at <https://seedance2ai.io/app/api>. 4. Set the key only in the environment that launches Harness:

``bash export SEEDANCE2_PUBLIC_API_KEY='sk-...' ``

5. Restart Harness.

Use the public key created on the API page. Internal provider credentials such as SEEDANCE_API_KEY are not accepted by the public API.

Official API documentation and current model parameters: <https://seedance2ai.io/developers>

Install

npx -y @deepseek-ai/dsh plugin --profile web add dsh-seedance2
npx -y @deepseek-ai/dsh --profile web --dump-config
npx -y @deepseek-ai/dsh web --profile web

The config dump should contain a seedance2 bundle layer.

To install a cloned checkout instead:

npx -y @deepseek-ai/dsh plugin --profile web add .

Try it

Use Seedance 2 AI Nano Banana Pro to generate a 1:1, 2K premium packaging
mockup on a clean studio floor. Wait for the final image.
Use Seedance 2 Pro to turn this public HTTPS opening image into a five-second
720p 16:9 video. Use a slow dolly shot, generate audio, and wait for the result.
Use Seedance 2.5 media-to-video with these public HTTPS reference images and
video. State the role of each reference inside the prompt and wait for output.

Reference assets must be public HTTPS URLs. For best Seedance results, describe the subject, action, scene, camera movement, visual style, constraints, and the role of every supplied asset in the prompt.

Safety and billing behavior

  • Paid image and video tools ask for approval by default.
  • The API key is resolved through Harness credentials and never exposed as a

model argument.

  • Every paid request carries an Idempotency-Key; automatic retries reuse it.
  • Retryable 429 and 5xx responses use bounded backoff.
  • Cancellation aborts requests and foreground polling.
  • Failed tasks surface credits_refunded from the API.
  • If foreground waiting times out, continue the original task with

seedance2_get_task; do not pay for a duplicate submission.

  • Authentication and insufficient-credit errors return the official key or

recharge page.

Configuration

Defaults are production-ready. Override only when necessary:

- id: seedance2
  config:
    apiBaseUrl: https://www.seedance2ai.io
    apiKeyEnv: SEEDANCE2_PUBLIC_API_KEY
    requestTimeoutMs: 30000
    pollIntervalMs: 3000
    imageWaitTimeoutMs: 300000
    videoWaitTimeoutMs: 900000
    maxRetries: 2
    retryDelayMs: 500
    requireApproval: true
    allowLocalHttp: false

Put this row in $DSH_HOME/profiles/web/cordis.patch.yml. Harness replaces the whole config row, so keep every setting. Disable approval only for a trusted, deliberately budgeted automation.

Validate

npm run check
npm test
npm run pack:check

The package ships plain JavaScript and needs no install-time build script.