DeepSeek Harness plugin

wavespeed-dsh-skill

Generate and edit AI media (image, video, audio, 3D) with WaveSpeed models via the open-source wavespeed CLI: live catalog search, per-model input-schema introspection, local-file upload with @path markers, and price checks before running.

Jump to install

Source facts

Repository
WaveSpeedAI/wavespeed-dsh-skill
Latest update
Aug 20, 2026
Category
Skills
GitHub stars
0

Install

Start with a prompt that asks an agent to read the 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 read the page and repository first.

Do not install anything yet. Read this DeepSeek Harness plugin and explain what it does, which files, networks, or credentials it can access, and how to install and remove it.

Plugin page: https://deepseekplugins.org/plugins/WaveSpeedAI/wavespeed-dsh-skill
GitHub: https://github.com/WaveSpeedAI/wavespeed-dsh-skill
Plugin: wavespeed-dsh-skill
Author: WaveSpeedAI
Install command: dsh plugin --profile web add github:WaveSpeedAI/wavespeed-dsh-skill

Do not run the install command until I confirm.

Check the source files

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

File explorer3 files
README.mdSource · read only

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.