DeepSeek Harness 插件

wavespeed-dsh-skill

通过开源 wavespeed CLI 用 WaveSpeed 模型生成与编辑 AI 媒体(图像、视频、音频、3D):实时目录搜索、逐模型输入 schema 自省、@path 标记本地文件上传、运行前价格查询。

跳到安装方式

来源信息

GitHub 仓库
WaveSpeedAI/wavespeed-dsh-skill
最近更新
2026年8月20日
分类
Skills 与任务指令
GitHub stars
0

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/WaveSpeedAI/wavespeed-dsh-skill
GitHub:https://github.com/WaveSpeedAI/wavespeed-dsh-skill
插件名:wavespeed-dsh-skill
作者:WaveSpeedAI
安装命令:dsh plugin --profile web add github:WaveSpeedAI/wavespeed-dsh-skill

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

WaveSpeed skill for DeepSeek Harness

[中文](README.zh.md)

A DeepSeek Harness (dsh) skill that lets the agent generate and edit AI media — image, video, audio, 3D — through the WaveSpeed platform, using the open-source @wavespeed/cli.

Every model on the platform is one wavespeed run <model-id> call. The skill teaches the agent the find → inspect → run pattern, so it can browse the live catalog, read any model's input schema, and execute it — including uploading local files with the @path marker.

Requirements

  • Node.js ≥ 18
  • The WaveSpeed CLI: npm install -g @wavespeed/cli
  • A WaveSpeed account — wavespeed login opens the key page at wavespeed.ai and handles the rest

Install

As a dsh plugin (recommended — the bundle registers the skill automatically):

dsh plugin --profile web add github:WaveSpeedAI/wavespeed-dsh-skill

Or copy the skill directory by hand — project-level (checked into the repo, shared with your team):

mkdir -p .dsh/skills
git clone --depth 1 https://github.com/WaveSpeedAI/wavespeed-dsh-skill /tmp/wss \
  && cp -r /tmp/wss/skills/wavespeed .dsh/skills/ && rm -rf /tmp/wss

User-level (available in every project):

mkdir -p ~/.dsh/skills
git clone --depth 1 https://github.com/WaveSpeedAI/wavespeed-dsh-skill /tmp/wss \
  && cp -r /tmp/wss/skills/wavespeed ~/.dsh/skills/ && rm -rf /tmp/wss

Other agents (Claude Code, Cursor, Codex): the CLI installs the same skill directly —

wavespeed skill install

What the agent can do with it

# text → image
wavespeed run bytedance/seedream-v5.0-pro -p "a cyberpunk skyline at golden hour" --json

# edit a local image (uploaded automatically via @path)
wavespeed run bytedance/seedream-v5.0-pro/edit -p "replace the background with a sunlit kitchen" \
  -i images='["@./input.jpg"]' --json

# image → video
wavespeed run bytedance/seedance-2.5/image-to-video -p "subtle parallax" -i image=@./hero.jpg --json

# check the cost before running anything
wavespeed price bytedance/seedream-v5.0-pro -i resolution=2k

The skill also covers project aliases (wavespeed.json), schema introspection, price/balance checks, and prediction history.

License

[MIT](LICENSE) — same as the CLI.