DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Seedance2 — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-seedance2

Seedance2

通过 Seedance 2 AI API 在 DeepSeek Harness 中生成图像和 Seedance 视频

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-seedance2@0.1.0
README兼容性版本

兼容性与来源证明

Seedance2 以 dsh-seedance2 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.0stable
2026/8/14

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
35.1 kB
文件数
7
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
80
最近提交
2026/8/14
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 vision-media 分类下经过校验的插件。

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。Codexdsh-codexChatGPT OAuth、Codex 模型、搜索、read_image URL 支持,以及适用于 DeepSeek Harness 的 gpt-image-2 生成

README

Seedance 2 for DeepSeek Harness

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:

    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.